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()