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