mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-05-12 12:54:07 -07:00
Simplify inline thinking display
This commit is contained in:
@@ -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>}
|
||||||
|
|||||||
Reference in New Issue
Block a user