Anthropic PDF Input Local
Attach a local PDF file to a Claude prompt and print the response citations.
Anthropic retired the source's dated Sonnet 4 and Opus 4 models on June 15, 2026. Before running your saved copy, replace claude-sonnet-4-20250514 or claude-opus-4-20250514 with the active claude-sonnet-4-6 model. See model lifecycle status.
The source calls get_last_run_output() without a database, so that readback returns None. Add from agno.db.in_memory import InMemoryDb to your saved copy and db=InMemoryDb(), inside Agent(...) before running. This makes the existing readback available during the process. Alternatively, capture the result directly with result = agent.run(...). Citations and provider statistics remain optional response fields.
"""
Anthropic Pdf Input Local
=========================
Cookbook example for `anthropic/pdf_input_local.py`.
"""
from pathlib import Path
from agno.agent import Agent
from agno.media import File
from agno.models.anthropic import Claude
from agno.utils.media import download_file
# ---------------------------------------------------------------------------
# Create Agent
# ---------------------------------------------------------------------------
pdf_path = Path(__file__).parent.joinpath("ThaiRecipes.pdf")
# Download the file using the download_file function
download_file(
"https://agno-public.s3.amazonaws.com/recipes/ThaiRecipes.pdf", str(pdf_path)
)
agent = Agent(
model=Claude(id="claude-sonnet-4-20250514"),
markdown=True,
)
agent.print_response(
"Summarize the contents of the attached file.",
files=[
File(
filepath=pdf_path,
),
],
)
run_response = agent.get_last_run_output()
print("Citations:")
print(run_response.citations)
# ---------------------------------------------------------------------------
# Run Agent
# ---------------------------------------------------------------------------
if __name__ == "__main__":
passRun the Example
Set up your virtual environment
uv venv --python 3.12
source .venv/bin/activateInstall dependencies
uv pip install -U agno anthropicExport your Anthropic API key
export ANTHROPIC_API_KEY="your_anthropic_api_key_here"Update the source model
In your saved copy, replace claude-sonnet-4-20250514 or claude-opus-4-20250514 with claude-sonnet-4-6. Keep the other model settings.
Run the example
Save the code above as pdf_input_local.py, then run:
python pdf_input_local.pyFull source: cookbook/90_models/anthropic/pdf_input_local.py