Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
sonobit
/
computing
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
e6855d4
computing
/
app.py
sonobit
Create app.py
e6855d4
over 3 years ago
raw
Copy download link
history
blame
Safe
188 Bytes
import
gradio
as
gr
aList = []
def
add2List
(
num
):
num =
int
(num)
aList.append(num)
return
aList
iface = gr.Interface(fn=add2List, inputs=
"text"
, outputs=
"text"
)
iface.launch()