From 084db22c35fa30378e44d4a283f10e2e0bbaa364 Mon Sep 17 00:00:00 2001 From: samadpls Date: Sun, 1 Dec 2024 00:18:32 +0500 Subject: [PATCH] Refactor text processing in BestRAG and update version to 0.3.0 Signed-off-by: samadpls --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a0de349..dd84791 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ rag = BestRAG( ) # Store embeddings from a PDF -rag.store_pdf_embeddings("your_pdf_file.pdf") +rag.store_pdf_embeddings("your_pdf_file.pdf", "pdf_name") # Search using a query results = rag.search(query="your search query", limit=10) @@ -51,7 +51,7 @@ print(results) rag.delete_pdf_embeddings("home/notes.pdf") ``` -> **Note**: Qdrant offers a free tier with 1GB of storage. To generate your API key and endpoint, visit [Qdrant](https://qdrant.tech/). +> **Note**: Qdrant offers a free tier with 4GB of storage. To generate your API key and endpoint, visit [Qdrant](https://qdrant.tech/). ## 🤝 Contributing