Additional metadata for parsed pages like page_separator #347

Open
opened 2026-02-16 00:17:35 -05:00 by yindo · 1 comment
Owner

Originally created by @neerajprad on GitHub (Nov 21, 2024).

I am using LlamaParse with split_by_page=False. In certain cases, I would like to split the parsed document into pages at a later stage. It will be nice if some of these settings like page_separator were available in the metadata for easy access.

Originally created by @neerajprad on GitHub (Nov 21, 2024). I am using LlamaParse with `split_by_page=False`. In certain cases, I would like to split the parsed document into pages at a later stage. It will be nice if some of these settings like `page_separator` were available in the metadata for easy access.
yindo added the enhancement label 2026-02-16 00:17:35 -05:00
Author
Owner

@ladrians commented on GitHub (Aug 12, 2025):

not sure what combination make the split_by_page=False to work. I am using llama-parse 0.6.55 with the following on a standard PDF file

client = LlamaParse(
	api_key=api_key,
	num_workers=1,
	verbose=True,
	language=language, # en
	fast_mode=fast_mode, # True
	split_by_page=split_by_page, # False
	target_pages=target_pages, # 0,1
	result_type=result_type, # text
	max_timeout=max_timeout, # 60
	auto_mode=auto_mode, # False
	extract_charts=extract_charts, # False
	high_res_ocr=high_res_ocr, # False
)

I still get two pages 1,2.

@ladrians commented on GitHub (Aug 12, 2025): not sure what combination make the `split_by_page=False` to work. I am using `llama-parse 0.6.55` with the following on a standard PDF file ```python client = LlamaParse( api_key=api_key, num_workers=1, verbose=True, language=language, # en fast_mode=fast_mode, # True split_by_page=split_by_page, # False target_pages=target_pages, # 0,1 result_type=result_type, # text max_timeout=max_timeout, # 60 auto_mode=auto_mode, # False extract_charts=extract_charts, # False high_res_ocr=high_res_ocr, # False ) ``` I still get two pages 1,2.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: run-llama/llama_cloud_services#347