Interface OpenAIFunctionToolSchema

interface OpenAIFunctionToolSchema {
    type: "function";
    function: {
        name: string;
        description: string;
        parameters: JSONSchemaObject;
    };
}

Properties

Properties

type: "function"
function: {
    name: string;
    description: string;
    parameters: JSONSchemaObject;
}

Type declaration