Spaces:
Configuration error
Configuration error
Update app.py
Browse files
app.py
CHANGED
@@ -120,7 +120,7 @@ Here is the story:
|
|
120 |
question_prompt = "Please ask a simple question about the story to encourage interaction."
|
121 |
_, formatted_history, chat_history = interact(question_prompt, chat_history)
|
122 |
|
123 |
-
return formatted_history, chat_history, gr.update(value=[]) # Reset the data table
|
124 |
else:
|
125 |
print("Combined message is empty.")
|
126 |
else:
|
@@ -182,6 +182,8 @@ with gr.Blocks() as demo:
|
|
182 |
|
183 |
send_story_button = gr.Button("Send Story")
|
184 |
|
|
|
|
|
185 |
with gr.Row():
|
186 |
with gr.Column(scale=1):
|
187 |
chatbot_input = gr.Textbox(placeholder="Type your message here...", label="User Input")
|
@@ -190,8 +192,6 @@ with gr.Blocks() as demo:
|
|
190 |
with gr.Column(scale=2):
|
191 |
chatbot_output = gr.Chatbot(label="Chat History")
|
192 |
|
193 |
-
selected_story_output = gr.Textbox(label="Selected Story", interactive=False)
|
194 |
-
|
195 |
with gr.Row():
|
196 |
with gr.Column(scale=1):
|
197 |
score_input = gr.Slider(minimum=0, maximum=5, step=1, label="Score")
|
@@ -202,7 +202,7 @@ with gr.Blocks() as demo:
|
|
202 |
|
203 |
chat_history_json = gr.JSON(value=[], visible=False)
|
204 |
|
205 |
-
send_story_button.click(fn=send_selected_story, inputs=[story_dropdown, model_dropdown, system_prompt_input], outputs=[chatbot_output, chat_history_json,
|
206 |
send_message_button.click(fn=interact, inputs=[chatbot_input, chat_history_json], outputs=[chatbot_input, chatbot_output, chat_history_json])
|
207 |
save_button.click(fn=save_comment_score, inputs=[chatbot_output, score_input, comment_input, story_dropdown, user_dropdown], outputs=[data_table, comment_input])
|
208 |
|
|
|
120 |
question_prompt = "Please ask a simple question about the story to encourage interaction."
|
121 |
_, formatted_history, chat_history = interact(question_prompt, chat_history)
|
122 |
|
123 |
+
return formatted_history, chat_history, gr.update(value=selected_story), gr.update(value=[]) # Reset the data table
|
124 |
else:
|
125 |
print("Combined message is empty.")
|
126 |
else:
|
|
|
182 |
|
183 |
send_story_button = gr.Button("Send Story")
|
184 |
|
185 |
+
selected_story_output = gr.Textbox(label="Selected Story", interactive=False)
|
186 |
+
|
187 |
with gr.Row():
|
188 |
with gr.Column(scale=1):
|
189 |
chatbot_input = gr.Textbox(placeholder="Type your message here...", label="User Input")
|
|
|
192 |
with gr.Column(scale=2):
|
193 |
chatbot_output = gr.Chatbot(label="Chat History")
|
194 |
|
|
|
|
|
195 |
with gr.Row():
|
196 |
with gr.Column(scale=1):
|
197 |
score_input = gr.Slider(minimum=0, maximum=5, step=1, label="Score")
|
|
|
202 |
|
203 |
chat_history_json = gr.JSON(value=[], visible=False)
|
204 |
|
205 |
+
send_story_button.click(fn=send_selected_story, inputs=[story_dropdown, model_dropdown, system_prompt_input], outputs=[chatbot_output, chat_history_json, selected_story_output, data_table])
|
206 |
send_message_button.click(fn=interact, inputs=[chatbot_input, chat_history_json], outputs=[chatbot_input, chatbot_output, chat_history_json])
|
207 |
save_button.click(fn=save_comment_score, inputs=[chatbot_output, score_input, comment_input, story_dropdown, user_dropdown], outputs=[data_table, comment_input])
|
208 |
|