langchain.js
    Preparing search index...

    Interface for LibSQLVectorStore configuration options.

    interface LibSQLVectorStoreArgs {
        column?: string;
        db: Client;
        table?: string;
    }
    Index

    Properties

    Properties

    column?: string

    Name of the column to store embeddings. Defaults to "embedding".

    db: Client
    table?: string

    Name of the table to store vectors. Defaults to "vectors".