lilyhof commited on
Commit
bf58407
·
1 Parent(s): 5a578a3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -57,8 +57,8 @@ 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_input.onkeydown(
61
- fn = lambda event: handleKeyPress(event, add_user_message),
62
  inputs = [user_chat_input, study_tutor],
63
  outputs = [user_chat_input, chatbot, study_tutor],
64
  queue=False
 
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.click(
61
+ fn = add_user_message,
62
  inputs = [user_chat_input, study_tutor],
63
  outputs = [user_chat_input, chatbot, study_tutor],
64
  queue=False