Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
alioo
/
better_call_saul
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
102a3c8
better_call_saul
/
app.py
alioo
first commit hf ; app file
102a3c8
about 1 year ago
raw
Copy download link
history
blame
Safe
199 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()