-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.py
35 lines (31 loc) · 952 Bytes
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
from fastapi import FastAPI
from fastapi.middleware.cors import CORSMiddleware
from routers import upload, retrieve
app = FastAPI(
title="RAG Server API",
description="APIs for uploading documents and retrieving context",
version="1.0.0",
contact={
"name": "Nik Pash (CEO of Vault)",
"url": "http://vault77.ai/",
"email": "[email protected]",
},
license_info={
"name": "Apache 2.0",
"url": "https://www.apache.org/licenses/LICENSE-2.0.html",
}
)
# Set up CORS (if necessary)
app.add_middleware(
CORSMiddleware,
allow_origins=["*"], # Update this list with allowed origins
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
# Include routers
app.include_router(upload.router, tags=["upload"])
app.include_router(retrieve.router, tags=["retrieve"])
if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=8000)