langchain.js
    Preparing search index...

    Arguments for the ClickHouseStore class, which include the host, port, protocol, username, password, index type, index parameters, index query params, column map, database, table.

    interface ClickHouseLibArgs {
        columnMap?: ColumnMap;
        database?: string;
        host: string;
        indexParam?: string | Record<string, number>;
        indexQueryParams?: Record<string, string>;
        indexType?: string;
        password: string;
        port: string | number;
        protocol?: string;
        table?: string;
        username: string;
    }
    Index

    Properties

    columnMap?: ColumnMap
    database?: string
    host: string
    indexParam?: string | Record<string, number>
    indexQueryParams?: Record<string, string>
    indexType?: string
    password: string
    port: string | number
    protocol?: string
    table?: string
    username: string