unified-llm-client
    Preparing search index...

    Interface PostgresKnowledgeStorePool

    interface PostgresKnowledgeStorePool {
        end?: () => Promise<void>;
        query: <TRow = Record<string, unknown>>(
            text: string,
            values?: unknown[],
        ) => Promise<PostgresKnowledgeStoreQueryResult<TRow>>;
    }
    Index

    Properties

    Properties

    end?: () => Promise<void>
    query: <TRow = Record<string, unknown>>(
        text: string,
        values?: unknown[],
    ) => Promise<PostgresKnowledgeStoreQueryResult<TRow>>