Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PDF -> JSON parsing issue with LlamaParse #624

Open
RaymanRJ opened this issue Feb 20, 2025 · 0 comments
Open

PDF -> JSON parsing issue with LlamaParse #624

RaymanRJ opened this issue Feb 20, 2025 · 0 comments
Labels
bug Something isn't working

Comments

@RaymanRJ
Copy link

Describe the bug
Using JSON result type in LlamaParse returns error: Error while parsing the file '/Users/<user>/Desktop/test.pdf': 'json'

Using the LlamaParse library in Python yields the error above. However, checking the Job description on the website shows the desired information.

Files
If possible, please provide the PDF file causing the issue.

Job ID
4979c25d-d1a7-4a6a-83ae-163801d48b42

Client:

  • Python Library

Additional context

from llama_cloud_services import LlamaParse
from llama_cloud_services.parse import ResultType

pdf_path = "<<absolute path to pdf>>/test.pdf"

llama_key = "<<key>>"

parser = LlamaParse(
    api_key=llama_key,
    result_type=ResultType.JSON,
    num_workers=1,
    verbose=True,
    language="en"
)

document = parser.load_data(pdf_path)

print(document)
@RaymanRJ RaymanRJ added the bug Something isn't working label Feb 20, 2025
@RaymanRJ RaymanRJ changed the title Issue with LlamaParse ... PDF -> JSON parsing issue with LlamaParse Feb 20, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant