Spaces:
Sleeping
Sleeping
from fastapi import FastAPI | |
import uvicorn | |
app = FastAPI() | |
defaul_bot_voice = "γγ―γγγγγγγΎγ" | |
area_thres = 0.3 | |
def read_root(): | |
return {"Message": "Application startup complete"} | |
if __name__ == "__main__": | |
uvicorn.run("main:app", host="0.0.0.0", port=7860) |