mirror of
https://github.com/open-webui/open-webui
synced 2025-04-06 13:45:41 +00:00
Add documentation on chroma special case
This commit is contained in:
parent
ba676b7ed6
commit
5ab789e83e
@ -147,6 +147,8 @@ def query_doc_with_hybrid_search(
|
||||
# retrieve only min(k, k_reranker) items, sort and cut by distance if k < k_reranker
|
||||
if k < k_reranker:
|
||||
if VECTOR_DB == "chroma":
|
||||
# Chroma uses unconventional cosine similarity, so we don't need to reverse the results
|
||||
# https://docs.trychroma.com/docs/collections/configure#configuring-chroma-collections
|
||||
sorted_items = sorted(zip(distances, metadatas, documents), key=lambda x: x[0], reverse=False)
|
||||
else:
|
||||
sorted_items = sorted(zip(distances, metadatas, documents), key=lambda x: x[0], reverse=True)
|
||||
|
Loading…
Reference in New Issue
Block a user