Get Paper Summaries from Arxiv

This task allow you to search on arxiv for papers (title and summary).

Input

This task allow you to search on arxiv for papers (title and summary). Up to 20 topics are allowed.

[1.0.0]:
First release
VersionAI ModelCreatedLink
1.0.028.03.2023

API

The REST API allows you to call the tool with the same costs as when running the tool. Please generate an Personal access token before using the REST API.

Parameters

  • topic (Search topic): The topics to be searched for
  • max_results (Maximum result size (per topic)): How many items are returned (per topic)
  • Call the REST API by cURL
    curl -v -H "Authorization: Bearer PERSONAL_ACCESS_TOKEN" https://api.anysolve.ai/rest/v1/intern-web-arxiv/1.0.0?topic=AnySolve&max_results=5
  • Install the package with pip
    python3 -m pip install anysolve
  • Run in python3
    import os
    from anysolve import AnySolve
    anysolve_token = os.environ.get('ANYSOLVE_PERSONAL_ACCESS_TOKEN') # Resolve your personal access token here
    client = AnySolve(anysolve_token)
    res = client.run('intern-web-arxiv','1.0.0', {'topic': 'AnySolve', 'max_results': '5'})
    print(res)
  • Coming soon: Within AnySolve ChatComplete prompts you can use the following command to execute the task:
    /run('intern-web-arxiv','1.0.0', topic='AnySolve', max_results='5')