fix(conductor): Apply review suggestions for track 'test_curation_20260225'

This commit is contained in:
2026-02-25 22:05:28 -05:00
parent 56025a84e9
commit c23966061c
5 changed files with 18 additions and 10 deletions

View File

@@ -841,7 +841,7 @@ def _send_gemini_cli(md_content: str, user_message: str, base_dir: str,
# Clean up the tool calls format to match comms log expectation
log_calls = []
for c in calls:
log_calls.append({"name": c.get("name"), "args": c.get("args")})
log_calls.append({"name": c.get("name"), "args": c.get("args"), "id": c.get("id")})
_append_comms("IN", "response", {
"round": r_idx,