milwright commited on
Commit
7d02e2a
·
1 Parent(s): 7f85357

Fix PyMuPDF dependency conflict and verify RAG functionality

Browse files

- Remove conflicting frontend package
- Install PyMuPDF, faiss-cpu, python-docx successfully
- Verify document processing and vector store functionality
- Add test sample file and confirm end-to-end RAG workflow

Files changed (1) hide show
  1. test_sample.txt +8 -0
test_sample.txt ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ This is a sample document for testing the RAG functionality.
2
+ It contains multiple paragraphs of text that will be processed and chunked.
3
+
4
+ The vector store will create embeddings for these chunks and allow semantic search.
5
+ This enables context-aware responses based on uploaded documents.
6
+
7
+ The system supports PDF, DOCX, TXT, and Markdown files.
8
+ It uses FAISS for efficient similarity search and sentence transformers for embeddings.