Interface AgenticaDescribeHistory<Model>

interface AgenticaDescribeHistory<Model extends ILlmSchema.Model> {
    executes: AgenticaExecuteHistory<Model>[];
    text: string;
    toJSON: () => IAgenticaHistoryJson.IDescribe;
    type: "describe";
}

Type Parameters

  • Model extends ILlmSchema.Model

Hierarchy

Properties

Executions of the LLM function calling.

This prompt describes the return value of them.

text: string

Description text.

type: "describe"

Discriminator type.