docs: refresh retired model ids across the integration guides - #101
Open
MVS-source wants to merge 2 commits into
Open
docs: refresh retired model ids across the integration guides#101MVS-source wants to merge 2 commits into
MVS-source wants to merge 2 commits into
Conversation
Ten model ids cited across v3/integrations were no longer served. Each replacement was verified with a real call, not just checked for presence in the catalogue: anthropic/claude-sonnet-4-5 -> anthropic/claude-sonnet-latest (48x, 13 files) anthropic/claude-opus-4.7 -> anthropic/claude-opus-4-7 (typo, dot for dash) cohere/command-r-plus -> cohere/command-a-03-2025 cohere/command-r -> cohere/command-r-08-2024 meta/llama-3-70b -> scaleway/llama-3.3-70b-instruct meta/llama-3-8b -> ionos/meta-llama/Meta-Llama-3.1-8B-Instruct openai/dall-e-3 -> openai/gpt-image-2 openai/gpt-5.1-codex(-mini/-max) -> openai/gpt-5.3-codex and azure variants The -latest aliases are used where they exist so the same ids do not rot again: claude-sonnet-latest resolves to claude-sonnet-5 today. Also fixes the auth-check curl in the Codex CLI guide, which sent a Codex model to /chat/completions. Codex models are served on /responses only, so that check returned a 400 that read like an invalid key.
|
Preview deployment for your docs. Learn more about Mintlify Previews.
💡 Tip: Enable Workflows to automatically generate PRs for you. |
|
Important
This repository does not receive automatic reviews because it has fewer than 10 stars. ⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Plus Run ID: Comment |
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.
What
Ten model ids cited across
v3/integrations/*.mdxwere no longer served. This replaces all of them. 13 files, 76 insertions and 76 deletions, so it is a pure substitution with no structural change.anthropic/claude-sonnet-4-5anthropic/claude-sonnet-latestanthropic/claude-opus-4.7anthropic/claude-opus-4-7cohere/command-r-pluscohere/command-a-03-2025cohere/command-rcohere/command-r-08-2024meta/llama-3-70bmeta/vendorscaleway/llama-3.3-70b-instructmeta/llama-3-8bmeta/vendorionos/meta-llama/Meta-Llama-3.1-8B-Instructopenai/dall-e-3/v3/images/modelstooopenai/gpt-image-2openai/gpt-5.1-codex,-mini,-maxgpt-5.3-codexexists underopenai/openai/gpt-5.3-codexplus the Azure-hosted variantsanthropic/claude-sonnet-4-5was our house example. Where an alias exists it is now used instead of a pinned version, so the same ids will not rot again:anthropic/claude-sonnet-latestresolves toclaude-sonnet-5today and will follow.For Llama, the ids now name their host because that is how the catalogue exposes them. The headings were adjusted so a reader is not surprised by a
scaleway/orionos/prefix under a Meta heading.Verification
Every replacement was checked with a real API call, not just for presence in the catalogue, because the catalogue can list a model it will not serve. All seven chat replacements returned
200,openai/gpt-image-2returned200on/v3/images/generations, and the codex ids returned200on/v3/responses.After the sweep, a pass over all 24 pages against the live chat, image and embeddings catalogues finds zero dead ids. The only remaining matches are three false positives that are not model ids at all:
openai/resources/chat/completions(a TypeScript import path),oauth/google/callback(a URL) andgithub.com/openai/codex(a repo URL).Human-readable labels sitting next to the ids were realigned too, otherwise the page would say "Command R+" next to a Command A id: three of those in
continue-devandopenclaw.One real bug this turned up
The auth-check
curlin the Codex CLI guide sent a Codex model to/chat/completions. Codex models are served on/responsesonly, so that check returned:A
400, on the page whose whole purpose at that point is "check whether your key works". The check now uses a plain chat model, with a sentence saying why. The rest of the guide was already correct, it setswire_api = "responses".Note on CI
Execution Testsis red here as it is on every PR in this repo since around 11 August. It dies inpytest_sessionstartontests/helpers/api.pygetting401 Unauthorizedfromhttps://staging-api.edenai.run/v2/user/custom_token/. Not related to this change. Same on #77, #90 through #99.