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]