Spaces:
Configuration error
Configuration error
Update app.py
Browse files
app.py
CHANGED
@@ -128,7 +128,7 @@ Here is the story:
|
|
128 |
question_prompt = "Please ask a simple question about the story to encourage interaction."
|
129 |
_, formatted_history, chat_history = interact(question_prompt, chat_history)
|
130 |
|
131 |
-
return formatted_history, chat_history, gr.update(value=
|
132 |
else:
|
133 |
print("Combined message is empty.")
|
134 |
else:
|
@@ -200,12 +200,9 @@ with gr.Blocks() as demo:
|
|
200 |
comment_input = gr.Textbox(placeholder="Add a comment...", label="Comment")
|
201 |
save_button = gr.Button("Save Score and Comment")
|
202 |
|
203 |
-
data_table = gr.DataFrame(headers=["Timestamp", "User Name", "Model Name", "Story Name", "User Input", "Chat Response", "Score", "Comment"])
|
204 |
|
205 |
chat_history_json = gr.JSON(value=[], visible=False)
|
206 |
|
207 |
send_story_button.click(fn=send_selected_story, inputs=[story_dropdown, model_dropdown, system_prompt_dropdown], outputs=[chatbot_output, chat_history_json, data_table, selected_story_textbox])
|
208 |
-
send_message_button.click(fn=interact, inputs=[chatbot_input,
|
209 |
-
save_button.click(fn=save_comment_score, inputs=[chatbot_output, score_input, comment_input, story_dropdown, user_dropdown], outputs=[data_table, comment_input])
|
210 |
-
|
211 |
-
demo.launch()
|
|
|
128 |
question_prompt = "Please ask a simple question about the story to encourage interaction."
|
129 |
_, formatted_history, chat_history = interact(question_prompt, chat_history)
|
130 |
|
131 |
+
return formatted_history, chat_history, gr.update(value=[], visible=True), gr.update(value=story['story']) # Reset the data table and show selected story
|
132 |
else:
|
133 |
print("Combined message is empty.")
|
134 |
else:
|
|
|
200 |
comment_input = gr.Textbox(placeholder="Add a comment...", label="Comment")
|
201 |
save_button = gr.Button("Save Score and Comment")
|
202 |
|
203 |
+
data_table = gr.DataFrame(headers=["Timestamp", "User Name", "Model Name", "Story Name", "User Input", "Chat Response", "Score", "Comment"], visible=True)
|
204 |
|
205 |
chat_history_json = gr.JSON(value=[], visible=False)
|
206 |
|
207 |
send_story_button.click(fn=send_selected_story, inputs=[story_dropdown, model_dropdown, system_prompt_dropdown], outputs=[chatbot_output, chat_history_json, data_table, selected_story_textbox])
|
208 |
+
send_message_button.click(fn=interact, inputs=[chatbot_input, chat_hist
|
|
|
|
|
|