File size: 718 Bytes
bb16136 e65413e acda371 e65413e 41cdf73 31a6970 41cdf73 bb16136 1a8d2e4 31a6970 1a8d2e4 e78e1d7 41cdf73 bb16136 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
import gradio as gr
import gradio_sidebar as gs
with gr.Blocks(head=gs.head,css=gs.css) as app:
gr.HTML(gs.topbar)
gr.HTML(gs.leftbar)
gr.HTML(gs.rightbar)
with gr.Group(elem_id="gs_top_control_panel"):
gr.Textbox()
gr.Slider()
gr.Image()
with gr.Group(elem_id="gs_left_control_panel"):
gr.Textbox()
gr.Textbox()
gr.Textbox()
gr.Textbox()
gr.Slider()
gr.Image()
with gr.Group(elem_id="gs_right_control_panel"):
gr.Textbox()
gr.Textbox()
gr.Textbox()
gr.Textbox()
gr.Slider()
gr.Image()
gr.Chatbot()
gr.Textbox()
gr.Image()
gr.Image()
app.launch() |