File size: 616 Bytes
06bad2e
 
 
 
 
b7f8699
06bad2e
 
 
 
 
1abaae9
 
06bad2e
 
 
 
b7f8699
 
6a076a8
b7f8699
4d1ff74
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from ultralyticsplus import YOLO
from base64 import b64encode
from speech_recognition import AudioFile, Recognizer
import numpy as np
from scipy.spatial import distance as dist

from sahi.utils.cv import read_image_as_pil
from fastapi import FastAPI, File, UploadFile, Form
from utils import tts, read_image_file, pil_to_base64, base64_to_pil, get_hist
from typing import Optional

# model = YOLO('ultralyticsplus/yolov8s')
# CLASS = model.model.names

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

@app.get("/")
def read_root():
    return {"Hello": "World!"}