Prerequisites
The following example requires thearxiv, pypdf, and openai libraries.
Example
The following agent will search arXiv for “language models” and print the response.cookbook/91_tools/arxiv_tools.py
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Search arXiv and read papers with ArxivTools using search_arxiv_and_return_articles and read_arxiv_papers.
arxiv, pypdf, and openai libraries.
uv pip install -U arxiv pypdf openai
from agno.agent import Agent
from agno.tools.arxiv import ArxivTools
agent = Agent(tools=[ArxivTools()])
agent.print_response("Search arxiv for 'language models'", markdown=True)
| Parameter | Type | Default | Description |
|---|---|---|---|
enable_search_arxiv | bool | True | Enables the functionality to search the arXiv database. |
enable_read_arxiv_papers | bool | True | Allows reading of arXiv papers directly. |
all | bool | False | Enable all functionality. |
download_dir | Path | - | Specifies the directory path where downloaded files will be saved. |
| Function | Description |
|---|---|
search_arxiv_and_return_articles | Searches arXiv for a query and returns the top articles with title, authors, PDF URL and summary. |
read_arxiv_papers | Downloads papers by arXiv ID and returns their content, optionally limited to a number of pages. |
Was this page helpful?