Description prompt.

Description prompt about the return value of the LLM function calling.

interface IDescribe {
    created_at: string & Format<"date-time">;
    executes: IAgenticaHistoryJson.IExecute[];
    id: string;
    text: string;
    type: "describe";
}

Hierarchy

  • IBase<"describe">
    • IDescribe

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.