diff --git a/main.py b/main.py index d58a398..c75a6d3 100644 --- a/main.py +++ b/main.py @@ -1,4 +1,4 @@ -import whisper +#import whisper import time from google.cloud import speech_v1 from google.cloud.speech_v1 import types @@ -16,13 +16,13 @@ class Response(BaseModel): encoding:str -model = whisper.load_model("medium") -@app.post("/voice2txt/") -def calculate_api(response: Response): - path = response.path - t=time.time() - result = model.transcribe(path)["text"] - return {"message": result,"time":time.time()-t} +#model = whisper.load_model("medium") +#@app.post("/voice2txt/") +#def calculate_api(response: Response): + #path = response.path + #t=time.time() + #result = model.transcribe(path)["text"] + #return {"message": result,"time":time.time()-t} @app.post("/voice2txtGoogle/")