rodrisouza commited on
Commit
1b79c4b
·
verified ·
1 Parent(s): 49de82f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -4
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
- with gr.Group(label="Context"):
 
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
- with gr.Group(label="Chat"):
 
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
- with gr.Group(label="Evaluation"):
 
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
- instructions_textbox = gr.Textbox(value="Here are the instructions on how to use the application...", lines=20)
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)