Event representing a function/tool call initiated by the LLM.

interface FunctionCallEvent {
    item: FunctionCall;
    type: "function_call";
}

Properties

Properties

type: "function_call"