fix: Mark 6 removed Together.ai serverless models as status = "deprecated"#3325
Merged
Conversation
Five models are absent from Together.ai's serverless catalog and are no longer served. Delete them instead of marking deprecated. Leave Qwen/Qwen3.6-Plus active — it is still listed in the catalog. Closes #3324
Contributor
Author
Action items
|
Follow repo convention: models no longer served stay in the catalog with status = "deprecated" so pricing/limits/history and external ID references are preserved. Reverts the deletion approach.
Contributor
Author
|
No actionable findings. |
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.
I made the data fix. Below is the review-ready PR description.
Summary
Issue #3324 asked to mark 6 Together.ai serverless models as
status = "deprecated"because they are no longer served via the serverless endpoint. Verified each model against Together.ai's authoritative first-party serverless models catalog. Five of the six models are confirmed absent from the current serverless catalog and were marked deprecated. One model from the issue,Qwen/Qwen3.6-Plus, is still actively listed in Together.ai's serverless catalog (with pricing that exactly matches the existing TOML), so it was intentionally left active — the issue's claim for that model is contradicted by the authoritative source.Changes
Added
status = "deprecated"(placed afteropen_weights, following the serializer's field order) and a leading deprecation source comment to five files:providers/togetherai/models/zai-org/GLM-5.1.tomlstatus = "deprecated"+ deprecation source commentproviders/togetherai/models/zai-org/GLM-5.tomlstatus = "deprecated"+ deprecation source commentproviders/togetherai/models/Qwen/Qwen3-235B-A22B-Instruct-2507-tput.tomlstatus = "deprecated"+ new leading source comment (file had no header)providers/togetherai/models/Qwen/Qwen3.5-397B-A17B.tomlstatus = "deprecated"+ deprecation source commentproviders/togetherai/models/essentialai/Rnj-1-Instruct.tomlstatus = "deprecated"+ new leading source comment (file had no header)No other fields (cost, limits, modalities, descriptions, release/last_updated dates) were modified.
Qwen/Qwen3.6-Plus.tomlwas not touched.Evidence
Qwen/Qwen3.6-Plusis present in the table (context 1,000,000; input $0.50; output $3.00 — matching the existing TOML exactly), which is why it was left active.packages/core/src/schema.ts:246):status: z.enum(["alpha", "beta", "deprecated"]).optional()confirmsstatus = "deprecated"is a valid top-level field.deepseek-ai/DeepSeek-V3.toml,moonshotai/Kimi-K2.5.toml,Qwen/Qwen3-Coder-Next-FP8.toml) use the samestatus = "deprecated"pattern, confirming the convention.Validation
statusis a schema-valid optional top-level field viapackages/core/src/schema.ts.packages/core/src/sync/index.tsprovider map), so these hand-authored files are not rewritten by the daily sync; leading comment blocks are preserved.bun validate(no shell/Bash access in this environment); the workflow's validation step will confirm parse/schema correctness.Review notes
Qwen/Qwen3.6-Plusdiscrepancy: The issue lists it as removed, but Together.ai's serverless docs (accessed 2026-07-18) still listQwen/Qwen3.6-Plusas an active serverless chat model with pricing identical to our TOML. I did not deprecate it. If the reporter'scurlerrors were due to a transient issue, key/access scoping, or a docs page lagging behind an imminent removal, a follow-up can deprecate it once the first-party catalog no longer lists it.description = "Legacy model retained for compatibility with older integrations". I deliberately did not rewrite the five models' descriptions, because (a) the issue only requests the status change, (b) that boilerplate is an editorial convention rather than a verifiable factual claim (and may be inaccurate — these models may be fully gone, not "retained"), and (c) replacing them would discard the original descriptive text. Flagging in case a maintainer prefers the uniform description convention applied.meta-llama/Meta-Llama-3-8B-Instruct-LiteandLiquidAI/LFM2-24B-A2B(the catalog now listsLiquidAI/LFM2.5-8B-A1Binstead). These were intentionally not modified because they are outside this issue's scope; mentioning them here as a potential follow-up.essentialai/Rnj-1-Instructis absent from the serverless catalog and was deprecated as requested; I did not investigate whether the model name itself is canonical, as that is outside this issue's scope.Closes #3324
Automated by the issue fixer: https://github.com/anomalyco/models.dev/actions/runs/29632028261