@squidcloud/backend
    Preparing search index...

    Interface AiFunctionParam

    Defines the structure of a parameter for an AI function.

    interface AiFunctionParam {
        description: string;
        enum?: Omit<AiFunctionParamType, "date">[];
        name: string;
        required: boolean;
        type: AiFunctionParamType;
    }
    Index

    Properties

    description: string

    Description of the parameter's purpose.

    enum?: Omit<AiFunctionParamType, "date">[]

    List of possible values for the parameter, if applicable.

    name: string

    Name of the parameter.

    required: boolean

    Indicates if the parameter is mandatory.

    Data type of the parameter.