Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions agent/modes/separated/composer.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"""Composer agent: compose_slides tool with parallel execution, prefetch, and post-build."""

import json
import logging
import os
import queue
import time
Expand All @@ -18,6 +19,8 @@
from modes import MODES # imported lazily in compose_slides if needed
from resilience import call_tool_with_retry

logger = logging.getLogger("sdpm.agent")


# Soft-stop signal: the webui cancel button sends InvokeAgentRuntimeCommand
# to `touch /tmp/compose_stops/{parent_tool_use_id}` inside this microVM.
Expand Down
Loading