Interface FunctionCall

A predicted [FunctionCall] returned from the model that contains a string representing the [FunctionDeclaration.name] and a structured JSON object containing the parameters and their values.

interface FunctionCall {
    args: object;
    name: string;
}

Properties

Properties

args: object
name: string