From 29377a9fe3bf24a6b743534d8024b5f4e5153ca2 Mon Sep 17 00:00:00 2001 From: Alessandro Pignotti Date: Sun, 2 Mar 2025 13:45:31 +0100 Subject: [PATCH] Add visual feedback about typing commands --- src/lib/AnthropicTab.svelte | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/lib/AnthropicTab.svelte b/src/lib/AnthropicTab.svelte index 6666234..7b5d0ad 100644 --- a/src/lib/AnthropicTab.svelte +++ b/src/lib/AnthropicTab.svelte @@ -73,6 +73,12 @@ } else if (tool.action === "wait") { icon = "fa-hourglass-half"; messageContent = "Waiting"; + } else if (tool.action === "key") { + icon = "fa-keyboard"; + messageContent = `Key press: ${tool.text}`; + } else if (tool.action === "type") { + icon = "fa-keyboard"; + messageContent = "Type text"; } else { icon = "fa-screwdriver-wrench"; messageContent = "Use the system";