search_arxiv
Query the arXiv API to retrieve article metadata based on keywords, authors, titles, or abstracts. Results are returned as a JSON string with article titles and arXiv IDs.
Instructions
Performs a search query on the arXiv API based on specified parameters and returns matching article metadata. This function allows for flexible querying of the arXiv database. Only parameters that are explicitly provided will be included in the final search query. Results are returned in a JSON-formatted string with article titles as keys and their corresponding arXiv IDs as values.
Args: all_fields: General keyword search across all metadata fields including title, abstract, authors, comments, and categories. title: Keyword(s) to search for within the titles of articles. author: Author name(s) to filter results by. abstract: Keyword(s) to search for within article abstracts. start: Index of the first result to return; used for paginating through search results. Defaults to 0.
Returns: A JSON-formatted string containing article titles and their associated arXiv IDs; otherwise, a plain error message string.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
abstract | No | ||
all_fields | No | ||
author | No | ||
start | No | ||
title | No |