feat: 支持通过 GenerateOptions 按轮次动态控制 enableThinking#1494
Open
Janemia wants to merge 2 commits into
Open
Conversation
Add enableThinking field to GenerateOptions so that hooks can dynamically control enable_thinking on a per-turn basis, not just thinking_budget. DashScopeChatModel.applyThinkingMode() now prioritizes the options-level value over the model-level fixed value, with full backward compatibility.
|
mingshu seems not to be a GitHub user. You need a GitHub account to be able to sign the CLA. If you have already a GitHub account, please add the email address used for this commit to your account. You have signed the CLA already but the status is still pending? Let us recheck it. |
Codecov Report❌ Patch coverage is 📢 Thoughts on this report? Let us know! |
Collaborator
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.

改动说明
为
GenerateOptions新增enableThinking字段,使 Hook 能够按轮次动态控制enable_thinking(此前只能控制thinking_budget)。修改内容
GenerateOptions:新增enableThinking字段、getter、Builder 方法及 mergeOptions 合并逻辑DashScopeChatModel.applyThinkingMode():优先取 options 级别的值,未设置时 fallback 到模型级别的固定值向后兼容
完全向后兼容。当
options.getEnableThinking()为 null 时,行为与改造前一致,使用模型级别的this.enableThinking。