Kaynağa Gözat

update bm25 search properties (#1758)

Co-authored-by: Blade <zhangxiaobin@unixyz.cn>
tags/0.3.34
Qiwen Tong 1 yıl önce
ebeveyn
işleme
c09184fd94
No account linked to committer's email address
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. 1
    1
      api/core/vector_store/vector/weaviate.py

+ 1
- 1
api/core/vector_store/vector/weaviate.py Dosyayı Görüntüle

@@ -243,7 +243,7 @@ class Weaviate(VectorStore):
query_obj = query_obj.with_where(kwargs.get("where_filter"))
if kwargs.get("additional"):
query_obj = query_obj.with_additional(kwargs.get("additional"))
properties = ['text', 'dataset_id', 'doc_hash', 'doc_id', 'document_id']
properties = ['text']
result = query_obj.with_bm25(query=query, properties=properties).with_limit(k).do()
if "errors" in result:
raise ValueError(f"Error during query: {result['errors']}")

Loading…
İptal
Kaydet