@squidcloud/client
    Preparing search index...

    Interface GenerateAiDescriptionsForStoredProceduresRequest<SchemaType>

    Request for generating AI descriptions for stored procedures in a data schema.

    interface GenerateAiDescriptionsForStoredProceduresRequest<
        SchemaType = Record<string, any>,
    > {
        instructions?: string;
        schema: SchemaType;
        storedProcedures?: string[];
    }

    Type Parameters

    • SchemaType = Record<string, any>
    Index

    Properties

    instructions?: string

    Optional instructions to guide the AI in generating descriptions.

    schema: SchemaType

    The current schema of the integration containing stored procedures.

    storedProcedures?: string[]

    List of stored procedure names to generate descriptions for. If not provided or empty, descriptions will be generated for all stored procedures.