Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/proxy/schema/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -590,6 +590,7 @@ export const AvailableEndpointTypes: { [name: string]: ModelEndpointType[] } = {
"grok-2-1212": ["xAI"],
"grok-vision-beta": ["xAI"],
"grok-beta": ["xAI"],
"grok-4.20-multi-agent-0309": ["xAI"],
"grok-4.20-0309-non-reasoning": ["xAI"],
"accounts/fireworks/models/deepseek-v4-flash": ["fireworks"],
"accounts/fireworks/models/glm-5": ["fireworks"],
Expand Down
13 changes: 13 additions & 0 deletions packages/proxy/schema/model_list.json
Original file line number Diff line number Diff line change
Expand Up @@ -7322,6 +7322,19 @@
"xAI"
]
},
"grok-4.20-multi-agent-0309": {
"format": "openai",
"flavor": "chat",
Comment on lines +7326 to +7327
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Route multi-agent through Responses API

For this model, flavor: "chat" makes the proxy's /auto path select /chat/completions (see packages/proxy/src/proxy.ts switch on modelSpec.flavor), and normal chat-completion calls are forwarded to xAI's /chat/completions. xAI's current multi-agent docs state that grok-4.20-multi-agent does not work with the OpenAI Chat Completions API and must use the xAI SDK or Responses API instead, so users who pick the newly added model through the standard chat route will get provider errors rather than a working model.

Useful? React with 👍 / 👎.

"multimodal": true,
"input_cost_per_mil_tokens": 1.25,
"output_cost_per_mil_tokens": 2.5,
"input_cache_read_cost_per_mil_tokens": 0.2,
"reasoning": true,
"max_input_tokens": 1000000,
"available_providers": [
"xAI"
]
},
"amazon.nova-pro-v1:0": {
"format": "converse",
"flavor": "chat",
Expand Down