fix: score_threshold handling in vector search methods (#8356)
This commit is contained in:
@@ -230,7 +230,7 @@ class RelytVector(BaseVector):
|
||||
# Organize results.
|
||||
docs = []
|
||||
for document, score in results:
|
||||
score_threshold = kwargs.get("score_threshold", 0.0)
|
||||
score_threshold = float(kwargs.get("score_threshold") or 0.0)
|
||||
if 1 - score > score_threshold:
|
||||
docs.append(document)
|
||||
return docs
|
||||
|
||||
Reference in New Issue
Block a user