Update app.py
Browse files
app.py
CHANGED
@@ -65,7 +65,7 @@ def is_greeting(user_input):
|
|
65 |
import gradio as gr
|
66 |
def chat_with_ai(user_input, chat_history):
|
67 |
if is_greeting(user_input):
|
68 |
-
response =
|
69 |
chat_history.append((user_input, response))
|
70 |
return chat_history, ""
|
71 |
response = chat_engine.chat(user_input)
|
|
|
65 |
import gradio as gr
|
66 |
def chat_with_ai(user_input, chat_history):
|
67 |
if is_greeting(user_input):
|
68 |
+
response = 'hi, how can i help you?'
|
69 |
chat_history.append((user_input, response))
|
70 |
return chat_history, ""
|
71 |
response = chat_engine.chat(user_input)
|