feat(ai): replay platform probe worker receipts
Some checks failed
CD Pipeline / deploy (push) Has been cancelled

This commit is contained in:
ogt
2026-07-10 10:22:20 +08:00
parent d40646b716
commit 6edae04e62
8 changed files with 376 additions and 21 deletions

View File

@@ -26,6 +26,10 @@ def main() -> int:
"--artifact-root",
help="PixelRAG visual evidence artifact root預設使用 production/container 設定。",
)
parser.add_argument(
"--platform-probe-worker-receipt-root",
help="PixelRAG platform probe worker receipt root預設使用 production/container 設定。",
)
parser.add_argument(
"--platform",
action="append",
@@ -48,6 +52,7 @@ def main() -> int:
payload = build_pixelrag_rag_candidate_replay_readback(
artifact_root=args.artifact_root,
platform_probe_worker_receipt_root=args.platform_probe_worker_receipt_root,
platform=tuple(args.platforms or ()),
max_age_hours=args.max_age_hours,
limit=args.limit,