Multi-pdf Capabilities#13
Merged
Merged
Conversation
Owner
|
Thank you so much! |
Contributor
Author
|
God bless
…On Sat, 23 Nov 2024 at 3:38 AM, Kartikeya Mishra ***@***.***> wrote:
Thank you so much!
—
Reply to this email directly, view it on GitHub
<#13 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AU32KXHVZ6B6KMKPSAKAN732B6TNLAVCNFSM6AAAAABPCXOACKVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDIOJUHE2DOOBVGQ>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
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.
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.tsto handle multiple PDF documents simultaneously2. Optimized Reranking Algorithm
Implemented a new
bm25Rerankfunction with the following optimizations:3. Type Safety Improvements
ScoredDocumentinterface extendingDocumentto include a score propertysimilaritySearchfunction to use the newbm25Rerankfunction, returningScoredDocument[]4. Text Splitting Adjustment
RecursiveCharacterTextSplitterto 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.