Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
lenML/ChatTTS-Forge
chenjacky131
/
ChatTTS-Forge
like
0
Sleeping
App
Files
Files
Community
02e90e4
ChatTTS-Forge
/
modules
/
api
/
impl
/
ping_api.py
zhzluke96
update
02e90e4
7 months ago
raw
Copy download link
history
blame
Safe
247 Bytes
from
modules.api
import
utils
as
api_utils
from
modules.api.Api
import
APIManager
def
setup
(
app: APIManager
):
@app.get(
"/v1/ping"
, response_model=api_utils.BaseResponse
)
async
def
ping
():
return
{
"message"
:
"ok"
,
"data"
:
"pong"
}