docs(ai-in-clay): mark DeepSeek V4 Pro as deprecated in model table#1514
Merged
george-dilthey merged 1 commit intoJul 12, 2026
Merged
Conversation
Contributor
george-dilthey
marked this pull request as ready for review
July 12, 2026 01:18
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 changed: Updated
docs/ai-in-clay.mdto reflect the deprecation of DeepSeek V4 Pro in the Available AI Models table. Changed the DeepSeek row from "currently in beta — contact support to enable" to a deprecation notice matching the existing pattern used for deprecated Claude models.Why: Deploy
clay-run/clay-base8e4eb05...a82f53d(https://github.com/clay-run/clay-base/actions/runs/29168912360) included commit29a7f2d4which markeddeepseek-v4-pro,deepseek-v4-flash, anddeepseek-v3.2asisDeprecated: trueinlibs/shared/src/ai/models.ts. The docs previously advertised DeepSeek V4 Pro as available in beta. Root cause confirmed via Slack: Fireworks deprecated their DeepSeek hosting ("Deepseek is fully broken rn because Fireworks deprecated it"), prompting Clay to deprecate all three DeepSeek models. Users can no longer select any DeepSeek model for new configurations.Source link(s):
libs/shared/src/ai/models.ts:1044(V4 ProisDeprecated: true),libs/shared/src/ai/models.ts:1060(V4 FlashisDeprecated: true),libs/shared/src/ai/models.ts:1074(V3.2isDeprecated: true),libs/shared/src/ai/models.ts:1399(filter: deprecated models hidden unless already selected)Uncertainties: None. The deprecation is unconditional (
isDeprecated: truewithout any additional runtime gate).Related observations: (1)
docs/use-ai-integration-overview.mdalso mentions DeepSeek V4 Pro as available in beta and lists DeepSeek as a supported provider — those references also need removal. That file could not be included in this PR because PR #1494 is open on it (adding an unrelated troubleshooting section about cycling status text). A follow-up PR should remove DeepSeek from that file once PR #1494 merges. (2) The DeepSeek provider row is kept in theai-in-clay.mdtable with a deprecation notice (parallel to the Claude deprecation pattern already in that doc) rather than being removed entirely, since existing users with the model selected will still encounter it in the UI. (3) DeepSeek V4 Flash and V3.2 were never explicitly documented, so no separate notice is needed for them.Confidence: high
Closes DOC-1094