search_latest_papers
Find recent AI/ML research papers using keywords, date ranges, and multiple academic sources to stay current with developments in the field.
Instructions
Search for latest AI/ML research papers from multiple sources (arXiv, Papers with Code, Hugging Face)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| keywords | No | Keywords to search for (e.g., ['LLM', 'multimodal']) | |
| days | No | Number of days to look back (1-30) | |
| sources | No | Data sources to search (default: all) | |
| max_results | No | Maximum number of results per source |
Input Schema (JSON Schema)
{
"properties": {
"days": {
"default": 7,
"description": "Number of days to look back (1-30)",
"type": "integer"
},
"keywords": {
"description": "Keywords to search for (e.g., ['LLM', 'multimodal'])",
"items": {
"type": "string"
},
"type": "array"
},
"max_results": {
"default": 20,
"description": "Maximum number of results per source",
"type": "integer"
},
"sources": {
"description": "Data sources to search (default: all)",
"items": {
"enum": [
"arxiv",
"papers_with_code",
"huggingface"
],
"type": "string"
},
"type": "array"
}
},
"type": "object"
}