|
import uvicorn |
|
from fastapi import FastAPI |
|
from fastapi.middleware.cors import CORSMiddleware |
|
from config import setup_app, agent, logger, patients_collection, analysis_collection, users_collection |
|
from endpoints import create_router |
|
|
|
|
|
app = FastAPI(title="TxAgent API", version="2.6.0") |
|
|
|
|
|
app.add_middleware( |
|
CORSMiddleware, |
|
allow_origins=["*"], |
|
allow_credentials=True, |
|
allow_methods=["*"], |
|
allow_headers=["*"] |
|
) |
|
|
|
|
|
setup_app(app) |
|
|
|
|
|
router = create_router(agent, logger, patients_collection, analysis_collection, users_collection) |
|
app.include_router(router) |
|
|
|
if __name__ == "__main__": |
|
uvicorn.run(app, host="0.0.0.0", port=8000) |