Update app.py
Browse files
app.py
CHANGED
@@ -60,7 +60,7 @@ import gradio as gr
|
|
60 |
def chat_with_ai(user_input, chat_history):
|
61 |
response = chat_engine.chat(user_input)
|
62 |
|
63 |
-
chat_history
|
64 |
|
65 |
return chat_history, ""
|
66 |
|
|
|
60 |
def chat_with_ai(user_input, chat_history):
|
61 |
response = chat_engine.chat(user_input)
|
62 |
|
63 |
+
chat_history.append((user_input, str(response)))
|
64 |
|
65 |
return chat_history, ""
|
66 |
|