Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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 |
|