All Questions
3 questions
0
votes
0
answers
415
views
BM25Retriever + ChromaDB Hybrid Search Optimization using LangChain
For those who have integrated the ChromaDB client with the Langchain framework, I am proposing the following approach to implement the Hybrid search (Vector Search + BM25Retriever):
from ...
0
votes
1
answer
591
views
Connect Chainlit to existing ChromaDb
I am trying to create a RAG application using chainlit.
This is the code, I got from an existing tutorial, which is working fine. Only problem that the user has to choose a pdf file every time. I want ...
0
votes
0
answers
114
views
ChromaDB error when deployed in an OpenShift Container
I have deployed **chromadb **in a openshift container. It was showing error with sqlite3. So I resolved it by Changing the __init__.py file. I added these lines
__import__('pysqlite3')
import ...