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