Merge pull request #1905 from 7a6ac0/r_score_type

fix: change r_score type to float
This commit is contained in:
Timothy Jaeryang Baek 2024-05-02 02:22:59 -07:00 committed by GitHub
commit e700552f93
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ def query_doc_with_hybrid_search(
embedding_function,
k: int,
reranking_function,
r: int,
r: float,
):
try:
collection = CHROMA_CLIENT.get_collection(name=collection_name)