from fastapi import FastAPI from app.controllers.lm_controller import router as lm_router app = FastAPI() app.include_router(lm_router)