Spaces:
Runtime error
Runtime error
from fastapi import FastAPI | |
from backend.app.routes import agent, settings | |
app = FastAPI() | |
app.include_router(agent.router) | |
app.include_router(settings.router) | |
async def root(): | |
return {"message": "Welcome to the Agentic Employment Infrastructure Backend"} | |