Event of function calling execution.

interface IExecute {
    arguments: object;
    id: string;
    operation: INestiaAgentOperation;
    type: "execute";
    value: any;
}

Hierarchy

  • IBase<"execute">
    • IExecute

Properties

arguments: object

Arguments of the function calling.

id: string

ID of the tool calling.

Target operation had called.

type: "execute"

Discriminator type.

value: any

Return value.