Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
abidlabs/fill-width
abidlabs
/
fill-width-2
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
abidlabs
HF Staff
commited on
Jul 25, 2024
Commit
3fc3635
·
verified
·
1 Parent(s):
e3b2be7
Update app.py
Browse files
Files changed (1)
hide
show
app.py
+1
-1
app.py
CHANGED
Viewed
@@ -1,5 +1,5 @@
1
import gradio as gr
2
3
-
with gr.Blocks() as demo:
4
gr.ChatInterface(lambda x,y:x)
5
demo.launch()
1
import gradio as gr
2
3
+
with gr.Blocks(
fill_width=True
) as demo:
4
gr.ChatInterface(lambda x,y:x)
5
demo.launch()