search_by_area
Search for AI research papers and repositories by specific research area to track recent developments in fields like LLM, vision, robotics, and bioinformatics.
Instructions
Search papers and repos by research area (llm, vision, robotics, bioinfo, etc.)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| area | Yes | Research area: llm, vision, robotics, bioinfo, rl, graph, etc. | |
| days | No | Number of days to look back | |
| include_papers | No | Include papers from arXiv | |
| include_repos | No | Include GitHub repositories |
Input Schema (JSON Schema)
{
"properties": {
"area": {
"description": "Research area: llm, vision, robotics, bioinfo, rl, graph, etc.",
"type": "string"
},
"days": {
"default": 7,
"description": "Number of days to look back",
"type": "integer"
},
"include_papers": {
"default": true,
"description": "Include papers from arXiv",
"type": "boolean"
},
"include_repos": {
"default": true,
"description": "Include GitHub repositories",
"type": "boolean"
}
},
"required": [
"area"
],
"type": "object"
}