slightly adjust model message formatting (#13043)

This commit is contained in:
Tommaso Sciortino
2025-11-13 21:13:39 -08:00
committed by GitHub
parent 3174573b64
commit 555e25e633

View File

@@ -13,9 +13,9 @@ interface ModelMessageProps {
}
export const ModelMessage: React.FC<ModelMessageProps> = ({ model }) => (
<Box marginLeft={3}>
<Box marginLeft={2}>
<Text color={theme.ui.comment} italic>
responding with {model}
Responding with {model}
</Text>
</Box>
);