@hunyed15/codecgc 0.2.12 → 0.2.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -477,7 +477,7 @@ async def codecgc_build(
|
|
|
477
477
|
step_number: Annotated[int | None, "Optional explicit step number."] = None,
|
|
478
478
|
checklist_file: Annotated[str, "Optional checklist file path."] = "",
|
|
479
479
|
audit_root: Annotated[str, "Optional audit root path."] = "",
|
|
480
|
-
timeout_seconds: Annotated[int, "Execution timeout in seconds."] =
|
|
480
|
+
timeout_seconds: Annotated[int, "Execution timeout in seconds."] = 600,
|
|
481
481
|
session_id: Annotated[str, "Optional reusable executor session id."] = "",
|
|
482
482
|
dry_run: Annotated[bool, "Avoid real executor dispatch."] = False,
|
|
483
483
|
return_all_messages: Annotated[bool, "Return executor event logs when available."] = False,
|
|
@@ -508,7 +508,7 @@ async def codecgc_fix(
|
|
|
508
508
|
step_number: Annotated[int | None, "Optional explicit step number."] = None,
|
|
509
509
|
checklist_file: Annotated[str, "Optional checklist file path."] = "",
|
|
510
510
|
audit_root: Annotated[str, "Optional audit root path."] = "",
|
|
511
|
-
timeout_seconds: Annotated[int, "Execution timeout in seconds."] =
|
|
511
|
+
timeout_seconds: Annotated[int, "Execution timeout in seconds."] = 600,
|
|
512
512
|
session_id: Annotated[str, "Optional reusable executor session id."] = "",
|
|
513
513
|
dry_run: Annotated[bool, "Avoid real executor dispatch."] = False,
|
|
514
514
|
return_all_messages: Annotated[bool, "Return executor event logs when available."] = False,
|
|
@@ -543,7 +543,7 @@ async def codecgc_test(
|
|
|
543
543
|
step_number: Annotated[int | None, "Optional explicit step number."] = None,
|
|
544
544
|
checklist_file: Annotated[str, "Optional checklist file path."] = "",
|
|
545
545
|
audit_root: Annotated[str, "Optional audit root path."] = "",
|
|
546
|
-
timeout_seconds: Annotated[int, "Execution timeout in seconds."] =
|
|
546
|
+
timeout_seconds: Annotated[int, "Execution timeout in seconds."] = 600,
|
|
547
547
|
session_id: Annotated[str, "Optional reusable executor session id."] = "",
|
|
548
548
|
dry_run: Annotated[bool, "Avoid real executor dispatch."] = False,
|
|
549
549
|
return_all_messages: Annotated[bool, "Return executor event logs when available."] = False,
|