Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
peter288
/
299
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
299
/
app.py
peter288
Update app.py
30ee1ee
verified
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
160 Bytes
import
gradio
as
gr
def
add
(
a, b
):
return
a + b
iface = gr.Interface(
fn=add,
inputs=[
"number"
,
"number"
],
outputs=
"number"
)
iface.launch()