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";