Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
przem8k
/
cal
like
0
Runtime error
App
Files
Files
Community
przem8k
commited on
May 13
Commit
20633ca
•
1 Parent(s):
7a6c6d4
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+10
-0
app.py
ADDED
Viewed
@@ -0,0 +1,10 @@
1
+
import gradio as gr
2
+
3
+
def greet(name):
4
+
return "Hello " + name + "!"
5
+
6
+
demo = gr.Interface(fn=greet,
7
+
inputs="text",
8
+
outputs="text",
9
+
allow_flagging="never")
10
+
demo.launch()