@squidcloud/client
    Preparing search index...

    Interface AiFunctionMetadata

    Metadata describing an AI function available in the application.

    interface AiFunctionMetadata {
        attributes?: AiFunctionAttributes;
        categories?: string[];
        description: string;
        internal?: boolean;
        params: AiFunctionParam[];
        serviceFunction: `${string}:${string}`;
    }
    Index

    Properties

    Additional attributes for the function.

    categories?: string[]

    Categories this function belongs to.

    description: string

    Description of what the function does.

    internal?: boolean

    Whether this function is internal and not meant for direct use.

    params: AiFunctionParam[]

    Parameters that the function accepts.

    serviceFunction: `${string}:${string}`

    The fully qualified name of the function (serviceName:functionName).