Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
bilal01
/
TextToSpeech
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
67aceaa
TextToSpeech
/
main.py
bilal01
Update main.py
6da8f38
over 1 year ago
raw
Copy download link
history
blame
Safe
118 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
async
def
root
():
return
{
"message"
:
"Hello World"
}