Conversation
Contributor
Greptile SummaryThis PR consolidates reranking functionality from the standalone Major changes:
Critical issue found:
Cleanup needed:
Confidence Score: 1/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant Client
participant MemoryController
participant Embedder
participant VectorStore
participant RerankingModel
participant AIProvider
participant RerankAPI
Client->>MemoryController: search_with_context(query)
MemoryController->>Embedder: generate_embedding(query)
Embedder-->>MemoryController: vector
MemoryController->>VectorStore: search(vector_query, limit=20)
VectorStore-->>MemoryController: memories
MemoryController->>MemoryController: extract summaries from memories
MemoryController->>RerankingModel: get_model()
RerankingModel-->>MemoryController: Arc<RerankingModel>
MemoryController->>MemoryController: build RerankRequest
MemoryController->>AIProvider: do_reranking(request)
alt Cohere Provider
AIProvider->>RerankAPI: POST /rerank
RerankAPI-->>AIProvider: rankings with scores
else AmazonBedrock Provider
AIProvider->>RerankAPI: invoke rerank model
RerankAPI-->>AIProvider: rankings with scores
else OpenAI Provider (BUG)
AIProvider-->>AIProvider: panic! unimplemented!()
end
AIProvider-->>MemoryController: RerankResponse
MemoryController->>MemoryController: reorder memories by rankings
MemoryController-->>Client: top-k reranked memories
|
Contributor
There was a problem hiding this comment.
Additional Comments (1)
-
crates/umem_config/src/lib.rs, line 94-104 (link)style:
PineconeandCoherestructs are unused after removing theRerankerenum
16 files reviewed, 2 comments
vidurkhanal
approved these changes
Jan 21, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.