anhkhoiphan commited on
Commit
6d02f27
verified
1 Parent(s): 9f24a5a

Update chatbot/retrieval.py

Browse files
Files changed (1) hide show
  1. chatbot/retrieval.py +2 -2
chatbot/retrieval.py CHANGED
@@ -45,8 +45,8 @@ def get_vector_db():
45
  location=qdrant_url,
46
  collection_name=collection_name,
47
  api_key=api_key,
48
- port=None, # Avoid appending default port 6333
49
- timeout=20
50
  )
51
  return vector_db
52
 
 
45
  location=qdrant_url,
46
  collection_name=collection_name,
47
  api_key=api_key,
48
+ https=True, # Use HTTPS protocol
49
+ timeout=50
50
  )
51
  return vector_db
52