FunctionCallStep: {
    arguments: { [k: string]: any };
    id: string;
    name: string;
    type: "function_call";
}

A function tool call step.

Type declaration

  • arguments: { [k: string]: any }

    Required. The arguments to pass to the function.

  • id: string

    Required. A unique ID for this specific tool call.

  • name: string

    Required. The name of the tool to call.

  • type: "function_call"