Execute prompt.

Execution prompt about the LLM function calling.

interface IExecute {
    arguments: Record<string, any>;
    created_at: string & Format<"date-time">;
    id: string;
    operation: IAgenticaOperationJson;
    type: "execute";
    value: unknown;
}

Hierarchy

  • IBase<"execute">
    • IExecute

Properties

arguments: Record<string, any>

Arguments of the LLM function calling.

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

Creation timestamp of the history.

id: string

Primary key of the history.

Target operation to call.

type: "execute"

Discriminator type.

value: unknown

Return value.