interface AgenticaRequestEvent {
    body: ChatCompletionCreateParamsStreaming;
    created_at: string & Format<"date-time">;
    id: string;
    options?: RequestOptions;
    source: AgenticaEventSource;
    type: "request";
}

Hierarchy

  • AgenticaEventBase<"request">
    • AgenticaRequestEvent

Properties

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

Creation timestamp of the event.

id: string

Primary key of the event.

options?: RequestOptions
type: "request"

Discriminator type.