Skip to content

Commit 02b112e

Browse files
committed
Remove background from tool call containers and add clean labels for create_task/execute_task
1 parent 81787ab commit 02b112e

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

ui/desktop/src/components/ToolCallWithResponse.tsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export default function ToolCallWithResponse({
3939
<>
4040
<div
4141
className={cn(
42-
'w-full text-sm font-sans rounded-lg overflow-hidden border-borderSubtle border bg-background-muted'
42+
'w-full text-sm font-sans rounded-lg overflow-hidden border-borderSubtle border'
4343
)}
4444
>
4545
<ToolCallView
@@ -400,6 +400,12 @@ function ToolCallView({
400400
case 'computer_control':
401401
return `poking around...`;
402402

403+
case 'create_task':
404+
return `create task`;
405+
406+
case 'execute_task':
407+
return `execute task`;
408+
403409
default: {
404410
// Generic fallback for unknown tools: ToolName + CompactArguments
405411
// This ensures any MCP tool works without explicit handling

0 commit comments

Comments
 (0)