fix: avoid duplicate skill loading cards

This commit is contained in:
Federico Jaramillo Martinez
2026-06-19 23:44:58 +02:00
parent 1e8cfe9073
commit 62c2234b85
5 changed files with 151 additions and 18 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ export type ChatPart =
| { type: "image"; mimeType: string; data: string }
| { type: "thinking"; text: string }
| { type: "skillInvocation"; name: string; location: string; content: string }
| { type: "skillRead"; name: string; path: string }
| { type: "skillRead"; name: string; path: string; toolCallId?: string }
| { type: "toolCall"; toolCallId?: string; toolName: string; summary: string; args?: unknown }
| ToolExecutionPart
| { type: "toolResult"; toolCallId?: string; toolName: string; text: string; isError: boolean; content?: unknown; details?: unknown }