Another quick snapshot in case something breaks again. There are issues with this new agent bridge and the psutil and Gemini CLI. Not sure, but it causes problems.

This commit is contained in:
Scott Idem
2026-01-07 13:10:16 -05:00
parent 7fb2f00846
commit 270712f905
2 changed files with 58 additions and 29 deletions

View File

@@ -121,11 +121,15 @@ app.include_router(
prefix='/v3/crud',
tags=['CRUD v3'],
)
# app.include_router(
# agent_bridge.router,
# prefix='/agent',
# tags=['Agent Bridge'],
# )
# Deferred import to avoid circular dependencies and ensure environment is ready
from app.routers import agent_bridge
app.include_router(
agent_bridge.router,
prefix='/agent',
tags=['Agent Bridge'],
)
app.include_router(
api.router,
prefix='/api',