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

    Interface SqliteConnectorConfig

    interface SqliteConnectorConfig {
        database?: SqliteDriver;
        file?: string;
        id: string;
        name: string;
        sampleColumnValues?: boolean;
    }
    Index
    database?: SqliteDriver

    Provide an existing driver instance...

    file?: string

    ...or a file path (lazy-loads better-sqlite3, opened read-only).

    id: string
    name: string
    sampleColumnValues?: boolean

    Opt-in: sample distinct values from short text columns, so the model sees the real codes a status TEXT holds.