v1
latestOpenAPI 3.0.02026-07-26870415.2 KBagents
List supported agent models
Lists the LLM models that can be set as an agent's model on create_agent / patch_agent. The set is global and can change over time, so read it here instead of hardcoding values.
get/v1/models
Response
Supported agent models
Example response
{
"data": [
{
"model_string": "openai:gpt-4o",
"provider": "openai",
"name": "GPT-4o",
"context_window_tokens": 128000
},
{
"model_string": "anthropic:claude-sonnet-4-6",
"provider": "anthropic",
"name": "Claude Sonnet 4.6",
"context_window_tokens": 200000
}
]
}