Type Alias AgentStreamEvent
AgentStreamEvent:
| { delta: string; type: "text" }
| { id: string; name: string; type: "tool_start" }
| { delta: string; id: string; type: "tool_args" }
| { id: string; type: "tool_end" }
| { content: string; id: string; type: "tool_result" }