ContentBlockEvent
Defined in: src/hooks/events.ts:419
Event triggered when a content block completes during model inference.
Wraps completed content blocks (TextBlock, ToolUseBlock, ReasoningBlock) from model streaming.
This is intentionally separate from ModelStreamUpdateEvent. The model’s
streamAggregated() yields two kinds of output: ModelStreamEvent (transient
streaming deltas — partial data arriving while the model generates) and
ContentBlock (fully assembled results after all deltas accumulate).
These represent different granularities with different semantics, so they are
wrapped in distinct event classes rather than combined into a single event.
Extends
Section titled “Extends”Constructors
Section titled “Constructors”Constructor
Section titled “Constructor”new ContentBlockEvent(data): ContentBlockEvent;Defined in: src/hooks/events.ts:424
Parameters
Section titled “Parameters”| Parameter | Type |
|---|---|
data | { agent: LocalAgent; contentBlock: ContentBlock; } |
data.agent | LocalAgent |
data.contentBlock | ContentBlock |
Returns
Section titled “Returns”ContentBlockEvent
Overrides
Section titled “Overrides”Properties
Section titled “Properties”readonly type: "contentBlockEvent";Defined in: src/hooks/events.ts:420
readonly agent: LocalAgent;Defined in: src/hooks/events.ts:421
contentBlock
Section titled “contentBlock”readonly contentBlock: ContentBlock;Defined in: src/hooks/events.ts:422
Methods
Section titled “Methods”toJSON()
Section titled “toJSON()”toJSON(): Pick<ContentBlockEvent, "type" | "contentBlock">;Defined in: src/hooks/events.ts:434
Serializes for wire transport, excluding the agent reference. Called automatically by JSON.stringify().
Returns
Section titled “Returns”Pick<ContentBlockEvent, "type" | "contentBlock">