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"],
"chat-latest": ["openai","azure"],
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 Map Azure deployment alias for chat-latest

Do not advertise chat-latest as Azure-ready without an Azure alias, because Azure requests without an explicit metadata.deployment derive the deployment path from the model name (packages/proxy/src/proxy.ts uses bodyData.model for /openai/deployments/{...}), which will send chat-latest instead of Azure’s gpt-chat-latest. In that common configuration, calls routed to Azure will fail at runtime (deployment not found) even though this catalog entry marks the model as available on Azure.

Useful? React with 👍 / 👎.

"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 @@ -11081,6 +11081,19 @@
"azure"
]
},
"chat-latest": {
"format": "openai",
"flavor": "chat",
"multimodal": true,
"displayName": "GPT Chat Latest",
"reasoning": true,
"max_input_tokens": 128000,
"max_output_tokens": 16384,
"available_providers": [
"openai",
"azure"
]
},
"codex-mini-latest": {
"format": "openai",
"flavor": "chat",
Expand Down