fix: DeepSeek-V3.x tool calling on ChatBedrockConverse - #688
Merged
Michael Chin (michaelnchin) merged 2 commits intoOct 11, 2025
Merged
Conversation
Michael Chin (michaelnchin)
merged commit Oct 11, 2025
24f6027
into
langchain-ai:main
11 checks passed
Murilo Moreira Simão (murilosimao)
pushed a commit
to murilosimao/langchain-aws
that referenced
this pull request
Oct 29, 2025
) The upstream DeepSeek models have the following tool calling restrictions: 1) DeepSeek-R1 does not support tools. (already handled) 2) DeepSeek-V3.1 does not work with the `auto` and named `tool` choice values. While these options will not be rejected on Converse API side, only `any` will produce a valid tool call output. 3) DeepSeek-V3.2-Exp supports `tool` choice in addition to `any`, but `auto` is still not supported. Accordingly, the PR updates the following: - Sets the correct default `supports_tool_choice` values for DeepSeek V3.x models - In `bind_tools`, overrides the Converse API side default `auto` tool choice with `any` for DeepSeek V3.x models.
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.
The upstream DeepSeek models have the following tool calling restrictions:
autoand namedtoolchoice values. While these options will not be rejected on Converse API side, onlyanywill produce a valid tool call output.toolchoice in addition toany, butautois still not supported.Accordingly, the PR updates the following:
supports_tool_choicevalues for DeepSeek V3.x modelsbind_tools, overrides the Converse API side defaultautotool choice withanyfor DeepSeek V3.x models.