Update app.py
Browse files
app.py
CHANGED
@@ -1,5 +1,7 @@
|
|
1 |
from fastapi import FastAPI, HTTPException, Query
|
2 |
from fastapi.responses import JSONResponse
|
|
|
|
|
3 |
from webscout import WEBS, transcriber, LLM, fastai, fastai_stream
|
4 |
from typing import Optional, List, Dict, Union
|
5 |
from fastapi.encoders import jsonable_encoder
|
|
|
1 |
from fastapi import FastAPI, HTTPException, Query
|
2 |
from fastapi.responses import JSONResponse
|
3 |
+
from fastapi import FastAPI, HTTPException
|
4 |
+
from fastapi.responses import StreamingResponse
|
5 |
from webscout import WEBS, transcriber, LLM, fastai, fastai_stream
|
6 |
from typing import Optional, List, Dict, Union
|
7 |
from fastapi.encoders import jsonable_encoder
|