Skip to content

Commit

Permalink
fix: fix default bm models list value
Browse files Browse the repository at this point in the history
  • Loading branch information
joein committed Jul 17, 2024
1 parent 58f98ff commit 0cc9ec9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion qdrant_client/async_qdrant_fastembed.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
if model_config.get("requires_idf", None)
}
if SparseTextEmbedding
else {}
else set()
)


Expand Down
2 changes: 1 addition & 1 deletion qdrant_client/qdrant_fastembed.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
if model_config.get("requires_idf", None)
}
if SparseTextEmbedding
else {}
else set()
)


Expand Down

0 comments on commit 0cc9ec9

Please sign in to comment.