Type alias FunctionToolsExecutedEvent
FunctionToolsExecutedEvent: { createdAt: number; functionCallOutputs: FunctionCallOutput[]; functionCalls: FunctionCall[]; type: "function_tools_executed"; } Type declaration
createdAt: number
type: "function_tools_executed"
Function calls and outputs are parallel arrays: the output at a given index belongs to the call at the same index, and its
callIdmatches the paired function call'scallId.