Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
mylesai
/
mylesAI_test
like
5
No application file
App
Files
Files
Community
44
Create app.py
#14
by
royalonsarms
- opened
Oct 31, 2023
base:
refs/heads/main
←
from:
refs/pr/14
Discussion
Files changed
+5
-0
Files changed (1)
hide
show
app.py
+5
-0
app.py
ADDED
Viewed
@@ -0,0 +1,5 @@
1
+
def greet(name):
2
+
return "Hello " + name + "!!"
3
+
4
+
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
5
+
iface.launch()