Update app.py
Browse files
app.py
CHANGED
@@ -293,6 +293,9 @@ class App:
|
|
293 |
disclaimer_text = str(general_params["disclaimer_text"]).strip()
|
294 |
disclaimer_show = general_params["disclaimer_show"]
|
295 |
disclaimer_popup = general_params["disclaimer_popup"]
|
|
|
|
|
|
|
296 |
|
297 |
with gr.Row():
|
298 |
#with gr.Column():
|
@@ -356,9 +359,7 @@ class App:
|
|
356 |
with gr.Column():
|
357 |
gr.Markdown(device_info, label="Hardware info & installed packages")
|
358 |
|
359 |
-
|
360 |
-
files_subtitles = gr.Files(label="Output data", interactive=False, file_count="multiple", height="200px")
|
361 |
-
|
362 |
# Launch the app with optional gradio settings
|
363 |
args = self.args
|
364 |
|
|
|
293 |
disclaimer_text = str(general_params["disclaimer_text"]).strip()
|
294 |
disclaimer_show = general_params["disclaimer_show"]
|
295 |
disclaimer_popup = general_params["disclaimer_popup"]
|
296 |
+
|
297 |
+
with gr.Sidebar(open=False,position="right"):
|
298 |
+
files_subtitles = gr.Files(label="Output data", interactive=False, file_count="multiple", height="200px")
|
299 |
|
300 |
with gr.Row():
|
301 |
#with gr.Column():
|
|
|
359 |
with gr.Column():
|
360 |
gr.Markdown(device_info, label="Hardware info & installed packages")
|
361 |
|
362 |
+
|
|
|
|
|
363 |
# Launch the app with optional gradio settings
|
364 |
args = self.args
|
365 |
|