langchain.js
    Preparing search index...
    interface SupabaseLibArgs {
        client: SupabaseClient;
        keywordK?: number;
        keywordQueryName?: string;
        similarityK?: number;
        similarityQueryName?: string;
        tableName?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    client: SupabaseClient
    keywordK?: number

    The number of documents to return from the keyword search. Defaults to 2.

    keywordQueryName?: string

    The name of the Keyword search function on Supabase. Defaults to "kw_match_documents".

    similarityK?: number

    The number of documents to return from the similarity search. Defaults to 2.

    similarityQueryName?: string

    The name of the Similarity search function on Supabase. Defaults to "match_documents".

    tableName?: string

    The table name on Supabase. Defaults to "documents".