Spaces:
Sleeping
Sleeping
File size: 313 Bytes
a47e5cf 29f2de2 185b05e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
"""
FastAPI application factory for LexiMind.
Creates and configures the REST API application.
Author: Oliver Perrin
Date: December 2025
"""
from fastapi import FastAPI
from .routes import router
def create_app() -> FastAPI:
app = FastAPI(title="LexiMind")
app.include_router(router)
return app
|