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

  • use_cache (bool, default False) – Enable caching

  • validate (bool, default True) – Validate parameters

Return type:

list[Any]