Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
gojgo
/
README
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
README
/
app.py
ted163
Create app.py
49099ff
verified
about 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
200 Bytes
import
gradio
as
gr
def
greet
(
name, intensity
):
return
"Hello "
* intensity + name +
"!"
demo = gr.Interface(
fn=greet,
inputs=[
"text"
,
"slider"
],
outputs=[
"text"
],
)
demo.launch()