Spaces:
Sleeping
Sleeping
Update cli_app.py
Browse files- cli_app.py +1 -1
cli_app.py
CHANGED
@@ -3,7 +3,7 @@ from query_data import get_chain
|
|
3 |
|
4 |
|
5 |
if __name__ == "__main__":
|
6 |
-
with open("
|
7 |
vectorstore = pickle.load(f)
|
8 |
qa_chain = get_chain(vectorstore)
|
9 |
chat_history = []
|
|
|
3 |
|
4 |
|
5 |
if __name__ == "__main__":
|
6 |
+
with open("medvectorstore.pkl", "rb") as f:
|
7 |
vectorstore = pickle.load(f)
|
8 |
qa_chain = get_chain(vectorstore)
|
9 |
chat_history = []
|