accordion-test / app.py
abidlabs's picture
abidlabs HF Staff
Update app.py
6682937 verified
raw
history blame contribute delete
224 Bytes
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()