Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
anisotropies
/
chatty
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
anisotropies
commited on
Apr 6, 2024
Commit
189a011
·
verified
·
1 Parent(s):
d4670a0
Update app.py
Browse files
Files changed (1)
hide
show
app.py
+10
-0
app.py
CHANGED
Viewed
@@ -0,0 +1,10 @@
1
+
import gradio as gr
2
+
3
+
4
+
def greet(name):
5
+
return "Hello " + name
6
+
7
+
8
+
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
9
+
10
+
demo.launch()