Skip to content

Commit

Permalink
fix weaviate client bug
Browse files Browse the repository at this point in the history
Signed-off-by: min.tian <[email protected]>
  • Loading branch information
alwayslove2013 committed Oct 30, 2024
1 parent d11330d commit 5fc72f4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def __init__(
**kwargs,
):
"""Initialize wrapper around the weaviate vector database."""
db_config.update("auth_client_secret", weaviate.AuthApiKey(api_key=db_config.get("auth_client_secret")))
db_config.update({"auth_client_secret": weaviate.AuthApiKey(api_key=db_config.get("auth_client_secret"))})
self.db_config = db_config
self.case_config = db_case_config
self.collection_name = collection_name
Expand Down

0 comments on commit 5fc72f4

Please sign in to comment.