fix: add OpenAI models chat-latest#611
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 81d2afb8ac
ℹ️ About Codex in GitHub
Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "Codex (@codex) review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "Codex (@codex) address that feedback".
| "grok-2-1212": ["xAI"], | ||
| "grok-vision-beta": ["xAI"], | ||
| "grok-beta": ["xAI"], | ||
| "chat-latest": ["openai","azure"], |
There was a problem hiding this comment.
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 👍 / 👎.
fix: add OpenAI models chat-latest
Closes #586
Source issue: #586
Summary
chat-latestchat-latest2
Verified metadata
Verification notes
Verification
Fields verified from official sources
openaichatgpt-5.x-chat-latestcatalog entries which all use 128000gpt-5.x-chat-latestcatalog entriesgpt-5.x-chat-latestentries in catalog; Azure note identifies this as "GPT-5.5 Instant" and gpt-5.5 supports "Text and image processing"gpt-5-chat-latest→ "GPT-5 chat",gpt-5.3-chat-latest→ "GPT-5.3 chat"; Azure page heading is "GPT-chat-latest"gpt-chat-latestdeployment name; OpenAI API name confirmed aschat-latestFields omitted (not verifiable)
gpt-5.x-chat-latestentries also have no parent.Corrections from original issue body
max_input_tokens: 1050000andmax_output_tokens: 128000(gpt-5.5 specs). Azure docs show 128K context / 16K output, matching the chat-class series, not gpt-5.5. Corrected tomax_input_tokens: 128000,max_output_tokens: 16384.sync_models (LiteLLM) cross-check
chat-latestandgpt-chat-latestare absent from the LiteLLM model_prices_and_context_window_backup.json catalog. No cross-check possible.sync_models vs proposed update
sync_models cross-check found differences. Official provider verification was used for the applied values, and sync_models discrepancies are listed below for review.