rwitz commited on
Commit
1910b22
·
1 Parent(s): cae39d8

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
  chatbot.append(update_message)
80
  return chatbot
81
  def user_ask(state, chatbot1, chatbot2, textbox):
82
- state.update({"elo_ratings":read_elo_ratings})
83
  user_input = textbox
84
  bot1_response, bot2_response = chat_with_bots(user_input, state)
85
 
 
79
  chatbot.append(update_message)
80
  return chatbot
81
  def user_ask(state, chatbot1, chatbot2, textbox):
82
+ state.update({"elo_ratings":read_elo_ratings()})
83
  user_input = textbox
84
  bot1_response, bot2_response = chat_with_bots(user_input, state)
85