Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
44 changes: 0 additions & 44 deletions docs/cowork_mount_permission_troubleshooting_prompt.md

This file was deleted.

73 changes: 0 additions & 73 deletions docs/windows-installer-regression-checklist.md

This file was deleted.

4 changes: 2 additions & 2 deletions libs/hexagent_demo/backend/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,5 @@ skills/private/
skills-inactive/

# Bundled example/public skills (license restrictions)
skills/examples/
skills/public/
# skills/examples/
# skills/public/
1 change: 1 addition & 0 deletions libs/hexagent_demo/backend/hexagent_api/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ class ToolsConfig:
@dataclass
class SandboxConfig:
e2b_api_key: str = ""
chat_enabled: bool = False


@dataclass
Expand Down
3 changes: 3 additions & 0 deletions libs/hexagent_demo/backend/hexagent_api/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,9 @@ async def lifespan(app: FastAPI) -> AsyncIterator[None]:
cleanup_task = asyncio.create_task(_cleanup_expired_sessions())
yield
cleanup_task.cancel()
from hexagent_api.stream_manager import stream_manager
logger.info("Cancelling active streams...")
stream_manager.cancel_all()
logger.info("Shutting down agent manager...")
await agent_manager.stop()
logger.info("Agent manager shut down.")
Expand Down
Loading
Loading