Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
wjx214
/
large-model
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
wjx214
commited on
Feb 24, 2025
Commit
4881bd3
·
verified
·
1 Parent(s):
71a401b
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
2
+
def greet(name):
3
+
return "hello"+name+"!"
4
+
demo = gradio.Interface(fn=greet, input="text", output="text")
5
+
demo.launch()