Zulelee commited on
Commit
0d399f3
·
verified ·
1 Parent(s): bfcfd60

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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