We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1198fda commit b41145aCopy full SHA for b41145a
business_objects/embedding.py
@@ -459,7 +459,7 @@ def get_match_record_ids_to_qdrant_ids_with_max_score(
459
query = f"""
460
{__generate_with_table_union_query(qdrant_results)}
461
462
- SELECT et.record_id::TEXT id, MAX(s.score) score
+ SELECT et.record_id::TEXT id, MIN(s.score) score
463
FROM embedding_tensor et
464
INNER JOIN scores s
465
ON et.id = s.id
enums.py
@@ -522,9 +522,7 @@ class AgreementType(Enum):
522
523
524
class EmbeddingPlatform(Enum):
525
- PYTHON = "python"
526
HUGGINGFACE = "huggingface"
527
- COHERE = "cohere"
528
OPENAI = "openai"
529
AZURE = "azure"
530
0 commit comments