Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
sob111
/
xtts-castellano
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
e8da02f
xtts-castellano
/
app.py
sob111
Update app.py
f82d145
verified
about 2 months ago
raw
Copy download link
history
blame
Safe
211 Bytes
from
flask
import
Flask
app = Flask(__name__)
@app.route(
"/"
)
def
home
():
return
"ok"
if
__name__ ==
"__main__"
:
# Hugging Face espera host 0.0.0.0 y puerto 7860
app.run(host=
"0.0.0.0"
, port=
7860
)