interface SupabaseLibArgs {
    client: default<any, "public", any>;
    keywordK?: number;
    keywordQueryName?: string;
    similarityK?: number;
    similarityQueryName?: string;
    tableName?: string;
}

Hierarchy (view full)

Properties

client: default<any, "public", any>
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".

Generated using TypeDoc