Broadcast submitted user prompts

This commit is contained in:
Federico Jaramillo Martinez
2026-05-08 16:17:22 +02:00
parent 7847858143
commit a0338ab6a7
5 changed files with 8 additions and 2 deletions
+1
View File
@@ -141,6 +141,7 @@ export type CommandResult =
| { type: "unsupported"; message: string };
export type SessionUiEvent =
| { type: "message.append"; message: unknown }
| { type: "assistant.delta"; text: string }
| { type: "tool.start"; toolName: string; toolCallId: string; summary: string; args?: unknown }
| { type: "tool.end"; toolName: string; toolCallId: string; text: string; isError: boolean; content?: unknown }