Update main.py
Browse files
main.py
CHANGED
@@ -25,6 +25,7 @@ import docx2txt
|
|
25 |
import pptx
|
26 |
import os
|
27 |
import utils
|
|
|
28 |
|
29 |
## APPLICATION LIFESPAN
|
30 |
# Load the environment variables using FastAPI lifespan event so that they are available throughout the application
|
@@ -49,6 +50,18 @@ async def lifespan(app: FastAPI):
|
|
49 |
# Initialize the FastAPI app
|
50 |
app = FastAPI(lifespan=lifespan, docs_url="/")
|
51 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
## PYDANTIC MODELS
|
53 |
# Define an APIKey Pydantic model for the request body
|
54 |
class APIKey(BaseModel):
|
|
|
25 |
import pptx
|
26 |
import os
|
27 |
import utils
|
28 |
+
from fastapi.middleware.cors import CORSMiddleware
|
29 |
|
30 |
## APPLICATION LIFESPAN
|
31 |
# Load the environment variables using FastAPI lifespan event so that they are available throughout the application
|
|
|
50 |
# Initialize the FastAPI app
|
51 |
app = FastAPI(lifespan=lifespan, docs_url="/")
|
52 |
|
53 |
+
origins = [
|
54 |
+
"http://localhost:8501",
|
55 |
+
]
|
56 |
+
|
57 |
+
app.add_middleware(
|
58 |
+
CORSMiddleware,
|
59 |
+
allow_origins=origins,
|
60 |
+
allow_credentials=True,
|
61 |
+
allow_methods=["*"],
|
62 |
+
allow_headers=["*"],
|
63 |
+
)
|
64 |
+
|
65 |
## PYDANTIC MODELS
|
66 |
# Define an APIKey Pydantic model for the request body
|
67 |
class APIKey(BaseModel):
|