interface AgenticaAssistantMessageEvent {
    created_at: string & Format<"date-time">;
    id: string;
    join: () => Promise<string>;
    stream: AsyncGenerator<string, undefined, undefined>;
    toHistory: () => AgenticaAssistantMessageHistory;
    toJSON: () => IAgenticaEventJson.IAssistantMessage;
    type: "assistantMessage";
}

Hierarchy

  • AgenticaEventBase<"assistantMessage">
    • AgenticaAssistantMessageEvent

Properties

created_at: string & Format<"date-time">

Creation timestamp of the event.

id: string

Primary key of the event.

join: () => Promise<string>
stream: AsyncGenerator<string, undefined, undefined>
type: "assistantMessage"

Discriminator type.