lilyhof commited on
Commit
e8743b7
·
1 Parent(s): b3d5681

Update app.py

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