File size: 300 Bytes
a252bb5
407ab6d
b7f8699
 
 
 
 
 
 
 
 
407ab6d
 
 
8765d4c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from fastapi import FastAPI
import uvicorn


app = FastAPI()
defaul_bot_voice = "γŠγ―γ„γ‚ˆγ†γ”γ–γ„γΎγ™"
area_thres = 0.3


@app.get("/")
def read_root():
    return {"Message": "Application startup complete"}

if __name__ == "__main__":
    uvicorn.run("main:app", host="0.0.0.0", port=7860)