fix: score_threshold handling in vector search methods (#8356)

This commit is contained in:
-LAN-
2024-09-13 14:24:35 +08:00
committed by GitHub
parent a45ac6ab98
commit 08c486452f
14 changed files with 17 additions and 17 deletions

View File

@@ -153,7 +153,7 @@ class TencentVector(BaseVector):
limit=kwargs.get("top_k", 4),
timeout=self._client_config.timeout,
)
score_threshold = kwargs.get("score_threshold", 0.0)
score_threshold = float(kwargs.get("score_threshold") or 0.0)
return self._get_search_res(res, score_threshold)
def search_by_full_text(self, query: str, **kwargs: Any) -> list[Document]: