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
+1 -1
View File
@@ -381,7 +381,7 @@ const SETTINGS_SCHEMA = {
default: false, default: false,
description: description:
'Show model thinking summaries inline in the conversation (deprecated; prefer the specific thinking modes).', 'Show model thinking summaries inline in the conversation (deprecated; prefer the specific thinking modes).',
showInDialog: true, showInDialog: false,
}, },
showInlineThinkingFull: { showInlineThinkingFull: {
type: 'boolean', type: 'boolean',
@@ -36,22 +36,16 @@ export const ThinkingMessage: React.FC<ThinkingMessageProps> = ({
marginBottom={1} marginBottom={1}
flexDirection="column" flexDirection="column"
> >
<Box>
<Text color="magenta"> </Text>
<Text bold color="magenta">
Thinking
</Text>
</Box>
<MaxSizedBox <MaxSizedBox
maxHeight={contentMaxHeight} maxHeight={contentMaxHeight}
maxWidth={terminalWidth - 2} maxWidth={terminalWidth - 2}
overflowDirection="top" overflowDirection="top"
> >
{(subject || description) && ( {(subject || description) && (
<Box marginTop={1} flexDirection="column"> <Box flexDirection="column">
{subject && ( {subject && (
<Text bold color="magenta"> <Text bold color="magenta">
{subject} {subject}
</Text> </Text>
)} )}
{description && <Text>{description}</Text>} {description && <Text>{description}</Text>}