Update app.py
Browse files
app.py
CHANGED
@@ -19,7 +19,7 @@ def load_data():
|
|
19 |
|
20 |
query_engine = load_data() # Call load_data() to create the query engine
|
21 |
|
22 |
-
def chat(message):
|
23 |
if query_engine is None:
|
24 |
return "An error occurred while loading data. Please try again later."
|
25 |
|
|
|
19 |
|
20 |
query_engine = load_data() # Call load_data() to create the query engine
|
21 |
|
22 |
+
def chat(message, history):
|
23 |
if query_engine is None:
|
24 |
return "An error occurred while loading data. Please try again later."
|
25 |
|