buildai-cli 0.3.65__tar.gz → 0.3.67__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.65 → buildai_cli-0.3.67}/PKG-INFO +1 -1
- {buildai_cli-0.3.65 → buildai_cli-0.3.67}/cli/commands/processing.py +17 -3
- {buildai_cli-0.3.65 → buildai_cli-0.3.67}/pyproject.toml +1 -1
- {buildai_cli-0.3.65 → buildai_cli-0.3.67}/.gitignore +0 -0
- {buildai_cli-0.3.65 → buildai_cli-0.3.67}/AGENTS.md +0 -0
- {buildai_cli-0.3.65 → buildai_cli-0.3.67}/CLAUDE.md +0 -0
- {buildai_cli-0.3.65 → buildai_cli-0.3.67}/buildai_bootstrap.py +0 -0
- {buildai_cli-0.3.65 → buildai_cli-0.3.67}/cli/__init__.py +0 -0
- {buildai_cli-0.3.65 → buildai_cli-0.3.67}/cli/_has_core.py +0 -0
- {buildai_cli-0.3.65 → buildai_cli-0.3.67}/cli/auth_local.py +0 -0
- {buildai_cli-0.3.65 → buildai_cli-0.3.67}/cli/commands/__init__.py +0 -0
- {buildai_cli-0.3.65 → buildai_cli-0.3.67}/cli/commands/api_proxy.py +0 -0
- {buildai_cli-0.3.65 → buildai_cli-0.3.67}/cli/commands/auth.py +0 -0
- {buildai_cli-0.3.65 → buildai_cli-0.3.67}/cli/commands/db/__init__.py +0 -0
- {buildai_cli-0.3.65 → buildai_cli-0.3.67}/cli/commands/db/broker.py +0 -0
- {buildai_cli-0.3.65 → buildai_cli-0.3.67}/cli/commands/db/common.py +0 -0
- {buildai_cli-0.3.65 → buildai_cli-0.3.67}/cli/commands/db/migrate.py +0 -0
- {buildai_cli-0.3.65 → buildai_cli-0.3.67}/cli/commands/db/query.py +0 -0
- {buildai_cli-0.3.65 → buildai_cli-0.3.67}/cli/commands/db/schema.py +0 -0
- {buildai_cli-0.3.65 → buildai_cli-0.3.67}/cli/commands/db/status.py +0 -0
- {buildai_cli-0.3.65 → buildai_cli-0.3.67}/cli/commands/dev.py +0 -0
- {buildai_cli-0.3.65 → buildai_cli-0.3.67}/cli/commands/doctor.py +0 -0
- {buildai_cli-0.3.65 → buildai_cli-0.3.67}/cli/commands/gigcamera.py +0 -0
- {buildai_cli-0.3.65 → buildai_cli-0.3.67}/cli/config.py +0 -0
- {buildai_cli-0.3.65 → buildai_cli-0.3.67}/cli/console.py +0 -0
- {buildai_cli-0.3.65 → buildai_cli-0.3.67}/cli/context.py +0 -0
- {buildai_cli-0.3.65 → buildai_cli-0.3.67}/cli/db_broker.py +0 -0
- {buildai_cli-0.3.65 → buildai_cli-0.3.67}/cli/guard.py +0 -0
- {buildai_cli-0.3.65 → buildai_cli-0.3.67}/cli/internal_api.py +0 -0
- {buildai_cli-0.3.65 → buildai_cli-0.3.67}/cli/main.py +0 -0
- {buildai_cli-0.3.65 → buildai_cli-0.3.67}/cli/nl_query/__init__.py +0 -0
- {buildai_cli-0.3.65 → buildai_cli-0.3.67}/cli/nl_query/dataset_tools.py +0 -0
- {buildai_cli-0.3.65 → buildai_cli-0.3.67}/cli/ops_init.py +0 -0
- {buildai_cli-0.3.65 → buildai_cli-0.3.67}/cli/output.py +0 -0
- {buildai_cli-0.3.65 → buildai_cli-0.3.67}/cli/pagination.py +0 -0
|
@@ -194,7 +194,7 @@ def queue_reprioritize(
|
|
|
194
194
|
@scheduler_app.command("tick")
|
|
195
195
|
def scheduler_tick(
|
|
196
196
|
pipeline_key: str = typer.Option("egoexo", "--pipeline-key", help="Pipeline key."),
|
|
197
|
-
run_key: str = typer.Option(
|
|
197
|
+
run_key: str | None = typer.Option(None, "--run-key", help="Pipeline run key."),
|
|
198
198
|
stage_key: str | None = typer.Option(None, "--stage-key", help="Single stage to tick."),
|
|
199
199
|
stages: str | None = typer.Option(
|
|
200
200
|
None,
|
|
@@ -292,7 +292,7 @@ def scheduler_tick(
|
|
|
292
292
|
@stage_jobs_app.command("launch-egoexo-prepare-batch")
|
|
293
293
|
def launch_egoexo_prepare_batch(
|
|
294
294
|
limit: int = typer.Option(10, "--limit", min=1, max=200),
|
|
295
|
-
run_key: str = typer.Option(
|
|
295
|
+
run_key: str = typer.Option(..., "--run-key", help="Prepare run key to drain."),
|
|
296
296
|
execution_profile_key: str = typer.Option(
|
|
297
297
|
"gcp.us.media_l4",
|
|
298
298
|
"--execution-profile-key",
|
|
@@ -328,7 +328,7 @@ def launch_egoexo_prepare_batch(
|
|
|
328
328
|
@stage_jobs_app.command("launch-egoexo-pose-2d-batch")
|
|
329
329
|
def launch_egoexo_pose_2d_batch(
|
|
330
330
|
limit: int = typer.Option(10, "--limit", min=1, max=200),
|
|
331
|
-
run_key: str = typer.Option(
|
|
331
|
+
run_key: str = typer.Option(..., "--run-key", help="Pose2D run key to drain."),
|
|
332
332
|
task_count: int = typer.Option(
|
|
333
333
|
8,
|
|
334
334
|
"--task-count",
|
|
@@ -346,6 +346,18 @@ def launch_egoexo_pose_2d_batch(
|
|
|
346
346
|
"--provisioning-model",
|
|
347
347
|
help="Cloud Batch provisioning model: standard or spot.",
|
|
348
348
|
),
|
|
349
|
+
max_active_jobs: int | None = typer.Option(
|
|
350
|
+
None,
|
|
351
|
+
"--max-active-jobs",
|
|
352
|
+
min=1,
|
|
353
|
+
max=1000,
|
|
354
|
+
help="Maximum active episode Batch jobs for this execution profile.",
|
|
355
|
+
),
|
|
356
|
+
store_heatmaps: bool = typer.Option(
|
|
357
|
+
False,
|
|
358
|
+
"--store-heatmaps",
|
|
359
|
+
help="Persist pre-decoded Sapiens heatmap logits as optional artifacts.",
|
|
360
|
+
),
|
|
349
361
|
lease_seconds: int = typer.Option(24 * 60 * 60, "--lease-seconds", min=600),
|
|
350
362
|
dry_run: bool = typer.Option(False, "--dry-run", help="Preview ready work without leasing."),
|
|
351
363
|
write: bool = typer.Option(False, "--write", help="Launch jobs. Omit for dry-run."),
|
|
@@ -363,6 +375,8 @@ def launch_egoexo_pose_2d_batch(
|
|
|
363
375
|
"task_count": task_count,
|
|
364
376
|
"execution_profile_key": execution_profile_key,
|
|
365
377
|
"provisioning_model": provisioning_model,
|
|
378
|
+
"max_active_jobs": max_active_jobs,
|
|
379
|
+
"config": {"store_heatmaps": store_heatmaps},
|
|
366
380
|
"lease_seconds": lease_seconds,
|
|
367
381
|
"dry_run": dry_run or not write,
|
|
368
382
|
},
|
|
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
|