MCPcopy Create free account
hub / github.com/ScaleML/AgentSPEX / handle_task_update

Function handle_task_update

src/harness/agentic_loop/tools.py:44–53  ·  view source on GitHub ↗
(args: dict)

Source from the content-addressed store, hash-verified

42 return f"Created {task.id}: {task.description}"
43
44 def handle_task_update(args: dict) -> str:
45 try:
46 task = task_board.update_task(
47 task_id=args["task_id"],
48 status=args.get("status"),
49 result_summary=args.get("result_summary"),
50 )
51 return f"Updated {task.id}: status={task.status.value}"
52 except ValueError as e:
53 return f"Error: {e}"
54
55 def handle_task_list(args: dict) -> str:
56 return task_board.get_summary()

Callers

nothing calls this directly

Calls 2

update_taskMethod · 0.80
getMethod · 0.80

Tested by

no test coverage detected