mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-21 02:24:09 -07:00
chore: make clear that --model is for choosing model on startup (#12367)
This commit is contained in:
@@ -85,7 +85,7 @@ describe('<ModelDialog />', () => {
|
|||||||
expect(lastFrame()).toContain('Select Model');
|
expect(lastFrame()).toContain('Select Model');
|
||||||
expect(lastFrame()).toContain('(Press Esc to close)');
|
expect(lastFrame()).toContain('(Press Esc to close)');
|
||||||
expect(lastFrame()).toContain(
|
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();
|
unmount();
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -104,7 +104,7 @@ export function ModelDialog({ onClose }: ModelDialogProps): React.JSX.Element {
|
|||||||
</Box>
|
</Box>
|
||||||
<Box flexDirection="column">
|
<Box flexDirection="column">
|
||||||
<Text color={theme.text.secondary}>
|
<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>
|
</Text>
|
||||||
</Box>
|
</Box>
|
||||||
<Box marginTop={1} flexDirection="column">
|
<Box marginTop={1} flexDirection="column">
|
||||||
|
|||||||
Reference in New Issue
Block a user