Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
sonobit
/
computing32
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
086f182
computing32
/
app.py
sonobit
Update app.py
086f182
about 3 years ago
raw
Copy download link
history
blame
190 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()