langchain.js
    Preparing search index...

    Defines the arguments for the LanceDB class constructor. It includes a table and an optional textKey.

    type LanceDBArgs = {
        mode?: "create" | "overwrite";
        table?: Table;
        tableName?: string;
        textKey?: string;
        uri?: string;
    }
    Index

    Properties

    mode?: "create" | "overwrite"
    table?: Table
    tableName?: string
    textKey?: string
    uri?: string