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