Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
imseldrith
/
Z1
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
a4ea0e8
Z1
/
app.py
imseldrith
Upload 12 files
fbb09c7
over 2 years ago
raw
Copy download link
history
blame
Safe
213 Bytes
import
subprocess
import
gradio
as
gr
def
n
(
hi
):
x = hi +
" hi!"
return
x,subprocess.run(
"python3 bot.py"
,shell=
True
)
gr.Interface(fn=n, inputs=
"text"
,outputs=[
"text"
,
"text"
],live=
True
).launch(debug=
True
)