mulasagg commited on
Commit
d08c7cc
·
1 Parent(s): bacd6c8
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -329,7 +329,7 @@ async def transcribe(file: UploadFile, language: str = Form(...)):
329
  os.remove(temp_filepath)
330
 
331
 
332
- from fastapi import UploadFile, Form
333
 
334
  @app.post('/analyze_all/')
335
  async def analyze_all(file: UploadFile, language: str = Form(...)):
 
329
  os.remove(temp_filepath)
330
 
331
 
332
+ from fastapi import FastAPI, UploadFile, File, Form, HTTPException
333
 
334
  @app.post('/analyze_all/')
335
  async def analyze_all(file: UploadFile, language: str = Form(...)):