Interface AgenticaCallEvent<Model>

Event of a function calling.

Samchon

interface AgenticaCallEvent<Model extends ILlmSchema.Model> {
    arguments: Record<string, any>;
    id: string;
    operation: AgenticaOperation<Model>;
    toJSON: () => ICall;
    type: "call";
}

Type Parameters

  • Model extends ILlmSchema.Model

Hierarchy

  • AgenticaEventBase<"call">
    • AgenticaCallEvent

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.

toJSON: () => ICall
type: "call"

Discriminator type.