Skip to content

Presentation Options

Presentation options allow you to configure how PowerPoint and other presentation formats are processed during parsing.

Extract content that extends beyond the visible slide boundaries. This captures text, images, and other elements that may be positioned outside the standard slide area.

{
"input_options": {
"presentation": {
"out_of_bounds_content": true
}
}
}

Skip extraction of embedded data for charts in presentation slides. This can improve performance when you don’t need the underlying chart data.

{
"input_options": {
"presentation": {
"skip_embedded_data": true
}
}
}

You can combine multiple presentation options:

{
"input_options": {
"presentation": {
"out_of_bounds_content": true,
"skip_embedded_data": false
}
}
}
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",
"version": "latest",
"input_options": {
"presentation": {
"out_of_bounds_content": true
}
}
}'