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

Job Records from parsing/history missing Job Durations #610

Open
adreichert opened this issue Feb 7, 2025 · 0 comments
Open

Job Records from parsing/history missing Job Durations #610

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

Comments

@adreichert
Copy link
Contributor

Describe the bug
About 75% of job records downloaded from the endpoint parsing/history are missing meaningful values in the field time. Instead there is a 0. I'd like to see if these times can be populated.

curl -L 'https://api.cloud.llamaindex.ai/api/v1/parsing/history' -H 'Accept: application/json' -H "Authorization: Bearer $LLAMA_CLOUD_API_KEY" | jq .

  {
    "user_id": [id]
    "day": "2025-02-07",
    "job_id": [id]
    "file_name": [file name]
    "original_file_name": [file name]
    "expired": false,
    "pages": 4,
    "images": 0,
    "time": 0. <--- Missing 
  },
 % curl -s -L 'https://api.cloud.llamaindex.ai/api/v1/parsing/history' -H 'Accept: application/json' -H "Authorization: Bearer $LLAMA_CLOUD_API_KEY" | jq 'map(select(.day >= "2025-02-05")) | {total: length, time_zero: map(select(.time == 0)) | length}'
{
  "total": 4191,
  "time_zero": 3250
}

Client:
Please remove untested options:

  • API

Additional context
Better job logging would help us better interact with LlamaParse

@adreichert adreichert added the bug Something isn't working label Feb 7, 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