search_by_author
Search arXiv papers by a specific author, filter results by category, date range, and limit the number of returned entries for focused research.
Instructions
Search papers by a specific author.
:param author_name: Name of the author to search for :param max_results: Maximum number of results :param category: Optional category filter (e.g., 'cs.SE', 'cs.AI') :param start_date: Optional start date filter (YYYY-MM-DD or YYYY) :param end_date: Optional end date filter (YYYY-MM-DD or YYYY)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
author_name | Yes | ||
category | No | ||
end_date | No | ||
max_results | No | ||
start_date | No |
Input Schema (JSON Schema)
{
"properties": {
"author_name": {
"title": "Author Name",
"type": "string"
},
"category": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Category"
},
"end_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "End Date"
},
"max_results": {
"default": 20,
"title": "Max Results",
"type": "integer"
},
"start_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Start Date"
}
},
"required": [
"author_name"
],
"type": "object"
}