csuhan commited on
Commit
cb3735c
·
1 Parent(s): d75054e

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -349,8 +349,6 @@ def gradio_worker(
349
  with gr.Column(scale=2):
350
  chatbot = gr.Chatbot(elem_id="chatbot")
351
  msg = gr.Textbox()
352
- gr.Markdown("Note: We are fixing a bug in multi-user session control.")
353
-
354
 
355
  with gr.Row():
356
  submit_button = gr.Button("Submit", variant="primary")
@@ -370,6 +368,7 @@ def gradio_worker(
370
  minimum=0, maximum=1, value=0.75, interactive=True,
371
  label="Top-p",
372
  )
 
373
 
374
  img_tab.select(partial(change_modality, 'image'), [], [modality])
375
  video_tab.select(partial(change_modality, 'video'), [], [modality])
 
349
  with gr.Column(scale=2):
350
  chatbot = gr.Chatbot(elem_id="chatbot")
351
  msg = gr.Textbox()
 
 
352
 
353
  with gr.Row():
354
  submit_button = gr.Button("Submit", variant="primary")
 
368
  minimum=0, maximum=1, value=0.75, interactive=True,
369
  label="Top-p",
370
  )
371
+ gr.Markdown("Note: We are fixing a bug in multi-user session control.")
372
 
373
  img_tab.select(partial(change_modality, 'image'), [], [modality])
374
  video_tab.select(partial(change_modality, 'video'), [], [modality])