Update app.py
Browse files
app.py
CHANGED
@@ -27,7 +27,7 @@ def healthcheck():
|
|
27 |
async def stt(file: str = UploadFile(...)):
|
28 |
#file_content = base64.b64decode(file)
|
29 |
file_content = await file.read()
|
30 |
-
dataset = load_dataset("PolyAI/minds14", name="en-US", split="train")
|
31 |
results = deepneurones(file_content)
|
32 |
return {"output":results}
|
33 |
#app.mount("/", StaticFiles(directory="static", html=True), name="static")
|
|
|
27 |
async def stt(file: str = UploadFile(...)):
|
28 |
#file_content = base64.b64decode(file)
|
29 |
file_content = await file.read()
|
30 |
+
#dataset = load_dataset("PolyAI/minds14", name="en-US", split="train")
|
31 |
results = deepneurones(file_content)
|
32 |
return {"output":results}
|
33 |
#app.mount("/", StaticFiles(directory="static", html=True), name="static")
|