llamaIndex - 💡(How to fix) Fix [Bug]: Download of images is not possible

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…

Code Example

Hope, this is what you're asking for!

from llama_cloud import AsyncLlamaCloud

client = AsyncLlamaCloud(api_key="llx-...")

# Upload and parse a document
file_obj = await client.files.create(file="./attention_is_all_you_need.pdf", purpose="parse")

result = await client.parsing.parse(
    file_id=file_obj.id,
    # The parsing tier. Options: fast, cost_effective, agentic, agentic_plus,
    tier="agentic_plus",
    # The version of the parsing tier to use. Use 'latest' for the most recent version,
    version="latest",
    # 'expand' controls which result fields are returned in the response.,
    # Without it, only job metadata is returned. Common fields:,
    # - "markdown_full", "text_full": Full document content,
    # - "markdown", "text", "items": Page-level content,
    # - "images_content_metadata": Presigned URLs for images,
    expand=["markdown_full", "text_full"],
)

# Access the full document content
print("Full markdown:")
print(result.markdown_full)

print("\nFull text:")
print(result.text_full)
RAW_BUFFERClick to expand / collapse

Bug Description

Dear All!

I'm trying to download the images of my LlamaParse project, to integrate them in a markdown file.

Unfortunately the button for downloading images remains grey and is not working. The images are shown correctly in the markdown preview and in the images preview, oyly download is not possible. I'm not familiar with coding, therefore I failed to manage it with the AI support.

Could you please help me to solve my problem? Please see the screenshots attachted

Download button: <img width="115" height="42" alt="Image" src="https://github.com/user-attachments/assets/32281b1e-9717-436e-b01a-5a085b4a1b8d" />

Total Screenshot: <img width="1085" height="604" alt="Image" src="https://github.com/user-attachments/assets/258d710e-cbd9-4283-8040-a8538a356dbe" />

Version

Online Version: https://cloud.llamaindex.ai/project/59d58078-b18d-4e95-9bb3-56b68ccd3db7/parse/pjb-grrfn6lkd18uvb3mhhx93awm9t5p?preview-mode=images

Steps to Reproduce

Please see the screenshots attached...

Relevant Logs/Tracebacks

Hope, this is what you're asking for!

from llama_cloud import AsyncLlamaCloud

client = AsyncLlamaCloud(api_key="llx-...")

# Upload and parse a document
file_obj = await client.files.create(file="./attention_is_all_you_need.pdf", purpose="parse")

result = await client.parsing.parse(
    file_id=file_obj.id,
    # The parsing tier. Options: fast, cost_effective, agentic, agentic_plus,
    tier="agentic_plus",
    # The version of the parsing tier to use. Use 'latest' for the most recent version,
    version="latest",
    # 'expand' controls which result fields are returned in the response.,
    # Without it, only job metadata is returned. Common fields:,
    # - "markdown_full", "text_full": Full document content,
    # - "markdown", "text", "items": Page-level content,
    # - "images_content_metadata": Presigned URLs for images,
    expand=["markdown_full", "text_full"],
)

# Access the full document content
print("Full markdown:")
print(result.markdown_full)

print("\nFull text:")
print(result.text_full)

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING

llamaIndex - 💡(How to fix) Fix [Bug]: Download of images is not possible