Interface for LibSQLVectorStore configuration options.

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

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".