interface AgentResponseChunk {
    conversationId: string;
    delta: AgentResponseChunkDelta<Record<string, any>>;
    requestId: string;
}

Properties

conversationId: string

ID of the conversation associated with the response.

delta: AgentResponseChunkDelta<Record<string, any>>

New chunk of data being sent from stream

requestId: string

Unique ID associated with the request.