fill-width-2 / app.py
abidlabs's picture
abidlabs HF Staff
Update app.py
3fc3635 verified
raw
history blame contribute delete
111 Bytes
import gradio as gr
with gr.Blocks(fill_width=True) as demo:
gr.ChatInterface(lambda x,y:x)
demo.launch()