Update app.py
Browse files
app.py
CHANGED
@@ -6,6 +6,7 @@ import gradio_sidebar as gs
|
|
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()
|
@@ -17,6 +18,13 @@ with gr.Blocks(head=gs.head,css=gs.css) as app:
|
|
17 |
gr.Textbox()
|
18 |
gr.Slider()
|
19 |
gr.Image()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
gr.Chatbot()
|
21 |
gr.Textbox()
|
22 |
gr.Image()
|
|
|
6 |
with gr.Blocks(head=gs.head,css=gs.css) as app:
|
7 |
gr.HTML(gs.topbar)
|
8 |
gr.HTML(gs.leftbar)
|
9 |
+
gr.HTML(gs.rightbar)
|
10 |
with gr.Group(elem_id="gs_top_control_panel"):
|
11 |
gr.Textbox()
|
12 |
gr.Slider()
|
|
|
18 |
gr.Textbox()
|
19 |
gr.Slider()
|
20 |
gr.Image()
|
21 |
+
with gr.Group(elem_id="gs_right_control_panel"):
|
22 |
+
gr.Textbox()
|
23 |
+
gr.Textbox()
|
24 |
+
gr.Textbox()
|
25 |
+
gr.Textbox()
|
26 |
+
gr.Slider()
|
27 |
+
gr.Image()
|
28 |
gr.Chatbot()
|
29 |
gr.Textbox()
|
30 |
gr.Image()
|