buildai-cli 0.3.64__tar.gz → 0.3.65__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.64 → buildai_cli-0.3.65}/PKG-INFO +1 -1
- {buildai_cli-0.3.64 → buildai_cli-0.3.65}/cli/commands/processing.py +3 -3
- {buildai_cli-0.3.64 → buildai_cli-0.3.65}/pyproject.toml +1 -1
- {buildai_cli-0.3.64 → buildai_cli-0.3.65}/.gitignore +0 -0
- {buildai_cli-0.3.64 → buildai_cli-0.3.65}/AGENTS.md +0 -0
- {buildai_cli-0.3.64 → buildai_cli-0.3.65}/CLAUDE.md +0 -0
- {buildai_cli-0.3.64 → buildai_cli-0.3.65}/buildai_bootstrap.py +0 -0
- {buildai_cli-0.3.64 → buildai_cli-0.3.65}/cli/__init__.py +0 -0
- {buildai_cli-0.3.64 → buildai_cli-0.3.65}/cli/_has_core.py +0 -0
- {buildai_cli-0.3.64 → buildai_cli-0.3.65}/cli/auth_local.py +0 -0
- {buildai_cli-0.3.64 → buildai_cli-0.3.65}/cli/commands/__init__.py +0 -0
- {buildai_cli-0.3.64 → buildai_cli-0.3.65}/cli/commands/api_proxy.py +0 -0
- {buildai_cli-0.3.64 → buildai_cli-0.3.65}/cli/commands/auth.py +0 -0
- {buildai_cli-0.3.64 → buildai_cli-0.3.65}/cli/commands/db/__init__.py +0 -0
- {buildai_cli-0.3.64 → buildai_cli-0.3.65}/cli/commands/db/broker.py +0 -0
- {buildai_cli-0.3.64 → buildai_cli-0.3.65}/cli/commands/db/common.py +0 -0
- {buildai_cli-0.3.64 → buildai_cli-0.3.65}/cli/commands/db/migrate.py +0 -0
- {buildai_cli-0.3.64 → buildai_cli-0.3.65}/cli/commands/db/query.py +0 -0
- {buildai_cli-0.3.64 → buildai_cli-0.3.65}/cli/commands/db/schema.py +0 -0
- {buildai_cli-0.3.64 → buildai_cli-0.3.65}/cli/commands/db/status.py +0 -0
- {buildai_cli-0.3.64 → buildai_cli-0.3.65}/cli/commands/dev.py +0 -0
- {buildai_cli-0.3.64 → buildai_cli-0.3.65}/cli/commands/doctor.py +0 -0
- {buildai_cli-0.3.64 → buildai_cli-0.3.65}/cli/commands/gigcamera.py +0 -0
- {buildai_cli-0.3.64 → buildai_cli-0.3.65}/cli/config.py +0 -0
- {buildai_cli-0.3.64 → buildai_cli-0.3.65}/cli/console.py +0 -0
- {buildai_cli-0.3.64 → buildai_cli-0.3.65}/cli/context.py +0 -0
- {buildai_cli-0.3.64 → buildai_cli-0.3.65}/cli/db_broker.py +0 -0
- {buildai_cli-0.3.64 → buildai_cli-0.3.65}/cli/guard.py +0 -0
- {buildai_cli-0.3.64 → buildai_cli-0.3.65}/cli/internal_api.py +0 -0
- {buildai_cli-0.3.64 → buildai_cli-0.3.65}/cli/main.py +0 -0
- {buildai_cli-0.3.64 → buildai_cli-0.3.65}/cli/nl_query/__init__.py +0 -0
- {buildai_cli-0.3.64 → buildai_cli-0.3.65}/cli/nl_query/dataset_tools.py +0 -0
- {buildai_cli-0.3.64 → buildai_cli-0.3.65}/cli/ops_init.py +0 -0
- {buildai_cli-0.3.64 → buildai_cli-0.3.65}/cli/output.py +0 -0
- {buildai_cli-0.3.64 → buildai_cli-0.3.65}/cli/pagination.py +0 -0
|
@@ -330,14 +330,14 @@ def launch_egoexo_pose_2d_batch(
|
|
|
330
330
|
limit: int = typer.Option(10, "--limit", min=1, max=200),
|
|
331
331
|
run_key: str = typer.Option("aligned-v1", "--run-key", help="Pose2D run key to drain."),
|
|
332
332
|
task_count: int = typer.Option(
|
|
333
|
-
|
|
333
|
+
8,
|
|
334
334
|
"--task-count",
|
|
335
335
|
min=1,
|
|
336
336
|
max=1000,
|
|
337
337
|
help="Cloud Batch tasks per episode job.",
|
|
338
338
|
),
|
|
339
339
|
execution_profile_key: str = typer.Option(
|
|
340
|
-
"gcp.us.
|
|
340
|
+
"gcp.us.gpu_a100",
|
|
341
341
|
"--execution-profile-key",
|
|
342
342
|
help="Cloud Batch execution profile used for each episode job.",
|
|
343
343
|
),
|
|
@@ -350,7 +350,7 @@ def launch_egoexo_pose_2d_batch(
|
|
|
350
350
|
dry_run: bool = typer.Option(False, "--dry-run", help="Preview ready work without leasing."),
|
|
351
351
|
write: bool = typer.Option(False, "--write", help="Launch jobs. Omit for dry-run."),
|
|
352
352
|
) -> None:
|
|
353
|
-
"""Launch one
|
|
353
|
+
"""Launch one episode-owned Cloud Batch Pose2D job per ready EgoExo episode."""
|
|
354
354
|
if provisioning_model not in {"standard", "spot"}:
|
|
355
355
|
error("--provisioning-model must be one of: standard, spot")
|
|
356
356
|
raise typer.Exit(1)
|
|
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
|