Execute prompt.

Execution prompt about the LLM function calling.

interface IExecute {
    arguments: Record<string, any>;
    id: string;
    operation: IAgenticaOperationJson;
    type: "execute";
    value: any;
}

Hierarchy

  • IBase<"execute">
    • IExecute

Properties

arguments: Record<string, any>

Arguments of the LLM function calling.

id: string

ID of the LLM tool call result.

Target operation to call.

type: "execute"

Discriminator type.

value: any

Return value.