top | item 46630166

(no title)

bzGoRust | 1 month ago

In my company, we build the internal chatbot based on RAG through LangChain + Milvus + LLM. Since the documents are well formatted, it is easy to do the overlapping chunking, then all those chunking data are inserted into vector db Milvus. The hybrid search (combine dense search and sparse search) is native supported in the Milvus could help us to do better retrieve. Thus the better quality answers are there.

discuss

order

cluckindan|1 month ago

Hybrid search usually refers to traditional keyword search (BM25, TF-IDF) combined with a vector similarity search.