Interface AgenticaDescribeHistory<Model>

interface AgenticaDescribeHistory<Model extends ILlmSchema.Model> {
    created_at: string & Format<"date-time">;
    executes: AgenticaExecuteHistory<Model>[];
    id: string;
    text: string;
    toJSON: () => IAgenticaHistoryJson.IDescribe;
    type: "describe";
}

Type Parameters

  • Model extends ILlmSchema.Model

Hierarchy

Properties

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

Creation timestamp of the history.

Executions of the LLM function calling.

This prompt describes the return value of them.

id: string

Primary key of the history.

text: string

Description text.

type: "describe"

Discriminator type.