Parameter | Type |
---|---|
query | STRING |
maxResults | NUMBER |
yearStart | NUMBER |
yearEnd | NUMBER |
searchField | STRING |
[
{
"url": "https://chat-plugin-arxiv.vercel.app/api/arxiv",
"name": "arxiv",
"description": "Search for papers on arXiv and provide a summary based on user queries. Return all paper titles, authors, categories, publication dates, abstracts, and paper URLs.",
"parameters": {
"properties": {
"query": {
"description": "Search query for papers,If the user input is in a non-English language, it should be translated into English.",
"type": "string"
},
"maxResults": {
"type": "number",
"description": "Maximum number of results to return"
},
"yearStart": {
"type": "number",
"description": "Start year of search"
},
"yearEnd": {
"type": "number",
"description": "End year of search"
},
"searchField": {
"type": "string",
"enum": [
"title",
"author",
"abstract",
"all"
],
"description": "Analyze based on user input. Search field, can be title, author, abstract, all"
}
},
"required": [
"query"
],
"type": "object"
}
}
]