buildai-cli 0.3.65__tar.gz → 0.3.66__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.
Files changed (35) hide show
  1. {buildai_cli-0.3.65 → buildai_cli-0.3.66}/PKG-INFO +1 -1
  2. {buildai_cli-0.3.65 → buildai_cli-0.3.66}/cli/commands/processing.py +14 -0
  3. {buildai_cli-0.3.65 → buildai_cli-0.3.66}/pyproject.toml +1 -1
  4. {buildai_cli-0.3.65 → buildai_cli-0.3.66}/.gitignore +0 -0
  5. {buildai_cli-0.3.65 → buildai_cli-0.3.66}/AGENTS.md +0 -0
  6. {buildai_cli-0.3.65 → buildai_cli-0.3.66}/CLAUDE.md +0 -0
  7. {buildai_cli-0.3.65 → buildai_cli-0.3.66}/buildai_bootstrap.py +0 -0
  8. {buildai_cli-0.3.65 → buildai_cli-0.3.66}/cli/__init__.py +0 -0
  9. {buildai_cli-0.3.65 → buildai_cli-0.3.66}/cli/_has_core.py +0 -0
  10. {buildai_cli-0.3.65 → buildai_cli-0.3.66}/cli/auth_local.py +0 -0
  11. {buildai_cli-0.3.65 → buildai_cli-0.3.66}/cli/commands/__init__.py +0 -0
  12. {buildai_cli-0.3.65 → buildai_cli-0.3.66}/cli/commands/api_proxy.py +0 -0
  13. {buildai_cli-0.3.65 → buildai_cli-0.3.66}/cli/commands/auth.py +0 -0
  14. {buildai_cli-0.3.65 → buildai_cli-0.3.66}/cli/commands/db/__init__.py +0 -0
  15. {buildai_cli-0.3.65 → buildai_cli-0.3.66}/cli/commands/db/broker.py +0 -0
  16. {buildai_cli-0.3.65 → buildai_cli-0.3.66}/cli/commands/db/common.py +0 -0
  17. {buildai_cli-0.3.65 → buildai_cli-0.3.66}/cli/commands/db/migrate.py +0 -0
  18. {buildai_cli-0.3.65 → buildai_cli-0.3.66}/cli/commands/db/query.py +0 -0
  19. {buildai_cli-0.3.65 → buildai_cli-0.3.66}/cli/commands/db/schema.py +0 -0
  20. {buildai_cli-0.3.65 → buildai_cli-0.3.66}/cli/commands/db/status.py +0 -0
  21. {buildai_cli-0.3.65 → buildai_cli-0.3.66}/cli/commands/dev.py +0 -0
  22. {buildai_cli-0.3.65 → buildai_cli-0.3.66}/cli/commands/doctor.py +0 -0
  23. {buildai_cli-0.3.65 → buildai_cli-0.3.66}/cli/commands/gigcamera.py +0 -0
  24. {buildai_cli-0.3.65 → buildai_cli-0.3.66}/cli/config.py +0 -0
  25. {buildai_cli-0.3.65 → buildai_cli-0.3.66}/cli/console.py +0 -0
  26. {buildai_cli-0.3.65 → buildai_cli-0.3.66}/cli/context.py +0 -0
  27. {buildai_cli-0.3.65 → buildai_cli-0.3.66}/cli/db_broker.py +0 -0
  28. {buildai_cli-0.3.65 → buildai_cli-0.3.66}/cli/guard.py +0 -0
  29. {buildai_cli-0.3.65 → buildai_cli-0.3.66}/cli/internal_api.py +0 -0
  30. {buildai_cli-0.3.65 → buildai_cli-0.3.66}/cli/main.py +0 -0
  31. {buildai_cli-0.3.65 → buildai_cli-0.3.66}/cli/nl_query/__init__.py +0 -0
  32. {buildai_cli-0.3.65 → buildai_cli-0.3.66}/cli/nl_query/dataset_tools.py +0 -0
  33. {buildai_cli-0.3.65 → buildai_cli-0.3.66}/cli/ops_init.py +0 -0
  34. {buildai_cli-0.3.65 → buildai_cli-0.3.66}/cli/output.py +0 -0
  35. {buildai_cli-0.3.65 → buildai_cli-0.3.66}/cli/pagination.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: buildai-cli
3
- Version: 0.3.65
3
+ Version: 0.3.66
4
4
  Summary: Build AI CLI (Typer)
5
5
  Requires-Python: >=3.11
6
6
  Requires-Dist: httpx>=0.27.0
@@ -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
  },
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "buildai-cli"
7
- version = "0.3.65"
7
+ version = "0.3.66"
8
8
  description = "Build AI CLI (Typer)"
9
9
  requires-python = ">=3.11"
10
10
  dependencies = [
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes