Spaces:
Configuration error
Configuration error
Update app.py
Browse files
app.py
CHANGED
@@ -192,7 +192,8 @@ with gr.Blocks() as demo:
|
|
192 |
with gr.TabItem("Chat"):
|
193 |
gr.Markdown("# Chat with Model")
|
194 |
|
195 |
-
|
|
|
196 |
model_dropdown = gr.Dropdown(choices=list(models.keys()), label="Select Model", value=selected_model)
|
197 |
user_dropdown = gr.Dropdown(choices=user_names, label="Select User Name")
|
198 |
initial_story = stories[0]["title"] if stories else None
|
@@ -200,13 +201,15 @@ with gr.Blocks() as demo:
|
|
200 |
system_prompt_dropdown = gr.Dropdown(choices=system_prompts, label="Select System Prompt", value=system_prompts[0])
|
201 |
send_story_button = gr.Button("Send Story")
|
202 |
|
203 |
-
|
|
|
204 |
selected_story_textbox = gr.Textbox(label="Selected Story", lines=10, interactive=False)
|
205 |
chatbot_input = gr.Textbox(placeholder="Type your message here...", label="User Input")
|
206 |
send_message_button = gr.Button("Send")
|
207 |
chatbot_output = gr.Chatbot(label="Chat History")
|
208 |
|
209 |
-
|
|
|
210 |
score_input = gr.Slider(minimum=0, maximum=5, step=1, label="Score")
|
211 |
comment_input = gr.Textbox(placeholder="Add a comment...", label="Comment")
|
212 |
save_button = gr.Button("Save Score and Comment")
|
@@ -214,7 +217,7 @@ with gr.Blocks() as demo:
|
|
214 |
|
215 |
with gr.TabItem("Instructions"):
|
216 |
gr.Markdown("# Instructions")
|
217 |
-
|
218 |
|
219 |
chat_history_json = gr.JSON(value=[], visible=False)
|
220 |
interaction_count = gr.Number(value=0, visible=False)
|
|
|
192 |
with gr.TabItem("Chat"):
|
193 |
gr.Markdown("# Chat with Model")
|
194 |
|
195 |
+
gr.Markdown("## Context")
|
196 |
+
with gr.Group():
|
197 |
model_dropdown = gr.Dropdown(choices=list(models.keys()), label="Select Model", value=selected_model)
|
198 |
user_dropdown = gr.Dropdown(choices=user_names, label="Select User Name")
|
199 |
initial_story = stories[0]["title"] if stories else None
|
|
|
201 |
system_prompt_dropdown = gr.Dropdown(choices=system_prompts, label="Select System Prompt", value=system_prompts[0])
|
202 |
send_story_button = gr.Button("Send Story")
|
203 |
|
204 |
+
gr.Markdown("## Chat")
|
205 |
+
with gr.Group():
|
206 |
selected_story_textbox = gr.Textbox(label="Selected Story", lines=10, interactive=False)
|
207 |
chatbot_input = gr.Textbox(placeholder="Type your message here...", label="User Input")
|
208 |
send_message_button = gr.Button("Send")
|
209 |
chatbot_output = gr.Chatbot(label="Chat History")
|
210 |
|
211 |
+
gr.Markdown("## Evaluation")
|
212 |
+
with gr.Group():
|
213 |
score_input = gr.Slider(minimum=0, maximum=5, step=1, label="Score")
|
214 |
comment_input = gr.Textbox(placeholder="Add a comment...", label="Comment")
|
215 |
save_button = gr.Button("Save Score and Comment")
|
|
|
217 |
|
218 |
with gr.TabItem("Instructions"):
|
219 |
gr.Markdown("# Instructions")
|
220 |
+
gr.Textbox(label="Instructions", value="Here you can add the instructions for using the interface.", lines=20)
|
221 |
|
222 |
chat_history_json = gr.JSON(value=[], visible=False)
|
223 |
interaction_count = gr.Number(value=0, visible=False)
|