Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Hardware
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
sanjay9876
/
hello_slider
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
sanjay9876
commited on
21 days ago
Commit
ed5862b
·
verified
·
1 Parent(s):
86ab2f5
Added import
Browse files
Files changed (1)
hide
show
app.py
+2
-0
app.py
CHANGED
Viewed
@@ -1,3 +1,5 @@
1
def greet(name, intensity):
2
return "Hello. " + name + "!" * int(intensity)
3
1
+
import gradio as gr
2
+
3
def greet(name, intensity):
4
return "Hello. " + name + "!" * int(intensity)
5