AskSQL API Reference (core v0.10.0)
    Preparing search index...

    Interface PromptSettings

    Host overrides for the generated prompts.

    interface PromptSettings {
        instructions?: string;
        system?: (ctx: { dialectLabel: string; maxRows: number }) => string;
    }
    Index
    instructions?: string

    Extra instructions appended to the default system prompt (common case).

    system?: (ctx: { dialectLabel: string; maxRows: number }) => string

    Replace the entire system prompt; receives the resolved dialect label and the row cap. You own correctness guidance if you override this (the AST guard still enforces read-only).