Simplify inline thinking display

This commit is contained in:
Dmitry Lyalin
2026-01-31 11:29:12 -05:00
parent 8b04b21648
commit 4620d5bb15
2 changed files with 3 additions and 9 deletions

View File

@@ -381,7 +381,7 @@ const SETTINGS_SCHEMA = {
default: false,
description:
'Show model thinking summaries inline in the conversation (deprecated; prefer the specific thinking modes).',
showInDialog: true,
showInDialog: false,
},
showInlineThinkingFull: {
type: 'boolean',

View File

@@ -36,22 +36,16 @@ export const ThinkingMessage: React.FC<ThinkingMessageProps> = ({
marginBottom={1}
flexDirection="column"
>
<Box>
<Text color="magenta"> </Text>
<Text bold color="magenta">
Thinking
</Text>
</Box>
<MaxSizedBox
maxHeight={contentMaxHeight}
maxWidth={terminalWidth - 2}
overflowDirection="top"
>
{(subject || description) && (
<Box marginTop={1} flexDirection="column">
<Box flexDirection="column">
{subject && (
<Text bold color="magenta">
{subject}
{subject}
</Text>
)}
{description && <Text>{description}</Text>}