Interface AgenticaJsonParseErrorEvent<Model>

interface AgenticaJsonParseErrorEvent<Model extends ILlmSchema.Model> {
    arguments: string;
    created_at: string & Format<"date-time">;
    errorMessage: string;
    id: string;
    operation: AgenticaOperation<Model>;
    type: "jsonParseError";
}

Type Parameters

  • Model extends ILlmSchema.Model

Hierarchy

  • AgenticaEventBase<"jsonParseError">
    • AgenticaJsonParseErrorEvent

Properties

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

Creation timestamp of the event.

errorMessage: string
id: string

Primary key of the event.

type: "jsonParseError"

Discriminator type.