[PR #628] [MERGED] Add LlamaExtract to llama-cloud-services #771

Closed
opened 2026-02-16 00:19:03 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/run-llama/llama_cloud_services/pull/628
Author: @neerajprad
Created: 2/23/2025
Status: Merged
Merged: 2/25/2025
Merged by: @neerajprad

Base: mainHead: nprad/add-le


📝 Commits (6)

📊 Changes

25 files changed (+3141 additions, -2 deletions)

View changed files

📝 .gitignore (+2 -0)
📝 README.md (+3 -2)
examples/extract/data/resumes/ai_researcher.pdf (+0 -0)
examples/extract/data/resumes/ml_engineer.pdf (+0 -0)
examples/extract/data/resumes/software_architect.pdf (+0 -0)
examples/extract/resume_screening.ipynb (+834 -0)
extract.md (+186 -0)
📝 llama_cloud_services/__init__.py (+3 -0)
llama_cloud_services/extract/__init__.py (+3 -0)
llama_cloud_services/extract/extract.py (+655 -0)
llama_cloud_services/extract/utils.py (+34 -0)
tests/extract/__init__.py (+0 -0)
tests/extract/data/receipt/noisebridge_receipt.pdf (+0 -0)
tests/extract/data/receipt/noisebridge_receipt.test.json (+37 -0)
tests/extract/data/receipt/schema.json (+124 -0)
tests/extract/data/resume/schema.json (+181 -0)
tests/extract/data/resume/software_architect_resume.html (+298 -0)
tests/extract/data/resume/software_architect_resume.test.json (+94 -0)
tests/extract/data/slide/saas_slide.pdf (+0 -0)
tests/extract/data/slide/saas_slide.test.json (+48 -0)

...and 5 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/run-llama/llama_cloud_services/pull/628 **Author:** [@neerajprad](https://github.com/neerajprad) **Created:** 2/23/2025 **Status:** ✅ Merged **Merged:** 2/25/2025 **Merged by:** [@neerajprad](https://github.com/neerajprad) **Base:** `main` ← **Head:** `nprad/add-le` --- ### 📝 Commits (6) - [`827fa71`](https://github.com/run-llama/llama_cloud_services/commit/827fa71b214057c2acf49b08a6b557b5bbae0ed8) Add LlamaExtract to llama-cloud-services - [`80c1287`](https://github.com/run-llama/llama_cloud_services/commit/80c1287048147f9900ef0e8be155a5103b451363) fix lint - [`0b32c7c`](https://github.com/run-llama/llama_cloud_services/commit/0b32c7caedfcf8a8f5f685a0c7a94f60a7a0b151) make lint - [`e18fda5`](https://github.com/run-llama/llama_cloud_services/commit/e18fda5dff1efd0f53ba3ab8ba80f7ef4dc72b78) Move to root dir - [`a20cbac`](https://github.com/run-llama/llama_cloud_services/commit/a20cbac569343dd3f71bde67b0f90796692d9d07) use utility function - [`4fa54a1`](https://github.com/run-llama/llama_cloud_services/commit/4fa54a1a38734929ff29a52fde34aa234a44a756) fix import in readme ### 📊 Changes **25 files changed** (+3141 additions, -2 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+2 -0) 📝 `README.md` (+3 -2) ➕ `examples/extract/data/resumes/ai_researcher.pdf` (+0 -0) ➕ `examples/extract/data/resumes/ml_engineer.pdf` (+0 -0) ➕ `examples/extract/data/resumes/software_architect.pdf` (+0 -0) ➕ `examples/extract/resume_screening.ipynb` (+834 -0) ➕ `extract.md` (+186 -0) 📝 `llama_cloud_services/__init__.py` (+3 -0) ➕ `llama_cloud_services/extract/__init__.py` (+3 -0) ➕ `llama_cloud_services/extract/extract.py` (+655 -0) ➕ `llama_cloud_services/extract/utils.py` (+34 -0) ➕ `tests/extract/__init__.py` (+0 -0) ➕ `tests/extract/data/receipt/noisebridge_receipt.pdf` (+0 -0) ➕ `tests/extract/data/receipt/noisebridge_receipt.test.json` (+37 -0) ➕ `tests/extract/data/receipt/schema.json` (+124 -0) ➕ `tests/extract/data/resume/schema.json` (+181 -0) ➕ `tests/extract/data/resume/software_architect_resume.html` (+298 -0) ➕ `tests/extract/data/resume/software_architect_resume.test.json` (+94 -0) ➕ `tests/extract/data/slide/saas_slide.pdf` (+0 -0) ➕ `tests/extract/data/slide/saas_slide.test.json` (+48 -0) _...and 5 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-16 00:19:03 -05:00
yindo closed this issue 2026-02-16 00:19:03 -05:00
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#771