Skip to content

StreamEvent

reference
1 min readUpdated

Kind: Type

Source: atloria-monorepo/libs/agent-core/src/session/types.ts

Normalized streaming event from the SDK. Maps SDK's RunStreamEvent types to our domain events.

Definition

ts
| { type: 'item'; name: string; item: unknown }
  | { type: 'model_delta'; data: unknown }
  | { type: 'agent_updated'; agentName: string }

Was this page helpful?

Download as PDF