Skip to content

Specialized Chart Parsing

Specialized chart parsing enables enhanced extraction of charts and graphs from documents using AI-powered analysis.

Note that any specialized chart parsing mode can be used with any of the agentic_plus, agentic, and cost_effective tiers.

Use processing_options.specialized_chart_parsing to enable this feature.

ModeDescription
agentic_plusEnhanced agentic mode with additional processing for complex charts
agenticUses AI agents to analyze and extract chart data with high accuracy
efficientFaster processing with good accuracy for simpler charts

Maximum accuracy for the most complex charts:

{
"tier": "agentic_plus",
"version": "latest",
"processing_options": {
"specialized_chart_parsing": "agentic_plus"
}
}

Best for complex charts requiring detailed analysis:

{
"tier": "agentic",
"version": "latest",
"processing_options": {
"specialized_chart_parsing": "agentic"
}
}

Good balance between speed and accuracy:

{
"tier": "cost_effective",
"version": "latest",
"processing_options": {
"specialized_chart_parsing": "efficient"
}
}
Terminal window
curl -X 'POST' \
'https://api.cloud.llamaindex.ai/api/v2/parse' \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-H "Authorization: Bearer $LLAMA_CLOUD_API_KEY" \
--data '{
"file_id": "<file_id>",
"tier": "agentic_plus",
"version": "latest",
"processing_options": {
"specialized_chart_parsing": "agentic_plus"
}
}'