update api for subagent protocol and delete hermes agent
This commit is contained in:
parent
ff1799cd98
commit
952b2e7d17
1150 changed files with 704 additions and 458893 deletions
|
|
@ -6,6 +6,7 @@ from fastapi import FastAPI
|
|||
from api.clients.browser_rpc_client import BrowserRpcClient
|
||||
from api.core.settings import settings
|
||||
from api.repositories.task_store import TaskStore
|
||||
from api.routes.runs import router as runs_router
|
||||
from api.routes.tasks import router as tasks_router
|
||||
from api.services.task_service import TaskService
|
||||
|
||||
|
|
@ -35,6 +36,7 @@ def create_app() -> FastAPI:
|
|||
lifespan=lifespan,
|
||||
)
|
||||
app.include_router(tasks_router)
|
||||
app.include_router(runs_router)
|
||||
|
||||
@app.get("/health")
|
||||
async def health() -> dict:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue