Spaces:
Sleeping
Sleeping
File size: 7,733 Bytes
1e732dd | 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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 | """
MediGuard AI — Production FastAPI Application
Central app factory with lifespan that initialises all production services
(OpenSearch, Redis, Ollama, Langfuse, RAG pipeline) and gracefully shuts
them down. The existing ``api/`` package is kept as-is — this new module
becomes the primary production entry-point.
"""
from __future__ import annotations
import logging
import os
import time
from contextlib import asynccontextmanager
from datetime import datetime, timezone
from fastapi import FastAPI, Request, status
from fastapi.exceptions import RequestValidationError
from fastapi.middleware.cors import CORSMiddleware
from fastapi.responses import JSONResponse
from src.settings import get_settings
# ---------------------------------------------------------------------------
# Logging
# ---------------------------------------------------------------------------
logging.basicConfig(
level=logging.INFO,
format="%(asctime)s | %(name)-30s | %(levelname)-7s | %(message)s",
)
logger = logging.getLogger("mediguard")
# ---------------------------------------------------------------------------
# Lifespan
# ---------------------------------------------------------------------------
@asynccontextmanager
async def lifespan(app: FastAPI):
"""Initialise production services on startup, tear them down on shutdown."""
settings = get_settings()
app.state.start_time = time.time()
app.state.version = "2.0.0"
logger.info("=" * 70)
logger.info("MediGuard AI — starting production server v%s", app.state.version)
logger.info("=" * 70)
# --- OpenSearch ---
try:
from src.services.opensearch.client import make_opensearch_client
app.state.opensearch_client = make_opensearch_client()
logger.info("OpenSearch client ready")
except Exception as exc:
logger.warning("OpenSearch unavailable: %s", exc)
app.state.opensearch_client = None
# --- Embedding service ---
try:
from src.services.embeddings.service import make_embedding_service
app.state.embedding_service = make_embedding_service()
logger.info("Embedding service ready (provider=%s)", app.state.embedding_service._provider)
except Exception as exc:
logger.warning("Embedding service unavailable: %s", exc)
app.state.embedding_service = None
# --- Redis cache ---
try:
from src.services.cache.redis_cache import make_redis_cache
app.state.cache = make_redis_cache()
logger.info("Redis cache ready")
except Exception as exc:
logger.warning("Redis cache unavailable: %s", exc)
app.state.cache = None
# --- Ollama LLM ---
try:
from src.services.ollama.client import make_ollama_client
app.state.ollama_client = make_ollama_client()
logger.info("Ollama client ready")
except Exception as exc:
logger.warning("Ollama client unavailable: %s", exc)
app.state.ollama_client = None
# --- Langfuse tracer ---
try:
from src.services.langfuse.tracer import make_langfuse_tracer
app.state.tracer = make_langfuse_tracer()
logger.info("Langfuse tracer ready")
except Exception as exc:
logger.warning("Langfuse tracer unavailable: %s", exc)
app.state.tracer = None
# --- Agentic RAG service ---
try:
from src.services.agents.agentic_rag import AgenticRAGService
from src.services.agents.context import AgenticContext
if app.state.ollama_client and app.state.opensearch_client and app.state.embedding_service:
llm = app.state.ollama_client.get_langchain_model()
ctx = AgenticContext(
llm=llm,
embedding_service=app.state.embedding_service,
opensearch_client=app.state.opensearch_client,
cache=app.state.cache,
tracer=app.state.tracer,
)
app.state.rag_service = AgenticRAGService(ctx)
logger.info("Agentic RAG service ready")
else:
app.state.rag_service = None
logger.warning("Agentic RAG service skipped — missing backing services")
except Exception as exc:
logger.warning("Agentic RAG service failed: %s", exc)
app.state.rag_service = None
# --- Legacy RagBot service (backward-compatible /analyze) ---
try:
from api.app.services.ragbot import get_ragbot_service
ragbot = get_ragbot_service()
ragbot.initialize()
app.state.ragbot_service = ragbot
logger.info("Legacy RagBot service ready")
except Exception as exc:
logger.warning("Legacy RagBot service unavailable: %s", exc)
app.state.ragbot_service = None
logger.info("All services initialised — ready to serve")
logger.info("=" * 70)
yield # ---- server running ----
logger.info("Shutting down MediGuard AI …")
# ---------------------------------------------------------------------------
# App factory
# ---------------------------------------------------------------------------
def create_app() -> FastAPI:
"""Build and return the configured FastAPI application."""
settings = get_settings()
app = FastAPI(
title="MediGuard AI",
description="Production medical biomarker analysis — agentic RAG + multi-agent workflow",
version="2.0.0",
lifespan=lifespan,
docs_url="/docs",
redoc_url="/redoc",
openapi_url="/openapi.json",
)
# --- CORS ---
origins = os.getenv("CORS_ALLOWED_ORIGINS", "*").split(",")
app.add_middleware(
CORSMiddleware,
allow_origins=origins,
allow_credentials=origins != ["*"],
allow_methods=["*"],
allow_headers=["*"],
)
# --- Exception handlers ---
@app.exception_handler(RequestValidationError)
async def validation_error(request: Request, exc: RequestValidationError):
return JSONResponse(
status_code=status.HTTP_422_UNPROCESSABLE_ENTITY,
content={
"status": "error",
"error_code": "VALIDATION_ERROR",
"message": "Request validation failed",
"details": exc.errors(),
"timestamp": datetime.now(timezone.utc).isoformat(),
},
)
@app.exception_handler(Exception)
async def catch_all(request: Request, exc: Exception):
logger.error("Unhandled exception: %s", exc, exc_info=True)
return JSONResponse(
status_code=status.HTTP_500_INTERNAL_SERVER_ERROR,
content={
"status": "error",
"error_code": "INTERNAL_SERVER_ERROR",
"message": "An unexpected error occurred. Please try again later.",
"timestamp": datetime.now(timezone.utc).isoformat(),
},
)
# --- Routers ---
from src.routers import health, analyze, ask, search
app.include_router(health.router)
app.include_router(analyze.router)
app.include_router(ask.router)
app.include_router(search.router)
@app.get("/")
async def root():
return {
"name": "MediGuard AI",
"version": "2.0.0",
"status": "online",
"endpoints": {
"health": "/health",
"health_ready": "/health/ready",
"analyze_natural": "/analyze/natural",
"analyze_structured": "/analyze/structured",
"ask": "/ask",
"search": "/search",
"docs": "/docs",
},
}
return app
# Module-level app for ``uvicorn src.main:app``
app = create_app()
|