unified-llm-client
    Preparing search index...

    Interface KnowledgeStore

    interface KnowledgeStore {
        searchByEmbedding(
            options: DenseKnowledgeSearchOptions,
        ): Promise<RetrievalResult[]>;
        searchByText?(
            options: LexicalKnowledgeSearchOptions,
        ): Promise<RetrievalResult[]>;
    }

    Implemented by

    Index

    Methods