Interface AgenticaCancelHistory<Model>

interface AgenticaCancelHistory<Model extends ILlmSchema.Model> {
    created_at: string & Format<"date-time">;
    id: string;
    selection: AgenticaOperationSelection<Model>;
    toJSON: () => IAgenticaHistoryJson.ICancel;
    type: "cancel";
}

Type Parameters

  • Model extends ILlmSchema.Model

Hierarchy

Properties

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

Creation timestamp of the history.

id: string

Primary key of the history.

type: "cancel"

Discriminator type.