Spaces:
Runtime error
Runtime error
Update chatbot/retrieval.py
Browse files- chatbot/retrieval.py +2 -1
chatbot/retrieval.py
CHANGED
|
@@ -43,7 +43,8 @@ def get_vector_db():
|
|
| 43 |
docs, embedding_model,
|
| 44 |
location=qdrant_url,
|
| 45 |
collection_name=collection_name,
|
| 46 |
-
api_key=api_key
|
|
|
|
| 47 |
)
|
| 48 |
return vector_db
|
| 49 |
|
|
|
|
| 43 |
docs, embedding_model,
|
| 44 |
location=qdrant_url,
|
| 45 |
collection_name=collection_name,
|
| 46 |
+
api_key=api_key,
|
| 47 |
+
timeout=None
|
| 48 |
)
|
| 49 |
return vector_db
|
| 50 |
|