interface Class<Model extends ILlmSchema.Model> {
    arguments: Record<string, unknown>;
    created_at: string & Format<"date-time">;
    id: string;
    operation: AgenticaOperation.Class;
    protocol: "class";
    toHistory: () => AgenticaExecuteHistory.Class;
    toJSON: () => IAgenticaEventJson.IExecute;
    type: "execute";
    value: unknown;
}

Type Parameters

  • Model extends ILlmSchema.Model

Hierarchy

Properties

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

Creation timestamp of the event.

id: string

Primary key of the event.

protocol: "class"
toHistory: () => AgenticaExecuteHistory.Class
type: "execute"

Discriminator type.

value: unknown