File size: 224 Bytes
33d2d08
 
6682937
7814082
65748e8
 
6682937
33d2d08
 
1
2
3
4
5
6
7
8
9
import gradio as gr

with gr.Blocks(fill_height=True) as demo:
    with gr.Sidebar():
        gr.Textbox()
    gr.Textbox()
    gr.ChatInterface(lambda x,y,z:x, additional_inputs=["textbox"], fill_height=True)

demo.launch()