Download Arxiv Input
This module defines the download_arxiv_paper
tool, which leverages the
ArxivPaperDownloader
class to fetch and download academic papers from arXiv
based on their unique arXiv ID.
DownloadArxivPaperInput
Bases: BaseModel
Input schema for the arXiv paper download tool. (Optional: if you decide to keep Pydantic validation in the future)
Source code in aiagents4pharma/talk2scholars/tools/paper_download/download_arxiv_input.py
18 19 20 21 22 23 24 25 26 27 |
|
download_arxiv_paper(arxiv_id, tool_call_id)
Download an arXiv paper's PDF using its unique arXiv ID.
This function
- Creates an
ArxivPaperDownloader
instance. - Fetches metadata from arXiv using the provided
arxiv_id
. - Downloads the PDF from the returned link.
- Returns a
Command
object containing the PDF data and a success message.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
arxiv_id
|
str
|
The unique arXiv paper ID. |
required |
tool_call_id
|
InjectedToolCallId
|
A unique identifier for tracking this tool call. |
required |
Returns:
Type | Description |
---|---|
Command[Any]
|
Command[Any]: Contains metadata and messages about the success of the operation. |
Source code in aiagents4pharma/talk2scholars/tools/paper_download/download_arxiv_input.py
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
|