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

    Interface DuckDbConnectorConfig

    interface DuckDbConnectorConfig {
        files?: readonly FileSource[];
        id: string;
        name: string;
        path?: string;
        sampleColumnValues?: boolean;
    }
    Index
    files?: readonly FileSource[]

    Files to register as views on connect.

    id: string
    name: string
    path?: string

    ':memory:' (default) or a database file path.

    sampleColumnValues?: boolean

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