mirror of
https://github.com/Palm1r/QodeAssist.git
synced 2025-11-30 22:43:00 -05:00
feat: Add ollama thinking feature (#275)
This commit is contained in:
@ -146,10 +146,10 @@ ChatAssistantSettings::ChatAssistantSettings()
|
||||
|
||||
// Extended Thinking Settings
|
||||
enableThinkingMode.setSettingsKey(Constants::CA_ENABLE_THINKING_MODE);
|
||||
enableThinkingMode.setLabelText(Tr::tr("Enable extended thinking mode (Claude only).\n Temperature is 1.0 accordingly API requerement"));
|
||||
enableThinkingMode.setLabelText(Tr::tr("Enable extended thinking mode (Claude, Ollama).\n Temperature is 1.0 accordingly API requirement for Claude"));
|
||||
enableThinkingMode.setToolTip(
|
||||
Tr::tr("Enable Claude's extended thinking mode for complex reasoning tasks. "
|
||||
"This provides step-by-step reasoning before the final answer."));
|
||||
Tr::tr("Enable extended thinking mode for complex reasoning tasks. "
|
||||
"This provides step-by-step reasoning before the final answer. "));
|
||||
enableThinkingMode.setDefaultValue(false);
|
||||
|
||||
thinkingBudgetTokens.setSettingsKey(Constants::CA_THINKING_BUDGET_TOKENS);
|
||||
@ -298,7 +298,7 @@ ChatAssistantSettings::ChatAssistantSettings()
|
||||
}},
|
||||
Group{title(Tr::tr("Ollama Settings")), Column{Row{ollamaGrid, Stretch{1}}}},
|
||||
Group{
|
||||
title(Tr::tr("Extended Thinking (Claude Only)")),
|
||||
title(Tr::tr("Extended Thinking (Claude, Ollama)")),
|
||||
Column{enableThinkingMode, Row{thinkingGrid, Stretch{1}}}},
|
||||
Group{title(Tr::tr("Chat Settings")), Row{chatViewSettingsGrid, Stretch{1}}},
|
||||
Stretch{1}};
|
||||
|
||||
Reference in New Issue
Block a user