Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
Quake24
/
thepainter
like
1
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Quake24
commited on
Mar 3, 2023
Commit
12189ca
·
1 Parent(s):
7faaa4b
Add test application
Browse files
Files changed (1)
hide
show
app.py
+9
-0
app.py
ADDED
Viewed
@@ -0,0 +1,9 @@
1
+
import gradio as gr
2
+
3
+
4
+
def greet(name):
5
+
return "Hello" + name + "!!"
6
+
7
+
8
+
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
9
+
iface.launch()