File size: 26,429 Bytes
1ab87df 4e1a75b 1ab87df 4e1a75b 1ab87df 4e1a75b 1ab87df 4e1a75b 1ab87df 4e1a75b 1ab87df 4e1a75b 1ab87df 4e1a75b 1ab87df 4e1a75b 1ab87df 4e1a75b 1ab87df 4e1a75b 1ab87df 4e1a75b 1ab87df 4e1a75b 1ab87df 4e1a75b 1ab87df 4e1a75b 1ab87df 4e1a75b 1ab87df 4e1a75b 1ab87df 4e1a75b 1ab87df 4e1a75b 1ab87df 6b13adb 1ab87df 6b13adb 1ab87df 6b13adb 1ab87df 6b13adb 1ab87df 6b13adb 1ab87df 6b13adb 1ab87df 6b13adb 1ab87df 6b13adb 1ab87df 6b13adb 1ab87df | 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 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 | """Shared utilities for CORP-ENV data prep, verification, and evaluation."""
from __future__ import annotations
import json
import os
import re
import sys
from dataclasses import dataclass
from pathlib import Path
from typing import Any, Dict, Iterable, List, Optional, Sequence
ROOT = Path(__file__).resolve().parents[1]
if str(ROOT) not in sys.path:
sys.path.insert(0, str(ROOT))
from corp_env.models import CorpAction, CorpObservation # noqa: E402
from server.agents.master_prompts import build_system_prompt # noqa: E402
from server.environment import CorpEnvironment # noqa: E402
DEFAULT_TASKS = ("e1_launch_readiness", "m1_budget_reallocation", "h1_acquisition_defence")
_ACTION_ALLOWED_KEYS = {"action_type", "agent_id", "payload", "metadata"}
_ACTION_ALLOWED_EXTRAS = {"thought"}
@dataclass
class ReplayResult:
example_id: str
task_id: str
status: str
reject_reason: str
actions: List[Dict[str, Any]]
steps: int
total_reward: float
terminal_reward: float
verifier_result: Dict[str, bool]
missed_milestones: List[str]
invalid_action_count: int
env_error_count: int
reasoning_steps: int
conflict_steps: int
resolution_steps: int
phase_progression_ok: bool
final_swd_version: int
final_swd: Dict[str, Any]
@property
def verifier_pass_rate(self) -> float:
if not self.verifier_result:
return 0.0
return sum(1 for v in self.verifier_result.values() if v) / len(self.verifier_result)
def to_record(self) -> Dict[str, Any]:
failed = [k for k, v in self.verifier_result.items() if not v]
passed = [k for k, v in self.verifier_result.items() if v]
return {
"example_id": self.example_id,
"task_id": self.task_id,
"status": self.status,
"reject_reason": self.reject_reason,
"steps": self.steps,
"total_reward": round(self.total_reward, 6),
"terminal_reward": round(self.terminal_reward, 6),
"verifier_pass_rate": round(self.verifier_pass_rate, 6),
"passed_checks": passed,
"failed_checks": failed,
"missed_milestones": self.missed_milestones,
"invalid_action_count": self.invalid_action_count,
"env_error_count": self.env_error_count,
"reasoning_steps": self.reasoning_steps,
"conflict_steps": self.conflict_steps,
"resolution_steps": self.resolution_steps,
"phase_progression_ok": self.phase_progression_ok,
"final_swd_version": self.final_swd_version,
"actions": self.actions,
"final_swd": self.final_swd,
}
def read_jsonl(path: Path) -> Iterable[Dict[str, Any]]:
with path.open("r", encoding="utf-8") as f:
for line_no, line in enumerate(f, start=1):
line = line.strip()
if not line:
continue
try:
obj = json.loads(line)
except json.JSONDecodeError as exc:
yield {
"example_id": f"{path.stem}:{line_no}",
"task_id": "",
"actions": [],
"_load_error": f"invalid JSONL line {line_no}: {exc}",
}
continue
obj.setdefault("example_id", f"{path.stem}:{line_no}")
yield obj
def write_jsonl(path: Path, rows: Iterable[Dict[str, Any]]) -> None:
path.parent.mkdir(parents=True, exist_ok=True)
with path.open("w", encoding="utf-8") as f:
for row in rows:
f.write(json.dumps(row, ensure_ascii=False) + "\n")
def _strict_json_object(text: str) -> Dict[str, Any]:
cleaned = text.strip()
if cleaned.startswith("```"):
raise ValueError("strict_json_disallows_fenced_blocks")
obj = json.loads(cleaned)
if not isinstance(obj, dict):
raise ValueError("strict_json_requires_single_object")
return obj
def extract_json_object(text: str, *, strict: bool = False) -> Dict[str, Any]:
if strict:
return _strict_json_object(text)
cleaned = text.strip()
cleaned = re.sub(r"^```(?:json)?\s*", "", cleaned)
cleaned = re.sub(r"\s*```\s*$", "", cleaned).strip()
try:
obj = json.loads(cleaned)
if isinstance(obj, dict):
return obj
except json.JSONDecodeError:
pass
start = cleaned.find("{")
if start == -1:
raise ValueError("no JSON object found")
depth = 0
in_string = False
escape_next = False
for idx in range(start, len(cleaned)):
ch = cleaned[idx]
if escape_next:
escape_next = False
continue
if ch == "\\" and in_string:
escape_next = True
continue
if ch == '"':
in_string = not in_string
continue
if in_string:
continue
if ch == "{":
depth += 1
elif ch == "}":
depth -= 1
if depth == 0:
obj = json.loads(cleaned[start : idx + 1])
if not isinstance(obj, dict):
raise ValueError("extracted JSON is not an object")
return obj
raise ValueError("unbalanced JSON object")
def normalize_action_obj(
raw: Any,
*,
strict: bool = False,
allowed_extra_keys: Optional[Sequence[str]] = None,
) -> Dict[str, Any]:
if isinstance(raw, str):
raw = extract_json_object(raw, strict=strict)
if not isinstance(raw, dict):
raise ValueError("action must be a JSON object or string containing one")
raw = dict(raw)
allowed = set(_ACTION_ALLOWED_KEYS)
extra = set(allowed_extra_keys or ())
allowed.update(extra)
if strict:
unknown = sorted(k for k in raw if k not in allowed and k not in _ACTION_ALLOWED_EXTRAS)
if unknown:
raise ValueError(f"unexpected_action_keys: {unknown}")
raw.pop("thought", None)
if "action_type" not in raw or not isinstance(raw["action_type"], str):
raise ValueError("missing_or_invalid_action_type")
if "payload" in raw and not isinstance(raw["payload"], str):
if strict:
raise ValueError("strict_json_requires_payload_string")
raw["payload"] = json.dumps(raw["payload"], ensure_ascii=False)
raw.setdefault("payload", "")
if raw.get("agent_id") == "":
raw["agent_id"] = None
out = CorpAction.model_validate(raw).model_dump(mode="json", exclude_none=True)
if strict and set(out) - _ACTION_ALLOWED_KEYS:
raise ValueError("non_canonical_action_shape")
return out
def extract_actions(example: Dict[str, Any]) -> List[Dict[str, Any]]:
candidates: Any = (
example.get("actions")
or example.get("trajectory")
or example.get("steps")
or example.get("messages")
)
if candidates is None:
raise ValueError("example has no actions/trajectory/steps/messages")
raw_actions: List[Any] = []
if candidates and isinstance(candidates, list) and isinstance(candidates[0], dict):
if "role" in candidates[0]:
raw_actions = [
m.get("content", "")
for m in candidates
if m.get("role") == "assistant" and m.get("content")
]
elif "action" in candidates[0]:
raw_actions = [step.get("action") for step in candidates]
else:
raw_actions = candidates
elif isinstance(candidates, list):
raw_actions = candidates
else:
raise ValueError("trajectory container must be a list")
return [normalize_action_obj(action) for action in raw_actions]
def deliberation_features(actions: List[Dict[str, Any]]) -> Dict[str, Any]:
reasoning_steps = sum(1 for a in actions if a.get("action_type") == "log_reasoning")
conflict_steps = sum(1 for a in actions if a.get("action_type") == "log_conflict")
resolution_steps = sum(1 for a in actions if a.get("action_type") == "log_resolution")
phases = [
str(a.get("payload", "")).strip().lower()
for a in actions
if a.get("action_type") == "advance_phase"
]
expected = ["analysis", "decision", "execution"]
idx = 0
for phase in phases:
if idx < len(expected) and phase == expected[idx]:
idx += 1
phase_progression_ok = idx == len(expected)
return {
"reasoning_steps": reasoning_steps,
"conflict_steps": conflict_steps,
"resolution_steps": resolution_steps,
"phase_progression_ok": phase_progression_ok,
}
def validate_stepwise_deliberation(task_id: str, actions: List[Dict[str, Any]]) -> str:
features = deliberation_features(actions)
reasoning_min = 1 if task_id in {"e1_launch_readiness", "m1_budget_reallocation"} else 3
if features["reasoning_steps"] < reasoning_min:
return "insufficient_stepwise_reasoning"
if task_id in {"m1_budget_reallocation", "h1_acquisition_defence"}:
if features["conflict_steps"] < 1:
return "missing_conflict_logging"
if features["resolution_steps"] < 1:
return "missing_resolution_logging"
if task_id == "h1_acquisition_defence" and not features["phase_progression_ok"]:
return "invalid_phase_progression"
return ""
def observation_message(step: int, obs: CorpObservation) -> str:
parts = [
f"--- Step {step} ---",
f"Role: {obs.role} (tier: {obs.master_tier})",
f"Task: {obs.task_description}",
f"Available agents: {', '.join(obs.available_agents)}",
f"Turn: {obs.turn} tokens_used: {obs.tokens_used}/{obs.token_budget}",
]
if obs.available_actions:
parts.append("Available actions:\n- " + "\n- ".join(obs.available_actions))
if obs.next_step_hint:
parts.append(f"Next-step hint: {obs.next_step_hint}")
if obs.recent_actions:
parts.append("Recent actions: " + " | ".join(obs.recent_actions))
parts.append(f"SWD:\n{json.dumps(obs.swd, indent=2, ensure_ascii=False)[:12000]}")
if obs.agent_last_output:
parts.append(f"Last worker output:\n{obs.agent_last_output[:4000]}")
if obs.query_result is not None:
parts.append(f"Query result: {json.dumps(obs.query_result, ensure_ascii=False)[:2000]}")
if obs.error:
parts.append(f"Error: {obs.error}")
parts.append(f"Reward (last step): {obs.reward}")
parts.append("Respond with exactly one JSON object for your next action (no markdown fences).")
return "\n".join(parts)
def actions_to_sft_messages(task_id: str, actions: List[Dict[str, Any]]) -> List[Dict[str, str]]:
env = CorpEnvironment()
obs = env.reset(task_id=task_id)
messages: List[Dict[str, str]] = [
{"role": "system", "content": build_system_prompt(obs.master_tier, obs.role)}
]
for idx, action_obj in enumerate(actions):
messages.append({"role": "user", "content": observation_message(idx, obs)})
messages.append(
{
"role": "assistant",
"content": json.dumps(action_obj, ensure_ascii=False),
}
)
obs = env.step(CorpAction.model_validate(action_obj))
if obs.done:
break
return messages
def keep_decision(task_id: str, terminal_reward: float, verifier: Dict[str, bool], missed: List[str]) -> str:
pass_count = sum(1 for v in verifier.values() if v)
total = max(len(verifier), 1)
if missed:
return "missed_milestones"
if task_id == "e1_launch_readiness":
if terminal_reward >= 0.65 and pass_count == total:
return ""
return "below_e1_threshold"
if task_id == "m1_budget_reallocation":
if terminal_reward >= 0.70 and pass_count >= 5:
return ""
return "below_m1_threshold"
if task_id == "h1_acquisition_defence":
if terminal_reward >= 0.65 and pass_count >= 7:
return ""
return "below_h1_threshold"
return "" if terminal_reward >= 0.65 else "below_generic_threshold"
def replay_actions(
*,
example_id: str,
task_id: str,
actions: List[Dict[str, Any]],
strict_thresholds: bool = True,
strict_json: bool = False,
require_stepwise_deliberation: bool = False,
) -> ReplayResult:
os.environ.setdefault("CORP_STUB_WORKERS", "1")
os.environ.setdefault("CORP_DISABLE_LLM_JUDGE", "1")
env = CorpEnvironment()
obs = env.reset(task_id=task_id)
total_reward = 0.0
terminal_reward = 0.0
invalid_action_count = 0
env_error_count = 0
reject_reason = ""
features = deliberation_features(actions)
if require_stepwise_deliberation:
reject_reason = validate_stepwise_deliberation(task_id, actions)
for idx, action_obj in enumerate(actions, start=1):
if reject_reason:
break
try:
action = CorpAction.model_validate(
normalize_action_obj(action_obj, strict=strict_json)
)
except Exception as exc:
invalid_action_count += 1
reject_reason = f"invalid_action_at_step_{idx}: {exc}"
break
obs = env.step(action)
reward = float(obs.reward or 0.0)
total_reward += reward
terminal_reward = reward
if obs.error:
env_error_count += 1
if obs.done:
break
final_swd = obs.swd
verifier = env.task.verifier(final_swd)
missed = [
str(m.get("id"))
for m in final_swd.get("milestones", []) or []
if m.get("status") == "missed"
]
if not reject_reason:
if not actions:
reject_reason = "empty_trajectory"
elif not obs.done:
reject_reason = "trajectory_did_not_terminate"
elif actions[-1].get("action_type") != "finalize" and not env.episode_metadata.get("finalized"):
reject_reason = "missing_finalize"
elif env_error_count:
reject_reason = "environment_errors"
elif strict_thresholds:
reject_reason = keep_decision(task_id, terminal_reward, verifier, missed)
status = "clean" if not reject_reason else "rejected"
return ReplayResult(
example_id=example_id,
task_id=task_id,
status=status,
reject_reason=reject_reason,
actions=actions,
steps=env.turn,
total_reward=total_reward,
terminal_reward=terminal_reward,
verifier_result=verifier,
missed_milestones=missed,
invalid_action_count=invalid_action_count,
env_error_count=env_error_count,
reasoning_steps=int(features["reasoning_steps"]),
conflict_steps=int(features["conflict_steps"]),
resolution_steps=int(features["resolution_steps"]),
phase_progression_ok=bool(features["phase_progression_ok"]),
final_swd_version=int(final_swd.get("swd_version", 0)),
final_swd=final_swd,
)
def oracle_actions(task_id: str, variant: int = 0) -> List[Dict[str, Any]]:
if task_id == "e1_launch_readiness":
rec = "NO_GO" if variant % 2 == 0 else "GO"
return [
{
"action_type": "delegate",
"agent_id": "qa_engineer",
"payload": "Report launch test status, blockers, and gate recommendation.",
},
{
"action_type": "log_reasoning",
"payload": "QA evidence is the controlling launch gate; final call should reflect blocker risk.",
},
{
"action_type": "log_decision",
"payload": f"Use QA gate evidence and finalize as {rec}.",
},
{"action_type": "finalize", "payload": rec},
]
if task_id == "m1_budget_reallocation":
phase = {
"phase_1": "Buy a constrained GPU block for the highest-priority training runs.",
"phase_2": "Expand only after finance confirms runway and measured utilization.",
"guardrail": "Cap spend, report weekly burn, and pause if runway drops below target.",
}
return [
{
"action_type": "delegate",
"agent_id": "dev_lead",
"payload": "Estimate minimum GPU capacity needed for the next model-training milestone.",
},
{
"action_type": "delegate",
"agent_id": "fpa_manager",
"payload": "State the budget, runway, and spend constraints for GPU cluster time.",
},
{
"action_type": "log_reasoning",
"payload": "The plan must balance model training urgency with budget, cost, spend, cash, runway, and burn constraints.",
},
{
"action_type": "log_conflict",
"payload": json.dumps(
{
"id": "c1",
"summary": "Engineering wants more GPU capacity than finance can approve immediately.",
"source_agents": ["dev_lead", "fpa_manager"],
}
),
},
{
"action_type": "log_resolution",
"payload": json.dumps(
{
"conflict_id": "c1",
"resolution_type": "phased_budget",
"text": "Approve a capped phase_1 GPU purchase with weekly finance review.",
}
),
},
{"action_type": "finalize", "payload": json.dumps(phase)},
]
if task_id == "h1_acquisition_defence":
# Rotating templates: paraphrase payloads while preserving verifier invariants
# (3 delegates, 2 conflicts, resolution_type, decisions mentioning runway/cash/7 month,
# final dict keys, phase progression, dense reasoning).
n = 12
v = variant % n
delegates = [
(
"Assess IP leverage and technical moat.",
"Assess cash runway and valuation ceiling.",
"Assess retention risk and people constraints.",
),
(
"Map product/IP defensibility and engineering dependency risk in the target.",
"Model valuation bands against board-approved cash and runway headroom.",
"Quantify people flight risk and retention levers for critical engineering staff.",
),
(
"Report whether technical differentiation justifies a premium vs the 2.3x bid.",
"Clarify how many months of runway remain if we stretch price or drag timing.",
"Clarify CHRO's view on 90-day people risk and hiring-market pressure.",
),
(
"Synthesize the CTO view on product moat and technical integration costs.",
"Synthesize the CFO view on the ceiling the board can defend with current cash.",
"Synthesize the CHRO view on retention, titles, and cultural integration risk.",
),
(
"CTO: outline minimum acceptable tech valuation given integration complexity.",
"CFO: outline a pricing corridor consistent with 7 month runway and board guardrails.",
"CHRO: outline retention and communication needs if diligence slips past the HR window.",
),
(
"CTO: stress-test whether acquirer can credibly match our roadmap without the team.",
"CFO: frame downside if we overpay vs observed comps and our burn profile.",
"CHRO: flag key engineers whose departure would void strategic upside from the deal.",
),
]
d0, d1, d2 = delegates[v % len(delegates)]
c1_sums = [
"CTO valuation ambition conflicts with CFO runway and cash constraints.",
"CTO's strategic premium clashes with cfo and finance on cash runway and board limits.",
"Engineering (cto) wants a high counter; finance (cfo) caps what cash runway allows.",
]
c2_sums = [
"A slow process increases CHRO retention risk for key engineering talent.",
"A drawn-out haggle raises chro and hr risk as competing offers come due.",
"chro and cto both warn: delay past the HR window erodes the engineering team.",
]
res_texts = [
"Ask above the CFO ceiling but set a fast deadline and walk-down logic.",
"Pursue a structured counter: higher opening ask with a board-mandated walk-down to 2.6x floor.",
"Use a time-boxed process: name a number above cfo’s ceiling, then step down on a defined clock.",
]
r_before_a = [
"CTO input supports a higher counter because the IP moat is meaningful.",
"The cto case implies we should not fold to 2.3x without a premium for IP.",
"Dev leadership sees differentiated tech, so a weak counter cedes leverage too early.",
]
r_after_c1 = [
"CFO input limits how long the negotiation can remain open.",
"Finance and cash runway cap how long we can posture before credibility breaks.",
"CFO: board cannot fund an endless auction with only about 7 month runway in reserve.",
]
r_runway = [
"The 7 month runway makes delay costly and should shape the deadline.",
"A 7 month cash runway means every extra week in diligence burns optionality and cash.",
"Runway and cash pressure force a firm deadline, not an open-ended beauty contest.",
]
r_retention = [
"Retention incentives are required before the market reads uncertainty.",
"chro: retention grants must land before the team interprets delay as a leadership stall.",
"hr signals that clarity on roles and comp must precede a public counter narrative.",
]
r_final = [
"Final recommendation integrates valuation, deadline, and retention plan.",
"Synthesize cto, cfo, and chro inputs into one executable counter, timeline, and people plan.",
"Close the loop: a bounded counter, a calendar-driven deadline, and a retention package.",
]
decision_line = [
"Proceed with a counter that acknowledges 7 month runway and cash limits.",
"Choose a path that fits both the 7 month cash runway and board finance constraints.",
"Commit: respect runway and cash reality while still pressing for a fair tech premium.",
]
finals = [
{
"counter_offer": "Open at 3.2x with a board-approved walk-down floor near 2.6x.",
"deadline": "Force a decision inside 45 days to preserve cash runway and reduce retention risk.",
"retention_plan": "Offer retention grants and role clarity for critical engineering leaders.",
},
{
"counter_offer": "Start at 3.15x with a staged retreat toward 2.65x if diligence stays clean.",
"deadline": "Cap negotiations at 50 days: balance hr timelines with cash runway and burn.",
"retention_plan": "Retention bonuses plus explicit reporting lines for VPs in core product.",
},
{
"counter_offer": "Signal 3.25x as the opening position with board ratified walk-down rights.",
"deadline": "Close or exit talks within 40 days; 7 month runway does not allow drift.",
"retention_plan": "Two-tier retention: cash now for chro-priority staff, earn-outs for the rest.",
},
{
"counter_offer": "Anchor at 3.1x, allow acquirer to meet near 2.7x with accelerated diligence.",
"deadline": "45-day triage: align cfo cash tests with cto and chro risk windows.",
"retention_plan": "Milestone-based retention: pay at signing, 90d, and close for key dev talent.",
},
]
final = finals[v % len(finals)]
return [
{"action_type": "delegate", "agent_id": "cto", "payload": d0},
{"action_type": "delegate", "agent_id": "cfo", "payload": d1},
{"action_type": "delegate", "agent_id": "chro", "payload": d2},
{"action_type": "log_reasoning", "payload": r_before_a[v % len(r_before_a)]},
{
"action_type": "log_conflict",
"payload": json.dumps(
{
"id": "c1",
"summary": c1_sums[v % len(c1_sums)],
"source_agents": ["cto", "cfo"],
}
),
},
{"action_type": "log_reasoning", "payload": r_after_c1[v % len(r_after_c1)]},
{
"action_type": "log_conflict",
"payload": json.dumps(
{
"id": "c2",
"summary": c2_sums[v % len(c2_sums)],
"source_agents": ["chro", "cto"],
}
),
},
{
"action_type": "log_resolution",
"payload": json.dumps(
{
"conflict_id": "c1",
"resolution_type": "bounded_counter",
"text": res_texts[v % len(res_texts)],
}
),
},
{"action_type": "advance_phase", "payload": "analysis"},
{"action_type": "log_reasoning", "payload": r_runway[v % len(r_runway)]},
{"action_type": "advance_phase", "payload": "decision"},
{"action_type": "log_decision", "payload": decision_line[v % len(decision_line)]},
{"action_type": "log_reasoning", "payload": r_retention[v % len(r_retention)]},
{"action_type": "advance_phase", "payload": "execution"},
{"action_type": "log_reasoning", "payload": r_final[v % len(r_final)]},
{"action_type": "finalize", "payload": json.dumps(final)},
]
raise ValueError(f"unknown task_id: {task_id}")
|