from fastapi import FastAPI from app.api.routes import router def create_app() -> FastAPI: app = FastAPI( title="agent-platform code-runner-service", version="0.1.0", ) app.include_router(router, prefix="/code", tags=["code"]) return app