Type alias FunctionToolsExecutedEvent

FunctionToolsExecutedEvent: {
    createdAt: number;
    functionCallOutputs: FunctionCallOutput[];
    functionCalls: FunctionCall[];
    type: "function_tools_executed";
}

Type declaration

  • createdAt: number
  • functionCallOutputs: FunctionCallOutput[]
  • functionCalls: FunctionCall[]

    Function calls and outputs are parallel arrays: the output at a given index belongs to the call at the same index, and its callId matches the paired function call's callId.

  • type: "function_tools_executed"