Update app.py
Browse files
app.py
CHANGED
@@ -57,7 +57,7 @@ with gr.Blocks() as demo:
|
|
57 |
|
58 |
# First add user's message to the conversation history
|
59 |
# Then get reply from the tutor and add that to the conversation history
|
60 |
-
|
61 |
fn = add_user_message,
|
62 |
inputs = [user_chat_input, study_tutor],
|
63 |
outputs = [user_chat_input, chatbot, study_tutor],
|
|
|
57 |
|
58 |
# First add user's message to the conversation history
|
59 |
# Then get reply from the tutor and add that to the conversation history
|
60 |
+
user_chat_input.submit(
|
61 |
fn = add_user_message,
|
62 |
inputs = [user_chat_input, study_tutor],
|
63 |
outputs = [user_chat_input, chatbot, study_tutor],
|