Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/ui/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ export function App({ projectRoot, version = "", onRestart }: AppProps): React.R
const meta: MessageMeta = {
isModelChange: true,
};
const content = `/model\n└ Set model to ${selection.model} (${selection?.reasoningEffort || "no thinking"})`;
const content = `/model\n└ Set model to ${selection.model} (${selection?.thinkingEnabled ? selection?.reasoningEffort : "no thinking"})`;

if (activeSessionId) {
sessionManager.addSessionSystemMessage(activeSessionId, content, meta);
Expand Down
2 changes: 1 addition & 1 deletion src/ui/WelcomeScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export function WelcomeScreen({
{!compact ? <Text> </Text> : null}
<SettingRow label="Model" value={settings.model} />
<SettingRow label="Thinking Enabled" value={String(settings.thinkingEnabled)} />
<SettingRow label="Reasoning Effort" value={settings.reasoningEffort} />
<SettingRow label="Reasoning Effort" value={settings.thinkingEnabled ? settings.reasoningEffort : "-"} />
<SettingRow label="CWD" value={cwd} />
</Box>
</Box>
Expand Down