mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-21 18:44:30 -07:00
Show model in history (#13034)
This commit is contained in:
committed by
GitHub
parent
0fcbff506e
commit
ab11b2c27f
@@ -0,0 +1,21 @@
|
||||
/**
|
||||
* @license
|
||||
* Copyright 2025 Google LLC
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
import type React from 'react';
|
||||
import { Text, Box } from 'ink';
|
||||
import { theme } from '../../semantic-colors.js';
|
||||
|
||||
interface ModelMessageProps {
|
||||
model: string;
|
||||
}
|
||||
|
||||
export const ModelMessage: React.FC<ModelMessageProps> = ({ model }) => (
|
||||
<Box marginLeft={3}>
|
||||
<Text color={theme.ui.comment} italic>
|
||||
responding with {model}
|
||||
</Text>
|
||||
</Box>
|
||||
);
|
||||
Reference in New Issue
Block a user