summaryrefslogtreecommitdiff
path: root/packages/cli/src/ui/hooks/useGeminiStream.ts
diff options
context:
space:
mode:
authorTaylor Mullen <[email protected]>2025-04-22 07:48:12 -0400
committerN. Taylor Mullen <[email protected]>2025-04-22 08:05:30 -0400
commit80b04dc505bf1c784a54c5d80d971310b05144cc (patch)
treec2ec8e750f74f15318af2d489ced94b809c76496 /packages/cli/src/ui/hooks/useGeminiStream.ts
parent1ed9743ad4e2dfb0469a8fd79b71a52ec391d50e (diff)
Update UI of tool messages
- Bring tool messages in line with original envisioned UI of: https://screenshot.googleplex.com/9yZCX636LzpMrgc - In particular this represents more descriptive names. FWIW we already had this tech we just weren't passing around information correctly (`displayName` vs. `name`) - Add gray to our list of color pallete's and removed Background (unused) - Re-enabled representing canceled messages - Migrated back towards a cleaner tool message design of status symbols & border colors vs. overly verbose text. - Removed border from confirmation diffs. Fixes https://b.corp.google.com/issues/412598909
Diffstat (limited to 'packages/cli/src/ui/hooks/useGeminiStream.ts')
-rw-r--r--packages/cli/src/ui/hooks/useGeminiStream.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/cli/src/ui/hooks/useGeminiStream.ts b/packages/cli/src/ui/hooks/useGeminiStream.ts
index ffdd9967..5baebe09 100644
--- a/packages/cli/src/ui/hooks/useGeminiStream.ts
+++ b/packages/cli/src/ui/hooks/useGeminiStream.ts
@@ -269,7 +269,7 @@ export const useGeminiStream = (
// Create the UI display object matching IndividualToolCallDisplay
const toolCallDisplay: IndividualToolCallDisplay = {
callId,
- name,
+ name: cliTool.displayName,
description,
status: ToolCallStatus.Pending,
resultDisplay: undefined,