File size: 299 Bytes
bb16136
e65413e
acda371
 
 
e65413e
 
66b96c2
bb16136
 
1a8d2e4
 
 
e78e1d7
bb16136
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import gradio as gr
import gradio_sidebar as gs



with gr.Blocks(head=gs.head,css=gs.css) as app:
    gr.HTML(gs.topbar)
    with gr.Group(elem_id="gs_control_panel"):
        gr.Textbox()
        gr.Slider()
        gr.Image()
    gr.Chatbot()
    gr.Textbox()
    gr.Image()
        
app.launch()