{{ message }}
feat(setup): ask custom OpenAI-compatible users about thinking support#3727
Open
wuhongqiang888 wants to merge 1 commit into
Open
feat(setup): ask custom OpenAI-compatible users about thinking support#3727wuhongqiang888 wants to merge 1 commit into
wuhongqiang888 wants to merge 1 commit into
Conversation
When users configure the 'Other OpenAI-compatible' provider in make setup, the wizard now asks whether their model supports thinking/reasoning. Supports_thinking is passed through LLMStepResult and written to config.
Collaborator
|
@wuhongqiang888, please click the CLA assistant button to sign the CLA before we start the review process. |
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.

Summary
When configuring the Other OpenAI-compatible provider in
make setup, the wizard now asks whether the model supports thinking/reasoning output. If the user confirms, the generated config.yaml includessupports_thinking: trueandwhen_thinking_enabled/when_thinking_disabledblocks.Built-in providers (OpenAI, Anthropic, DeepSeek, etc.) are not affected - they already have pre-configured thinking support.
Changes
scripts/wizard/steps/llm.py: Addask_yes_noprompt for thinking support after base_url entry; addsupports_thinkingfield toLLMStepResultscripts/setup_wizard.py: MergeOPENAI_COMPAT_THINKING_CONFIGinto extra model config when user confirms thinking supportFixes #3162