Event of calling a function.

interface ICall {
    arguments: Record<string, any>;
    id: string;
    operation: IAgenticaOperationJson;
    type: "call";
}

Hierarchy

  • IBase<"call">
    • ICall

Properties

arguments: Record<string, any>

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.