search_github_repos
Find trending AI/ML GitHub repositories by keywords, topics, and activity filters to discover relevant research projects and code implementations.
Instructions
Search for trending AI/ML GitHub repositories
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| keywords | No | Keywords to search for | |
| topics | No | GitHub topics to filter by (e.g., ['llm', 'transformer']) | |
| min_stars | No | Minimum number of stars | |
| days | No | Look for repos updated in last N days | |
| max_results | No | Maximum number of results |
Input Schema (JSON Schema)
{
"properties": {
"days": {
"default": 30,
"description": "Look for repos updated in last N days",
"type": "integer"
},
"keywords": {
"description": "Keywords to search for",
"items": {
"type": "string"
},
"type": "array"
},
"max_results": {
"default": 25,
"description": "Maximum number of results",
"type": "integer"
},
"min_stars": {
"default": 50,
"description": "Minimum number of stars",
"type": "integer"
},
"topics": {
"description": "GitHub topics to filter by (e.g., ['llm', 'transformer'])",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
}