docs: add generative-deepseek model provider integration page#459
Open
g-despot wants to merge 1 commit into
Open
docs: add generative-deepseek model provider integration page#459g-despot wants to merge 1 commit into
g-despot wants to merge 1 commit into
Conversation
Document the new generative-deepseek module (DeepSeek as a generative/RAG
provider), available from v1.36.19, v1.37.10, and v1.38.2.
- New provider pages model-providers/deepseek/{index,generative}.md (Python only for now)
- Document the X-Deepseek-Api-Key and X-Deepseek-Baseurl headers and the
DEEPSEEK_APIKEY env var
- Config keys (model, temperature, maxTokens, frequencyPenalty,
presencePenalty, topP, baseURL, stop) with defaults
- Recommend deepseek-v4-flash / deepseek-v4-pro; note deepseek-chat and
deepseek-reasoner are legacy aliases (deprecated 2026-07-24 per DeepSeek)
- Add DeepSeek to the model-providers table and sidebar
- Python snippets show the intended Configure.Generative.deepseek(...) syntax
(client support to follow); kept out of the CI snippet allowlist
There was a problem hiding this comment.
Orca Security Scan Summary
| Status | Check | Issues by priority | |
|---|---|---|---|
| Infrastructure as Code | View in Orca | ||
| SAST | View in Orca | ||
| Secrets | View in Orca | ||
| Vulnerabilities | View in Orca |
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
Adds documentation for the new
generative-deepseekmodule — DeepSeek as a generative (RAG) model provider — available from v1.36.19, v1.37.10, and v1.38.2 (backported across all three release lines).What's included
model-providers/deepseek/:index.md(landing) andgenerative.md(integration guide), following the existing model-provider pattern (closest analog: Mistral). Generative only — DeepSeek has no embeddings/reranker.X-Deepseek-Api-KeyandX-Deepseek-Baseurlrequest headers and theDEEPSEEK_APIKEYenv var.model(defaultdeepseek-chat),temperature,maxTokens,frequencyPenalty,presencePenalty,topP,baseURL(https://api.deepseek.com),stop.deepseek-v4-flash/deepseek-v4-proids; notesdeepseek-chat/deepseek-reasonerare legacy aliases scheduled for deprecation 2026-07-24 (attributed to DeepSeek's pricing page).Scope notes
Configure.Generative.deepseek(...)syntax; the Python client builder will be implemented afterward to match. Until then the new snippets are kept out of the docs CI snippet test allowlist (and additionally guarded), so the snippet suite is unaffected.Verification
yarn build-devpasses; no new broken links/anchors; allFilteredTextBlockmarkers resolve.modules/generative-deepseek/(headers, config keys/defaults, default model, version availability).