Spaces:
Running
Running
File size: 13,998 Bytes
06a1901 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 | """Background tool orchestrator for non-blocking tool execution.
Allows tools to run long operations asynchronously while the robot
continues conversing. Tools can be tracked, cancelled, and their
completion is announced vocally via a silent notification queue.
"""
# NOTE: ``from __future__ import annotations`` was removed here because
# Python 3.12 on the robot intermittently raised a "from __future__
# imports must occur at the beginning of the file" SyntaxError against
# this file even after CRLF was cleaned. Python 3.12 already evaluates
# annotations lazily where needed; removing the import has no runtime
# effect on this module.
import time
import asyncio
import logging
from typing import Any, Dict, Callable, Optional, Coroutine
from pydantic import Field, BaseModel, PrivateAttr
from reachy_mini_receptionist.tools.core_tools import (
ToolDependencies,
dispatch_tool_call,
dispatch_tool_call_with_manager,
)
from reachy_mini_receptionist.tools.tool_constants import ToolState, SystemTool
logger = logging.getLogger(__name__)
_SYSTEM_TOOL_NAMES: set[str] = {t.value for t in SystemTool}
class ToolProgress(BaseModel):
"""Progress of a background tool."""
"""the progress of the tool"""
progress: float = Field(..., ge=0.0, le=1.0)
"""the message of the tool"""
message: Optional[str] = None
class ToolCallRoutine(BaseModel):
"""Encapsulates an async callable with its arguments for deferred execution."""
model_config = {"arbitrary_types_allowed": True}
"""the name of the tool"""
tool_name: str
"""the JSON arguments for the tool call"""
args_json_str: str
"""the dependencies for the tool call"""
deps: "ToolDependencies"
async def __call__(self, tool_manager: "BackgroundToolManager") -> Any:
"""Execute the stored callable with its arguments."""
if self.tool_name in _SYSTEM_TOOL_NAMES:
# For safety purposes, we only allow system tools to be called with the tool manager
return await dispatch_tool_call_with_manager(tool_name=self.tool_name, args_json=self.args_json_str, deps=self.deps, tool_manager=tool_manager)
return await dispatch_tool_call(tool_name=self.tool_name, args_json=self.args_json_str, deps=self.deps)
class ToolNotification(BaseModel):
"""Notification payload for completed tools."""
"""the ID of the tool"""
id: str
"""the name of the tool"""
tool_name: str
"""whether the tool call was triggered by an idle signal"""
is_idle_tool_call: bool
"""the status of the tool"""
status: ToolState
"""the result of the tool"""
result: Optional[Dict[str, Any]] = None
"""the error of the tool"""
error: Optional[str] = None
class BackgroundTool(ToolNotification):
"""Represents a background tool."""
"""the progress of the tool"""
progress: Optional[ToolProgress] = None
"""the start time of the tool"""
started_at: float = Field(default_factory=time.monotonic)
"""the completion time of the tool"""
completed_at: Optional[float] = None
"""the async tool execution task"""
_task: Optional[asyncio.Task[None]] = PrivateAttr(default=None)
@property
def tool_id(self) -> str:
"""Get the name of the tool."""
return f"{self.tool_name}-{self.id}-{self.started_at}"
def get_notification(self) -> ToolNotification:
"""Get the notification for the tool."""
return ToolNotification(
id=self.id,
tool_name=self.tool_name,
is_idle_tool_call=self.is_idle_tool_call,
status=self.status,
result=self.result,
error=self.error,
)
class BackgroundToolManager(BaseModel):
"""Manages background tools for non-blocking tool execution.
Features:
- Start async tools without blocking the conversation
- Track tool status and progress
- Cancel running tools
"""
"""the dictionary of tools"""
_tools: Dict[str, BackgroundTool] = PrivateAttr(default_factory=dict)
"""the async queue for notifications"""
_notification_queue: asyncio.Queue[ToolNotification] = PrivateAttr(default_factory=asyncio.Queue)
"""the event loop"""
_loop: Optional[asyncio.AbstractEventLoop] = PrivateAttr(default=None)
"""internal lifecycle tasks (notification listener, periodic cleanup)"""
_lifecycle_tasks: list[asyncio.Task[None]] = PrivateAttr(default_factory=list)
"""the maximum duration of a tool execution in seconds (default: 1 day)"""
_max_tool_duration_seconds: float = PrivateAttr(default=86400)
"""the maximum time to keep a completed/failed/cancelled tool in memory (default: 1 hour)"""
_max_tool_memory_seconds: float = PrivateAttr(default=3600)
def set_loop(
self,
loop: Optional[asyncio.AbstractEventLoop] = None,
) -> None:
"""Set the event loop.
Args:
loop: The event loop (defaults to current running loop)
"""
if loop is not None:
self._loop = loop
else:
try:
self._loop = asyncio.get_running_loop()
except RuntimeError:
self._loop = asyncio.new_event_loop()
logger.debug("BackgroundToolManager: event loop set")
async def start_tool(
self,
call_id: str,
tool_call_routine: ToolCallRoutine,
is_idle_tool_call: bool,
with_progress: bool = False,
) -> BackgroundTool:
"""Start a new background tool.
Args:
call_id: The ID of the tool
tool_call_routine: The ToolCallRoutine containing the callable and its arguments
with_progress: Whether to track progress (0.0-1.0)
is_idle_tool_call: Whether the tool call was triggered by an idle signal
Returns:
BackgroundTool object with tool ID
"""
tool_name = tool_call_routine.tool_name
id = call_id
bg_tool = BackgroundTool(
id=id,
tool_name=tool_name,
is_idle_tool_call=is_idle_tool_call,
progress=ToolProgress(progress=0.0) if with_progress else None,
status=ToolState.RUNNING,
)
self._tools[bg_tool.tool_id] = bg_tool
async_task = asyncio.create_task(
self._run_tool(bg_tool, tool_call_routine),
name=f"bg-{tool_name}-{id}",
)
bg_tool._task = async_task
logger.info(f"Started background tool: {bg_tool.tool_name} (id={id})")
return bg_tool
async def _run_tool(
self,
bg_tool: BackgroundTool,
tool_call_routine: ToolCallRoutine,
) -> None:
"""Execute the tool and handle completion."""
result: dict[str, Any] = await tool_call_routine(self)
bg_tool.completed_at = time.monotonic()
error = result.get("error")
if error is not None:
if error == "Tool cancelled":
bg_tool.status = ToolState.CANCELLED
logger.debug(f"Background tool cancelled: {bg_tool.tool_name} (id={bg_tool.id})")
else:
bg_tool.status = ToolState.FAILED
logger.debug(f"Background tool failed: {bg_tool.tool_name} (id={bg_tool.id}): {bg_tool.error}")
bg_tool.error = result["error"]
else:
bg_tool.result = result
bg_tool.status = ToolState.COMPLETED
logger.debug(f"Background tool completed: {bg_tool.tool_name} (id={bg_tool.id})")
await self._notification_queue.put(bg_tool.get_notification())
logger.debug(f"Queued notification for tool: {bg_tool.tool_name} (id={bg_tool.id})")
async def update_progress(
self,
tool_id: str,
progress: float,
message: Optional[str] = None,
) -> bool:
"""Update progress for a tool (for tools with with_progress=True).
Args:
tool_id: The tool ID
progress: Progress value between 0.0 and 1.0
message: Optional progress message (e.g., "50% downloaded")
Returns:
True if updated successfully, False if tool not found or not tracking progress
"""
tool = self._tools.get(tool_id)
if tool is None:
return False
if tool.progress is None:
# Tool not tracking progress
return False
tool.progress = ToolProgress(progress=max(0.0, min(1.0, progress)), message=message)
logger.debug(f"Tool {tool_id} progress: {progress:.1%} - {message or ''}")
return True
async def cancel_tool(self, tool_id: str, log: bool = True) -> bool:
"""Cancel a running tool by ID.
Args:
tool_id: The tool ID to cancel
log: Whether to log the cancellation
Returns:
True if cancelled, False if tool not found or not running
"""
tool = self._tools.get(tool_id)
if tool is None:
if log:
logger.warning(f"Cannot cancel tool {tool_id}: not found")
return False
if tool.status != ToolState.RUNNING:
if log:
logger.warning(f"Cannot cancel tool {tool_id}: status is {tool.status.value}")
return True
if tool._task:
tool._task.cancel()
if log:
logger.info(f"Cancelled tool: {tool.tool_name} (id={tool_id})")
return True
return False
def start_up(self, tool_callbacks: list[Callable[[ToolNotification], Coroutine[Any, Any, None]]]) -> None:
"""Start the background tool manager.
This method starts two concurrent tasks:
- _listener: Listens for completed BackgroundTool notifications and calls the callbacks.
- _cleanup: Cleans up completed/failed/cancelled tools that have been in memory for too long and times out tools that have been running too long.
Args:
tool_callbacks: A list of async or sync callables that receive the completed BackgroundTool notifications.
"""
self.set_loop()
async def _listener() -> None:
while True:
bg_tool = await self._notification_queue.get()
for callback in tool_callbacks:
await callback(bg_tool)
async def _cleanup(interval_seconds: float = 5 * 60) -> None:
while True:
await asyncio.sleep(interval_seconds)
await self.cleanup_tools()
await self.timeout_tools()
self._lifecycle_tasks = [
asyncio.create_task(_cleanup(), name="bg-tool-cleanup"),
asyncio.create_task(_listener(), name="bg-tool-listener-callback"),
]
logger.info(
"BackgroundToolManager started. "
"Max tool execution duration: %s seconds (tools running longer will be auto-cancelled). "
"Max tool memory retention: %s seconds (completed/failed/cancelled tools older than this are purged).",
self._max_tool_duration_seconds, self._max_tool_memory_seconds,
)
async def shutdown(self) -> None:
"""Cancel all background tasks (listener, cleanup) and running tools."""
for task in self._lifecycle_tasks:
task.cancel()
for task in self._lifecycle_tasks:
try:
await task
except asyncio.CancelledError:
pass
self._lifecycle_tasks.clear()
for tool_id in list(self._tools):
await self.cancel_tool(tool_id, log=False)
logger.info("BackgroundToolManager shut down")
async def timeout_tools(self) -> int:
"""Cancel tools that have been running too long.
Returns:
Number of tools cancelled
"""
now = time.monotonic()
to_cancel = []
for tool_id, tool in self._tools.items():
if tool.status == ToolState.RUNNING:
if tool.started_at and (now - tool.started_at) > self._max_tool_duration_seconds:
to_cancel.append(tool_id)
for tool_id in to_cancel:
await self.cancel_tool(tool_id)
if to_cancel:
logger.debug(f"Timed out {len(to_cancel)} tools")
return len(to_cancel)
async def cleanup_tools(self) -> int:
"""Remove completed/failed/cancelled tools that have been in memory for too long.
Returns:
Number of tools removed
"""
now = time.monotonic()
to_remove = []
for tool_id, tool in self._tools.items():
if tool.status in (ToolState.COMPLETED, ToolState.FAILED, ToolState.CANCELLED):
if tool.completed_at and (now - tool.completed_at) > self._max_tool_memory_seconds:
to_remove.append(tool_id)
for tool_id in to_remove:
del self._tools[tool_id]
if to_remove:
logger.debug(f"Cleaned up {len(to_remove)} old tools")
return len(to_remove)
def get_tool(self, tool_id: str) -> Optional[BackgroundTool]:
"""Get a tool by ID."""
return self._tools.get(tool_id)
def get_running_tools(self) -> list[BackgroundTool]:
"""Get all currently running tools."""
return [t for t in self._tools.values() if t.status == ToolState.RUNNING]
def get_all_tools(self, limit: Optional[int] = None) -> list[BackgroundTool]:
"""Get recent tools (most recent first).
Args:
limit: Maximum number of tools to return (None means all)
Returns:
List of tools sorted by start time (most recent first)
"""
sorted_tools = sorted(
self._tools.values(),
key=lambda t: t.started_at,
reverse=True,
)
if limit is not None:
return sorted_tools[:limit]
return sorted_tools
|