pdf processing

from llama_cloud_services import LlamaParse

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "pdf processing" with this command: npx skills add run-llama/vibe-llama/run-llama-vibe-llama-pdf-processing

PDF Processing

Quick start

Extract text:

from llama_cloud_services import LlamaParse

parser = LlamaParse( parse_mode="parse_page_with_agent", model="openai-gpt-4-1-mini", high_res_ocr=True, adaptive_long_table=True, outlined_table_extraction=True, output_tables_as_HTML=True, result_type="markdown", project_id=project_id, organization_id=organization_id, )

result = parser.parse("./my_file.pdf") documents = result.get_markdown_documents(split_by_page=True)

full_text = ""

for document in documents: full_text += document.text + "\n\n---\n\n"

For more detailed code implementations, see REFERENCE.md.

Requirements

The llama_cloud_services package must be installed in your environment:

pip install llama_cloud_services

And the LLAMA_CLOUD_API_KEY must be available as an environment variable:

export LLAMA_CLOUD_API_KEY="..."

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

extract structured data from unstructured files (pdf

No summary provided by upstream source.

Repository SourceNeeds Review
General

pdf-processing

No summary provided by upstream source.

Repository SourceNeeds Review
General

pdf processing

No summary provided by upstream source.

Repository SourceNeeds Review