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