rwitz commited on
Commit
fe675b2
·
1 Parent(s): 003ad51

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -79,7 +79,7 @@ def vote_down_model(state, chatbot):
79
  update_message = update_ratings(state, 1)
80
  chatbot.append(update_message)
81
  return chatbot
82
- def user_ask(state, chatbot1, chatbot2, textbox, upvote_btn_a, upvote_btn_b):
83
  user_input = textbox
84
  bot1_response, bot2_response = chat_with_bots(user_input, state)
85
 
 
79
  update_message = update_ratings(state, 1)
80
  chatbot.append(update_message)
81
  return chatbot
82
+ def user_ask(state, chatbot1, chatbot2, textbox):
83
  user_input = textbox
84
  bot1_response, bot2_response = chat_with_bots(user_input, state)
85