Feat/deepseek provider - #430
Open
NOLANeight wants to merge 1 commit into
Open
Conversation
NOLANeight
force-pushed
the
feat/deepseek-provider
branch
from
July 23, 2026 07:16
21e02cc to
a10a8ae
Compare
Add a new DeepSeek client that uses the standard Chat Completions API (chat.completions.create) via the OpenAICompatibleClient base, matching the pattern used by the existing Doubao provider. Changes: - New deepseek_client.py: DeepSeekClient + DeepSeekProvider (82 lines) - Register DEEPSEEK in LLMProvider enum and LLMClient factory - Add 12 unit tests covering provider config, client init, message handling, tool-calling support, and YAML config integration - Update README with DeepSeek examples and env var docs Closes bytedance#406
NOLANeight
force-pushed
the
feat/deepseek-provider
branch
from
July 23, 2026 07:25
a10a8ae to
4861535
Compare
Author
|
@cla-bot check |
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.
Closes #406
Add a new DeepSeek client that uses the standard Chat Completions API
via the OpenAICompatibleClient base, matching the pattern used by the
existing Doubao provider.
Changes: