Skip to content

StreamEvent

StreamEvent = { content: string; type: "text"; } | { call: ParsedGadgetCall; type: "gadget_call"; } | { result: GadgetExecutionResult; type: "gadget_result"; } | GadgetSkippedEvent | { gadgetName: string; invocationId: string; question: string; type: "human_input_required"; } | { event: CompactionEvent; type: "compaction"; } | SubagentStreamEvent | StreamCompletionEvent

Defined in: gadgets/types.ts:237