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