Update app.py
Browse files
app.py
CHANGED
@@ -5,12 +5,21 @@ import gradio_sidebar as gs
|
|
5 |
|
6 |
with gr.Blocks(head=gs.head,css=gs.css) as app:
|
7 |
gr.HTML(gs.topbar)
|
8 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
gr.Textbox()
|
10 |
gr.Slider()
|
11 |
gr.Image()
|
12 |
gr.Chatbot()
|
13 |
gr.Textbox()
|
14 |
gr.Image()
|
|
|
15 |
|
16 |
app.launch()
|
|
|
5 |
|
6 |
with gr.Blocks(head=gs.head,css=gs.css) as app:
|
7 |
gr.HTML(gs.topbar)
|
8 |
+
gr.HTML(gs.leftbar)
|
9 |
+
with gr.Group(elem_id="gs_top_control_panel"):
|
10 |
+
gr.Textbox()
|
11 |
+
gr.Slider()
|
12 |
+
gr.Image()
|
13 |
+
with gr.Group(elem_id="gs_left_control_panel"):
|
14 |
+
gr.Textbox()
|
15 |
+
gr.Textbox()
|
16 |
+
gr.Textbox()
|
17 |
gr.Textbox()
|
18 |
gr.Slider()
|
19 |
gr.Image()
|
20 |
gr.Chatbot()
|
21 |
gr.Textbox()
|
22 |
gr.Image()
|
23 |
+
gr.Image()
|
24 |
|
25 |
app.launch()
|