|
| 1 | +--- |
| 2 | +title: ArXiv |
| 3 | +description: Search and retrieve academic papers from ArXiv |
| 4 | +--- |
| 5 | + |
| 6 | +import { BlockInfoCard } from "@/components/ui/block-info-card" |
| 7 | + |
| 8 | +<BlockInfoCard |
| 9 | + type="arxiv" |
| 10 | + color="#E0E0E0" |
| 11 | + icon={true} |
| 12 | + iconSvg={`<svg className="block-icon" id='logomark' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17.732 24.269'> |
| 13 | + <g id='tiny'> |
| 14 | + <path |
| 15 | + d='M573.549,280.916l2.266,2.738,6.674-7.84c.353-.47.52-.717.353-1.117a1.218,1.218,0,0,0-1.061-.748h0a.953.953,0,0,0-.712.262Z' |
| 16 | + transform='translate(-566.984 -271.548)' |
| 17 | + fill='#bdb9b4' |
| 18 | + /> |
| 19 | + <path |
| 20 | + d='M579.525,282.225l-10.606-10.174a1.413,1.413,0,0,0-.834-.5,1.09,1.09,0,0,0-1.027.66c-.167.4-.047.681.319,1.206l8.44,10.242h0l-6.282,7.716a1.336,1.336,0,0,0-.323,1.3,1.114,1.114,0,0,0,1.04.69A.992.992,0,0,0,571,293l8.519-7.92A1.924,1.924,0,0,0,579.525,282.225Z' |
| 21 | + transform='translate(-566.984 -271.548)' |
| 22 | + fill='#b31b1b' |
| 23 | + /> |
| 24 | + <path |
| 25 | + d='M584.32,293.912l-8.525-10.275,0,0L573.53,280.9l-1.389,1.254a2.063,2.063,0,0,0,0,2.965l10.812,10.419a.925.925,0,0,0,.742.282,1.039,1.039,0,0,0,.953-.667A1.261,1.261,0,0,0,584.32,293.912Z' |
| 26 | + transform='translate(-566.984 -271.548)' |
| 27 | + fill='#bdb9b4' |
| 28 | + /> |
| 29 | + </g> |
| 30 | + </svg>`} |
| 31 | +/> |
| 32 | + |
| 33 | +{/* MANUAL-CONTENT-START:intro */} |
| 34 | +[ArXiv](https://arxiv.org/) is a free, open-access repository of scientific research papers in fields such as physics, mathematics, computer science, quantitative biology, quantitative finance, statistics, electrical engineering, systems science, and economics. ArXiv provides a vast collection of preprints and published articles, making it a primary resource for researchers and practitioners worldwide. |
| 35 | + |
| 36 | +With ArXiv, you can: |
| 37 | + |
| 38 | +- **Search for academic papers**: Find research by keywords, author names, titles, categories, and more |
| 39 | +- **Retrieve paper metadata**: Access abstracts, author lists, publication dates, and other bibliographic information |
| 40 | +- **Download full-text PDFs**: Obtain the complete text of most papers for in-depth study |
| 41 | +- **Explore author contributions**: View all papers by a specific author |
| 42 | +- **Stay up-to-date**: Discover the latest submissions and trending topics in your field |
| 43 | + |
| 44 | +In Sim Studio, the ArXiv integration enables your agents to programmatically search, retrieve, and analyze scientific papers from ArXiv. This allows you to automate literature reviews, build research assistants, or incorporate up-to-date scientific knowledge into your agentic workflows. Use ArXiv as a dynamic data source for research, discovery, and knowledge extraction within your Sim Studio projects. |
| 45 | +{/* MANUAL-CONTENT-END */} |
| 46 | + |
| 47 | + |
| 48 | +## Usage Instructions |
| 49 | + |
| 50 | +Search for academic papers, retrieve metadata, download papers, and access the vast collection of scientific research on ArXiv. |
| 51 | + |
| 52 | + |
| 53 | + |
| 54 | +## Tools |
| 55 | + |
| 56 | +### `arxiv_search` |
| 57 | + |
| 58 | +Search for academic papers on ArXiv by keywords, authors, titles, or other fields. |
| 59 | + |
| 60 | +#### Input |
| 61 | + |
| 62 | +| Parameter | Type | Required | Description | |
| 63 | +| --------- | ---- | -------- | ----------- | |
| 64 | +| `query` | string | Yes | The search query to execute | |
| 65 | +| `searchField` | string | No | Field to search in: all, ti \(title\), au \(author\), abs \(abstract\), co \(comment\), jr \(journal\), cat \(category\), rn \(report number\) | |
| 66 | +| `maxResults` | number | No | Maximum number of results to return \(default: 10, max: 2000\) | |
| 67 | +| `sortBy` | string | No | Sort by: relevance, lastUpdatedDate, submittedDate \(default: relevance\) | |
| 68 | +| `sortOrder` | string | No | Sort order: ascending, descending \(default: descending\) | |
| 69 | + |
| 70 | +#### Output |
| 71 | + |
| 72 | +| Parameter | Type | |
| 73 | +| --------- | ---- | |
| 74 | +| `query` | string | |
| 75 | +| `papers` | string | |
| 76 | +| `totalResults` | string | |
| 77 | + |
| 78 | +### `arxiv_get_paper` |
| 79 | + |
| 80 | +Get detailed information about a specific ArXiv paper by its ID. |
| 81 | + |
| 82 | +#### Input |
| 83 | + |
| 84 | +| Parameter | Type | Required | Description | |
| 85 | +| --------- | ---- | -------- | ----------- | |
| 86 | +| `paperId` | string | Yes | ArXiv paper ID \(e.g., | |
| 87 | + |
| 88 | +#### Output |
| 89 | + |
| 90 | +| Parameter | Type | |
| 91 | +| --------- | ---- | |
| 92 | +| `paper` | string | |
| 93 | + |
| 94 | +### `arxiv_get_author_papers` |
| 95 | + |
| 96 | +Search for papers by a specific author on ArXiv. |
| 97 | + |
| 98 | +#### Input |
| 99 | + |
| 100 | +| Parameter | Type | Required | Description | |
| 101 | +| --------- | ---- | -------- | ----------- | |
| 102 | +| `authorName` | string | Yes | Author name to search for | |
| 103 | +| `maxResults` | number | No | Maximum number of results to return \(default: 10, max: 2000\) | |
| 104 | + |
| 105 | +#### Output |
| 106 | + |
| 107 | +| Parameter | Type | |
| 108 | +| --------- | ---- | |
| 109 | +| `authorPapers` | string | |
| 110 | +| `authorName` | string | |
| 111 | +| `totalResults` | string | |
| 112 | + |
| 113 | + |
| 114 | + |
| 115 | +## Block Configuration |
| 116 | + |
| 117 | +### Input |
| 118 | + |
| 119 | +| Parameter | Type | Required | Description | |
| 120 | +| --------- | ---- | -------- | ----------- | |
| 121 | +| `operation` | string | Yes | Operation | |
| 122 | + |
| 123 | + |
| 124 | + |
| 125 | +### Outputs |
| 126 | + |
| 127 | +| Output | Type | Description | |
| 128 | +| ------ | ---- | ----------- | |
| 129 | +| `papers` | json | papers output from the block | |
| 130 | +| `totalResults` | number | totalResults output from the block | |
| 131 | +| `paper` | json | paper output from the block | |
| 132 | +| `authorPapers` | json | authorPapers output from the block | |
| 133 | + |
| 134 | + |
| 135 | +## Notes |
| 136 | + |
| 137 | +- Category: `tools` |
| 138 | +- Type: `arxiv` |
0 commit comments