buildai-cli 0.3.71__tar.gz → 0.3.72__tar.gz
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.
- {buildai_cli-0.3.71 → buildai_cli-0.3.72}/PKG-INFO +1 -1
- {buildai_cli-0.3.71 → buildai_cli-0.3.72}/cli/commands/processing.py +12 -2
- {buildai_cli-0.3.71 → buildai_cli-0.3.72}/pyproject.toml +1 -1
- {buildai_cli-0.3.71 → buildai_cli-0.3.72}/.gitignore +0 -0
- {buildai_cli-0.3.71 → buildai_cli-0.3.72}/AGENTS.md +0 -0
- {buildai_cli-0.3.71 → buildai_cli-0.3.72}/CLAUDE.md +0 -0
- {buildai_cli-0.3.71 → buildai_cli-0.3.72}/buildai_bootstrap.py +0 -0
- {buildai_cli-0.3.71 → buildai_cli-0.3.72}/cli/__init__.py +0 -0
- {buildai_cli-0.3.71 → buildai_cli-0.3.72}/cli/_has_core.py +0 -0
- {buildai_cli-0.3.71 → buildai_cli-0.3.72}/cli/auth_local.py +0 -0
- {buildai_cli-0.3.71 → buildai_cli-0.3.72}/cli/commands/__init__.py +0 -0
- {buildai_cli-0.3.71 → buildai_cli-0.3.72}/cli/commands/api_proxy.py +0 -0
- {buildai_cli-0.3.71 → buildai_cli-0.3.72}/cli/commands/auth.py +0 -0
- {buildai_cli-0.3.71 → buildai_cli-0.3.72}/cli/commands/db/__init__.py +0 -0
- {buildai_cli-0.3.71 → buildai_cli-0.3.72}/cli/commands/db/broker.py +0 -0
- {buildai_cli-0.3.71 → buildai_cli-0.3.72}/cli/commands/db/common.py +0 -0
- {buildai_cli-0.3.71 → buildai_cli-0.3.72}/cli/commands/db/migrate.py +0 -0
- {buildai_cli-0.3.71 → buildai_cli-0.3.72}/cli/commands/db/query.py +0 -0
- {buildai_cli-0.3.71 → buildai_cli-0.3.72}/cli/commands/db/schema.py +0 -0
- {buildai_cli-0.3.71 → buildai_cli-0.3.72}/cli/commands/db/status.py +0 -0
- {buildai_cli-0.3.71 → buildai_cli-0.3.72}/cli/commands/db/tunnel.py +0 -0
- {buildai_cli-0.3.71 → buildai_cli-0.3.72}/cli/commands/dev.py +0 -0
- {buildai_cli-0.3.71 → buildai_cli-0.3.72}/cli/commands/doctor.py +0 -0
- {buildai_cli-0.3.71 → buildai_cli-0.3.72}/cli/commands/gigcamera.py +0 -0
- {buildai_cli-0.3.71 → buildai_cli-0.3.72}/cli/config.py +0 -0
- {buildai_cli-0.3.71 → buildai_cli-0.3.72}/cli/console.py +0 -0
- {buildai_cli-0.3.71 → buildai_cli-0.3.72}/cli/context.py +0 -0
- {buildai_cli-0.3.71 → buildai_cli-0.3.72}/cli/db_broker.py +0 -0
- {buildai_cli-0.3.71 → buildai_cli-0.3.72}/cli/guard.py +0 -0
- {buildai_cli-0.3.71 → buildai_cli-0.3.72}/cli/internal_api.py +0 -0
- {buildai_cli-0.3.71 → buildai_cli-0.3.72}/cli/main.py +0 -0
- {buildai_cli-0.3.71 → buildai_cli-0.3.72}/cli/nl_query/__init__.py +0 -0
- {buildai_cli-0.3.71 → buildai_cli-0.3.72}/cli/nl_query/dataset_tools.py +0 -0
- {buildai_cli-0.3.71 → buildai_cli-0.3.72}/cli/ops_init.py +0 -0
- {buildai_cli-0.3.71 → buildai_cli-0.3.72}/cli/output.py +0 -0
- {buildai_cli-0.3.71 → buildai_cli-0.3.72}/cli/pagination.py +0 -0
|
@@ -348,7 +348,7 @@ def tick_egoexo_stage_jobs(
|
|
|
348
348
|
|
|
349
349
|
@stage_jobs_app.command("launch-egoexo-pose-2d-modal")
|
|
350
350
|
def launch_egoexo_pose_2d_modal(
|
|
351
|
-
limit: int = typer.Option(
|
|
351
|
+
limit: int = typer.Option(500, "--limit", min=1, max=1000),
|
|
352
352
|
run_key: str = typer.Option(..., "--run-key", help="Pose2D run key to drain."),
|
|
353
353
|
task_count: int = typer.Option(
|
|
354
354
|
500,
|
|
@@ -367,11 +367,21 @@ def launch_egoexo_pose_2d_modal(
|
|
|
367
367
|
"--store-heatmaps",
|
|
368
368
|
help="Persist pre-decoded Sapiens heatmap logits as optional artifacts.",
|
|
369
369
|
),
|
|
370
|
+
modal_spawn_parallelism: int | None = typer.Option(
|
|
371
|
+
None,
|
|
372
|
+
"--modal-spawn-parallelism",
|
|
373
|
+
min=1,
|
|
374
|
+
max=1000,
|
|
375
|
+
help="Maximum concurrent Modal spawn calls for this launcher request.",
|
|
376
|
+
),
|
|
370
377
|
lease_seconds: int = typer.Option(24 * 60 * 60, "--lease-seconds", min=600),
|
|
371
378
|
dry_run: bool = typer.Option(False, "--dry-run", help="Preview ready work without leasing."),
|
|
372
379
|
write: bool = typer.Option(False, "--write", help="Launch jobs. Omit for dry-run."),
|
|
373
380
|
) -> None:
|
|
374
381
|
"""Launch Modal-backed Sapiens Pose2D workers for ready EgoExo episodes."""
|
|
382
|
+
config: dict[str, object] = {"store_heatmaps": store_heatmaps}
|
|
383
|
+
if modal_spawn_parallelism is not None:
|
|
384
|
+
config["modal_spawn_parallelism"] = modal_spawn_parallelism
|
|
375
385
|
_request(
|
|
376
386
|
"/v1/processing/stage-jobs/egoexo/pose-2d/launch-modal",
|
|
377
387
|
method="POST",
|
|
@@ -380,7 +390,7 @@ def launch_egoexo_pose_2d_modal(
|
|
|
380
390
|
"run_key": run_key,
|
|
381
391
|
"task_count": task_count,
|
|
382
392
|
"execution_profile_key": execution_profile_key,
|
|
383
|
-
"config":
|
|
393
|
+
"config": config,
|
|
384
394
|
"lease_seconds": lease_seconds,
|
|
385
395
|
"dry_run": dry_run or not write,
|
|
386
396
|
},
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|