Heroku LangChain - v0.2.1
    Preparing search index...

    Interface HerokuFunctionToolParameters

    JSON schema for the parameters of a function tool, as per Heroku API. Source: SPECS.md 2.5.1 & Heroku /v1/chat/completions doc (tools array, function type)

    interface HerokuFunctionToolParameters {
        type: "object";
        properties: Record<string, any>;
        required?: string[];
    }
    Index

    Properties

    type: "object"
    properties: Record<string, any>
    required?: string[]