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.
Enhanced Multi-PDF RAG Capabilities and Optimized Reranking
Overview
This pull request significantly improves our RAG (Retrieval-Augmented Generation) system by extending single-PDF capabilities to support multiple PDFs and implementing an optimized reranking algorithm.
Key Changes
1. Multi-PDF RAG Support
rag-utils.ts
to handle multiple PDF documents simultaneously2. Optimized Reranking Algorithm
Implemented a new
bm25Rerank
function with the following optimizations:3. Type Safety Improvements
ScoredDocument
interface extendingDocument
to include a score propertysimilaritySearch
function to use the newbm25Rerank
function, returningScoredDocument[]
4. Text Splitting Adjustment
RecursiveCharacterTextSplitter
to default values based on improved results from manual testingPerformance Impact
These changes are expected to significantly improve the accuracy of our RAG system, particularly for queries involving multiple PDFs or large document sets.
Next Steps
Please review these changes, paying particular attention to the reranking algorithm and multi-PDF handling logic.