Skip to content

Commit

Permalink
Refactor text processing in BestRAG and update version to 0.3.0
Browse files Browse the repository at this point in the history
Signed-off-by: samadpls <[email protected]>
  • Loading branch information
samadpls committed Nov 30, 2024
1 parent 58cd88b commit 084db22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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

Expand Down

0 comments on commit 084db22

Please sign in to comment.