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

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

demo.launch()