chore: update model-to-API mapping (2026-09-04) - #8089
Open
github-actions[bot] wants to merge 1 commit into
Open
chore: update model-to-API mapping (2026-09-04)#8089github-actions[bot] wants to merge 1 commit into
github-actions[bot] wants to merge 1 commit into
Conversation
- Add gpt-6-astra (new flagship, Responses API only per official docs) - Update notes for claude-fable-5 and claude-mythos-5 to reflect 5.1 releases - Bump lastUpdated timestamp Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
🟡 Changes recommended
GPT-6 Astra supports Chat Completions, and the runtime mapping copy remains unsynchronized.
Once you've addressed the issues Copilot identified, you can request another Copilot review.
Pull request overview
Refreshes provider model-to-endpoint metadata.
Changes:
- Adds GPT-6 Astra.
- Updates Claude 5.1 notes and timestamp.
File summaries
| File | Description |
|---|---|
docs/model-api-mapping.json |
Updates model mappings and release notes. |
Review details
Suppressed comments (1)
docs/model-api-mapping.json:26
- OpenAI's official changelog and reasoning-model guide list both
/v1/responsesand/v1/chat/completionsfor GPT-6 Astra (with tool calling restricted to Responses). Marking it responses-only makes endpoint discovery reject a supported API and contradicts the current provider documentation.
"endpoints": ["responses"],
"notes": "Newest flagship model (Trusted Access Program rollout). Official page states models are available via the Responses API and Client SDKs; no Chat Completions support documented."
- Files reviewed: 1/1 changed files
- Comments generated: 1
- Review effort level: Balanced
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Comment on lines
+22
to
+26
| { | ||
| "family": "gpt-6-astra", | ||
| "patterns": ["gpt-6-astra*"], | ||
| "endpoints": ["responses"], | ||
| "notes": "Newest flagship model (Trusted Access Program rollout). Official page states models are available via the Responses API and Client SDKs; no Chat Completions support documented." |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Refreshed
docs/model-api-mapping.jsonagainst the latest OpenAI and Anthropic model documentation.Changes
gpt-6-astra, the newly announced flagship model (Trusted Access Program rollout). Perhttps://developers.openai.com/api/docs/models, all models are available via the Responses API and Client SDKs; no Chat Completions support is documented for this model, so it is mappedresponses-only.claude-fable-5-1andclaude-mythos-5-1are covered by the existingclaude-fable-5*andclaude-mythos-5*glob patterns (perhttps://docs.anthropic.com/en/docs/about-claude/models); updated notes to reference the 5.1 releases explicitly. All Claude models continue to use the/v1/messagesendpoint.lastUpdatedtimestamp.Verification
https://developers.openai.com/api/docs/modelsandhttps://developers.openai.com/api/reference/responses/overviewfor the current OpenAI model list.https://docs.anthropic.com/en/docs/about-claude/modelsfor the current Claude model list.docs/model-api-mapping.jsonis well-formed JSON after edits.