Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
NimaBoscarino
/
tests
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
NimaBoscarino
commited on
Sep 1, 2022
Commit
2e6234d
·
1 Parent(s):
63c1b81
Create new file
Browse files
Files changed (1)
hide
show
app.py
+8
-0
app.py
ADDED
Viewed
@@ -0,0 +1,8 @@
1
+
import gradio as gr
2
+
3
+
def greet(name):
4
+
print("Hello " + name + "!")
5
+
return "Hello " + name + "!"
6
+
7
+
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
8
+
demo.launch()