chore: make clear that --model is for choosing model on startup (#12367)

This commit is contained in:
Jack Wotherspoon
2025-10-31 10:01:56 -04:00
committed by GitHub
parent 236334d015
commit 6f69cdcc31
2 changed files with 2 additions and 2 deletions

View File

@@ -85,7 +85,7 @@ describe('<ModelDialog />', () => {
expect(lastFrame()).toContain('Select Model');
expect(lastFrame()).toContain('(Press Esc to close)');
expect(lastFrame()).toContain(
'> To use a specific Gemini model, use the --model flag.',
'> To use a specific Gemini model on startup, use the --model flag.',
);
unmount();
});

View File

@@ -104,7 +104,7 @@ export function ModelDialog({ onClose }: ModelDialogProps): React.JSX.Element {
</Box>
<Box flexDirection="column">
<Text color={theme.text.secondary}>
{'> To use a specific Gemini model, use the --model flag.'}
{'> To use a specific Gemini model on startup, use the --model flag.'}
</Text>
</Box>
<Box marginTop={1} flexDirection="column">