AICEO / app /main.py
mgbam's picture
πŸ” Add AutoExec AI full application files for Hugging Face Space
c9c8879
raw
history blame
200 Bytes
from fastapi import FastAPI
from app.routes.loopagent import router as loop_router
app = FastAPI(title="AutoExec AI Backend")
app.include_router(loop_router, prefix="/loopagent", tags=["LoopAgent"])