Interface CallableFunctionResult

The result of a ran FunctionCallInfo.

interface CallableFunctionResult {
    error?: any;
    name: string;
    result?: any;
    toolCallId: string;
}

Properties

error?: any
name: string
result?: any
toolCallId: string