We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81787ab commit 02b112eCopy full SHA for 02b112e
1 file changed
ui/desktop/src/components/ToolCallWithResponse.tsx
@@ -39,7 +39,7 @@ export default function ToolCallWithResponse({
39
<>
40
<div
41
className={cn(
42
- 'w-full text-sm font-sans rounded-lg overflow-hidden border-borderSubtle border bg-background-muted'
+ 'w-full text-sm font-sans rounded-lg overflow-hidden border-borderSubtle border'
43
)}
44
>
45
<ToolCallView
@@ -400,6 +400,12 @@ function ToolCallView({
400
case 'computer_control':
401
return `poking around...`;
402
403
+ case 'create_task':
404
+ return `create task`;
405
+
406
+ case 'execute_task':
407
+ return `execute task`;
408
409
default: {
410
// Generic fallback for unknown tools: ToolName + CompactArguments
411
// This ensures any MCP tool works without explicit handling
0 commit comments