Event of calling a function.

interface ICall {
    arguments: object;
    id: string;
    operation: INestiaAgentOperation;
    type: "call";
}

Hierarchy

  • IBase<"call">
    • ICall

Properties

arguments: object

Arguments of the function calling.

If you modify this arguments property, it actually modifies the backend server's request. Therefore, be careful when you're trying to modify this property.

id: string

ID of the tool calling.

Target operation to call.

type: "call"

Discriminator type.