list_releases
List AI model and product releases tracked by AI-Portal, newest first. Filter by category, provider, year, or landmark releases only.
Parameters5
| category | string | optional | Release category |
| provider | string | optional | Provider name substring, e.g. "anthropic", "google" |
| year | string | optional | Four-digit year, e.g. "2026" |
| landmark_only | boolean | optional | Only landmark (major) releases |
| limit | number | optional | Max items to return (default 25, max 100) |
Raw schema
{
"type": "object",
"properties": {
"category": {
"type": "string",
"enum": [
"llm",
"multimodal",
"image",
"video",
"tool",
"framework"
],
"description": "Release category"
},
"provider": {
"type": "string",
"description": "Provider name substring, e.g. \"anthropic\", \"google\""
},
"year": {
"type": "string",
"description": "Four-digit year, e.g. \"2026\""
},
"landmark_only": {
"type": "boolean",
"description": "Only landmark (major) releases"
},
"limit": {
"type": "number",
"description": "Max items to return (default 25, max 100)"
}
}
}