from fastapi import FastAPI from app.api.routes import router app = FastAPI(title="AI Orquestrador") app.include_router(router)