tooluniverse.tools.ArXiv_search_papers module¶
ArXiv_search_papers
Search arXiv for papers by keyword using the public arXiv API. Returns papers with title, abstrac…
- tooluniverse.tools.ArXiv_search_papers.ArXiv_search_papers(query, limit=10, sort_by='relevance', sort_order='descending', *, stream_callback=None, use_cache=False, validate=True)[source]¶
Search arXiv for papers by keyword using the public arXiv API. Returns papers with title, abstrac…
- Parameters:
query (
str) – Search query for arXiv papers. Use keywords separated by spaces to refine you…limit (
int) – Number of papers to return. This sets the maximum number of papers retrieved …sort_by (
str) – Sort order for results. Options: ‘relevance’, ‘lastUpdatedDate’, ‘submittedDate’sort_order (
str) – Sort direction. Options: ‘ascending’, ‘descending’stream_callback (
Callable, optional) – Callback for streaming output
- Return type:
list[Any]