feat: add cron tool for scheduling reminders and tasks

This commit is contained in:
Re-bin
2026-02-05 15:09:51 +00:00
parent dc20927ff0
commit b1d6670ce0
6 changed files with 207 additions and 14 deletions

View File

@@ -149,7 +149,8 @@ class SubagentManager:
# Execute tools
for tool_call in response.tool_calls:
logger.debug(f"Subagent [{task_id}] executing: {tool_call.name}")
args_str = json.dumps(tool_call.arguments)
logger.debug(f"Subagent [{task_id}] executing: {tool_call.name} with arguments: {args_str}")
result = await tools.execute(tool_call.name, tool_call.arguments)
messages.append({
"role": "tool",