armnet-core API Reference¶
armnet_core
¶
Shared wire types for the armnet platform.
Single source of truth for everything that crosses a component boundary (orchestrator HTTP API request/response bodies, NATS message envelopes, runtime SDK return values).
TELEOP_EVENTS
module-attribute
¶
TELEOP_EVENTS = (TELEOP_EVENT_NEXT_EPISODE, TELEOP_EVENT_RERECORD_EPISODE, TELEOP_EVENT_STOP_RECORDING)
TerminalStatus
module-attribute
¶
TerminalStatus = frozenset({JobStatus.SUCCEEDED, JobStatus.FAILED, JobStatus.TIMEOUT, JobStatus.CANCELLED})
CellRuntimeStatus
¶
Bases: str, Enum
Current availability state for a robot cell.
Source code in core/src/armnet_core/models.py
56 57 58 59 60 61 | |
CellStatus
¶
Bases: BaseModel
Current status for one cell as reported by recent heartbeats.
Source code in core/src/armnet_core/models.py
323 324 325 326 327 328 329 330 331 | |
CellStatusSummary
¶
Bases: BaseModel
Aggregate availability for an embodiment, optionally scoped to a task.
task is None when the summary aggregates across every task of the
embodiment (used to answer "is any cell of this embodiment available?" for
task-less jobs).
Source code in core/src/armnet_core/models.py
334 335 336 337 338 339 340 341 342 343 344 345 346 | |
EmbodimentInfo
¶
Bases: BaseModel
One known embodiment, as stored in the orchestrator database.
Source code in core/src/armnet_core/models.py
590 591 592 593 594 | |
EmbodimentList
¶
Bases: BaseModel
The set of embodiments the platform currently accepts (GET /embodiments).
Source code in core/src/armnet_core/models.py
597 598 599 600 | |
embodiments
class-attribute
instance-attribute
¶
embodiments: list[EmbodimentInfo] = Field(default_factory=list)
Job
¶
Bases: BaseModel
The orchestrator's view of a job (response body of GET /jobs/{id}).
Source code in core/src/armnet_core/models.py
511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 | |
created_at
class-attribute
instance-attribute
¶
created_at: datetime = Field(default_factory=_utcnow)
updated_at
class-attribute
instance-attribute
¶
updated_at: datetime = Field(default_factory=_utcnow)
cell_id
class-attribute
instance-attribute
¶
cell_id: Optional[str] = Field(default=None, description='ID of the cell that picked up the job, set on dispatch.')
dispatched
class-attribute
instance-attribute
¶
dispatched: Optional[bool] = Field(default=None, description="Only set on the POST /jobs response: True if the job was dispatched to a cell immediately, False if it was accepted but queued (no matching cell was free). None on all other responses. Clients can use this to decide whether to wait for logs/result or just report 'queued'.")
is_terminal
¶
is_terminal() -> bool
Source code in core/src/armnet_core/models.py
534 535 | |
JobResult
¶
Bases: BaseModel
Terminal result published by a cell on the results subject.
Also returned (embedded in :class:Job) by GET /jobs/{id} once the
job is in a terminal state.
Source code in core/src/armnet_core/models.py
399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 | |
status
class-attribute
instance-attribute
¶
status: JobStatus = Field(..., description='One of the terminal statuses (succeeded/failed/timeout/cancelled).')
exit_code
class-attribute
instance-attribute
¶
exit_code: Optional[int] = Field(default=None, description='Container process exit code if the container ran to completion.')
stdout
class-attribute
instance-attribute
¶
stdout: str = Field(default='', description='Captured container stdout.')
stderr
class-attribute
instance-attribute
¶
stderr: str = Field(default='', description='Captured container stderr.')
error
class-attribute
instance-attribute
¶
error: Optional[str] = Field(default=None, description="Short, infra-side reason this job didn't run user code to completion: image pull failure, docker error, timeout, etc. Mutually exclusive with `traceback` in practice (one is a platform failure, the other is a user-code failure).")
traceback
class-attribute
instance-attribute
¶
traceback: Optional[str] = Field(default=None, description="Python traceback from the customer's `@main`-decorated function if it raised. Extracted by the cell from the `[armnet:traceback]:json` marker line in stdout. Capped at ~64 KiB on the cell side; the full untruncated traceback is also in `stderr` for power users. None for successful jobs and for infra-side failures (those go in `error` instead).")
return_value
class-attribute
instance-attribute
¶
return_value: Optional[Any] = Field(default=None, description="Value returned by the customer's `@main`-decorated function. Extracted by the cell from the marker line that the `armnet-runtime` entrypoint prints to stdout. None if the function returned None or did not run to completion.")
raise_for_status
¶
raise_for_status() -> None
Raise :class:RemoteExecutionError iff this result isn't SUCCEEDED.
The httpx-style "opt-in raising" pattern. Use it when you'd rather
bail than branch on result.status::
result = execute(...)
result.raise_for_status()
do_thing(result.return_value)
For successful results this is a no-op.
Source code in core/src/armnet_core/models.py
442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 | |
JobSpec
¶
Bases: BaseModel
The fields a client supplies when creating a job.
This is the body of POST /jobs. The orchestrator wraps it into a
:class:Job (assigning id, status, timestamps) before
persisting.
Source code in core/src/armnet_core/models.py
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 | |
image
class-attribute
instance-attribute
¶
image: str = Field(..., description='Fully-qualified container image reference, e.g. `ghcr.io/my-org/my-image:tag` or `my-image:latest` for local M0.5.')
args
class-attribute
instance-attribute
¶
args: dict[str, Any] = Field(default_factory=dict, description="Keyword arguments passed to the customer's @main-decorated function as `ctx.args`. JSON-encoded into the `ARMNET_ARGS` env var by the cell; decoded by the `armnet-runtime` entrypoint before calling user code. Must be JSON-serialisable.")
embodiment
class-attribute
instance-attribute
¶
embodiment: Embodiment = Field(..., description='Required robot embodiment. The orchestrator routes the job onto the NATS subject for this embodiment+task pair, where the matching cell picks it up.')
task
class-attribute
instance-attribute
¶
task: Optional[Task] = Field(default=None, description='Optional task. When set, only cells configured for this (embodiment, task) pair run the job. When omitted, any cell of the embodiment may pick it up regardless of its configured task.')
timeout_seconds
class-attribute
instance-attribute
¶
timeout_seconds: int = Field(default=120, ge=1, description='Wall-clock cap on container execution.')
secrets
class-attribute
instance-attribute
¶
secrets: dict[str, str] = Field(default_factory=dict, description="Mapping of environment variable name to user secret name. Example: {'HF_TOKEN': 'huggingface-token'} resolves the authenticated user's secret and injects it as HF_TOKEN.")
detach
class-attribute
instance-attribute
¶
detach: bool = Field(default=False, description='If false, losing the client log WebSocket requests graceful job cancellation. If true, the job keeps running after client disconnect.')
username
class-attribute
instance-attribute
¶
username: Optional[str] = Field(default=None, description='Authenticated armnet username. Set by the orchestrator from the API key; clients should not rely on supplied values being preserved.')
JobStatus
¶
Bases: str, Enum
Job lifecycle states.
Mirrors the design doc §3.5 state machine. A job is created SUBMITTED;
if the target cell isn't available it becomes QUEUED (run when the cell
next comes online — the
scheduler is a later phase), otherwise it is DISPATCHED to a cell, then
RUNNING, then a terminal state.
Source code in core/src/armnet_core/models.py
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | |
JobStatusTransition
¶
Bases: BaseModel
One entry in a job's status-change audit trail.
Emitted by the orchestrator's GET /jobs/{id}/status-transitions so users
can trace a job's lifecycle. detail carries optional context (e.g. the
cell id on dispatch/run, or the failure message on a terminal state).
Source code in core/src/armnet_core/models.py
483 484 485 486 487 488 489 490 491 492 493 | |
RegistryCredentials
¶
Bases: BaseModel
Short-lived credentials for pushing to the platform's image registry.
Returned by POST /registry/credentials. The orchestrator mints
these on demand by impersonating a dedicated image-pusher service
account. Customers never need to know about Google Cloud, IAM, or
service accounts — they just Image.build(...).push().
The password is an OAuth2 access token valid for ~1 hour. The
SDK caches it on disk and refreshes within 5 minutes of expiry.
Source code in core/src/armnet_core/models.py
538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 | |
registry
class-attribute
instance-attribute
¶
registry: str = Field(..., description="Registry hostname, e.g. 'europe-north1-docker.pkg.dev'.")
namespace
class-attribute
instance-attribute
¶
namespace: str = Field(..., description="Path under the registry the customer is allowed to push to: '<project>/<repo>/<customer-id>'. The full image ref is '<registry>/<namespace>/<image-name>:<tag>'.")
username
class-attribute
instance-attribute
¶
username: str = Field(..., description="docker login username. Always 'oauth2accesstoken' for AR.")
password
class-attribute
instance-attribute
¶
password: str = Field(..., description='OAuth2 access token. Treat as a secret — valid for ~1 hour and grants write access to the namespace above.')
expires_at
class-attribute
instance-attribute
¶
expires_at: datetime = Field(..., description='Wall-clock time at which the password becomes invalid.')
RemoteExecutionError
¶
Bases: RuntimeError
Raised by :meth:JobResult.raise_for_status for non-succeeded results.
The exception's __str__ includes the underlying status, any
platform-side error, and the user's traceback (if any), so an
unhandled raise prints all the diagnostic context an operator needs.
The original :class:JobResult is available as :attr:result for
structured access.
Source code in core/src/armnet_core/models.py
496 497 498 499 500 501 502 503 504 505 506 507 508 | |
RobotArmConfig
¶
Bases: BaseModel
Named arm configuration for multi-arm (bimanual) cells.
The runtime derives each arm's connector endpoint from the cell-level
robot_connector_endpoint plus the arm name; port is the physical
serial device that arm is wired to on the edge Pi, used by the Fleet Agent
to provision the (bimanual) edge connector with the per-arm port mapping
(--arm-ports). Optional because the edge can also be provisioned
out-of-band, but set it so the agent can bring a bimanual cell up itself.
Source code in core/src/armnet_core/models.py
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 | |
RobotCellConfig
¶
Bases: BaseModel
Physical robot cell configuration loaded from robot_cell.json.
This is operator-owned configuration, not job input. The cell and local Docker runner use it to inject the same robot metadata into the runtime context for every job that lands on this cell.
The JSON file may use a nested structure with top-level groups:
cell, robot, data_interface, policy. A model validator
flattens nested input into the canonical flat field set for backward
compatibility with all existing consumers.
Source code in core/src/armnet_core/models.py
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 | |
connector_socket_path
class-attribute
instance-attribute
¶
connector_socket_path: Optional[str] = None
robot_connector_endpoint
class-attribute
instance-attribute
¶
robot_connector_endpoint: Optional[str] = None
operator_call_endpoint
class-attribute
instance-attribute
¶
operator_call_endpoint: Optional[str] = 'tcp://127.0.0.1:9877'
calibration_file_path
class-attribute
instance-attribute
¶
calibration_file_path: Optional[Path] = None
camera_configs
class-attribute
instance-attribute
¶
camera_configs: dict[str, dict[str, Any]] = Field(default_factory=dict)
arms
class-attribute
instance-attribute
¶
arms: dict[str, RobotArmConfig] = Field(default_factory=dict)
safety_limit
class-attribute
instance-attribute
¶
safety_limit: Optional[float] = Field(default=None, description='Runtime-facing relative action safety limit for robot SDK configs. SO-101 cells expose 30 degrees; embodiments with connector-only safety, such as ARX5, leave this unset.')
language_instruction
class-attribute
instance-attribute
¶
language_instruction: Optional[str] = None
completion_min_interval_s
class-attribute
instance-attribute
¶
completion_min_interval_s: float = 1.0
completion_model_path
class-attribute
instance-attribute
¶
completion_model_path: str = 'robometer/Robometer-4B'
arm_rest_position
class-attribute
instance-attribute
¶
arm_rest_position: Optional[dict[str, float]] = None
from_file
classmethod
¶
from_file(path: str | Path) -> 'RobotCellConfig'
Source code in core/src/armnet_core/models.py
297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 | |
SecretCreateRequest
¶
SecretInfo
¶
Bases: BaseModel
Secret metadata returned to clients. Never includes secret values.
Source code in core/src/armnet_core/models.py
616 617 618 619 | |
SecretList
¶
Bases: BaseModel
List of secret metadata for the authenticated user.
Source code in core/src/armnet_core/models.py
622 623 624 625 | |
secrets
class-attribute
instance-attribute
¶
secrets: list[SecretInfo] = Field(default_factory=list)
TaskInfo
¶
Bases: BaseModel
One known task, as stored in the orchestrator database.
Source code in core/src/armnet_core/models.py
603 604 605 606 607 | |
TaskList
¶
Bases: BaseModel
The set of tasks the platform currently accepts (GET /tasks).
Source code in core/src/armnet_core/models.py
610 611 612 613 | |
TeleopAction
¶
Bases: BaseModel
A single remote-teleoperation action for a running job.
Sent by the client (sampling a local leader arm) to the orchestrator over a
websocket, forwarded to the cell on the job's teleop NATS subject, and kept
by the cell as a most-recent-value register. timestamp (unix seconds, on
the client clock) is used to drop out-of-order/stale messages so the cell
always holds the freshest action.
Source code in core/src/armnet_core/models.py
349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 | |
TeleopEvent
¶
Bases: BaseModel
A discrete recording-control event for a running teleop job.
Travels the same path as :class:TeleopAction (client websocket →
orchestrator → the job's teleop NATS subject → cell), but with different
delivery semantics: actions are a freshest-wins stream where drops are
fine, whereas events are rare, user-initiated commands that the cell queues
in order so none is lost between runtime polls.
The event values mirror LeRobot's dataset-recording keyboard controls:
Right Arrow ends the current episode and moves on (next_episode), Left
Arrow discards and re-records it (rerecord_episode), and Esc stops the
whole session (stop_recording).
Source code in core/src/armnet_core/models.py
379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 | |
VolumeCredentials
¶
Bases: BaseModel
Short-lived credentials for a user's cloud-backed volume prefix.
Source code in core/src/armnet_core/models.py
575 576 577 578 579 580 581 | |
armnet_core.enums
¶
Embodiment and Task wire-type aliases.
Embodiments and tasks are identified by stable wire-format string slugs that
appear in HTTP request bodies, NATS subjects, env vars injected into customer
containers, and cell configuration (e.g. "lerobot/so-101",
"assemble_block_tower").
The set of valid embodiments and tasks is not hard-coded here. It lives
in the orchestrator's Postgres database (the embodiments and tasks
tables; see db/), which is the single source of truth. The orchestrator
validates incoming jobs against those tables and rejects unknown values with
HTTP 400. Adding a new embodiment or task is a database insert, not a code
change.
Embodiment and Task are kept as str aliases so annotations stay
readable and existing Embodiment(value)/Task(value) call sites keep
working (they are now just str(value)). The DEFAULT_* constants below
are convenience defaults for local development and SDK ergonomics only — they
are not an authoritative enumeration of valid values.
armnet_core.models
¶
External-facing wire types for the armnet platform.
Customer-touching models only — request/response bodies for the
orchestrator HTTP API and the result payloads embedded in those responses.
Internal NATS message envelopes (JobDispatch, CellHeartbeat) live
in the separate armnet-protocol package alongside the NATS subject
taxonomy.
Keep this module dependency-light (pydantic + stdlib only) so it can be imported from any component without dragging in HTTP or NATS clients.
TerminalStatus
module-attribute
¶
TerminalStatus = frozenset({JobStatus.SUCCEEDED, JobStatus.FAILED, JobStatus.TIMEOUT, JobStatus.CANCELLED})
TELEOP_EVENTS
module-attribute
¶
TELEOP_EVENTS = (TELEOP_EVENT_NEXT_EPISODE, TELEOP_EVENT_RERECORD_EPISODE, TELEOP_EVENT_STOP_RECORDING)
JobStatus
¶
Bases: str, Enum
Job lifecycle states.
Mirrors the design doc §3.5 state machine. A job is created SUBMITTED;
if the target cell isn't available it becomes QUEUED (run when the cell
next comes online — the
scheduler is a later phase), otherwise it is DISPATCHED to a cell, then
RUNNING, then a terminal state.
Source code in core/src/armnet_core/models.py
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | |
CellRuntimeStatus
¶
Bases: str, Enum
Current availability state for a robot cell.
Source code in core/src/armnet_core/models.py
56 57 58 59 60 61 | |
RobotArmConfig
¶
Bases: BaseModel
Named arm configuration for multi-arm (bimanual) cells.
The runtime derives each arm's connector endpoint from the cell-level
robot_connector_endpoint plus the arm name; port is the physical
serial device that arm is wired to on the edge Pi, used by the Fleet Agent
to provision the (bimanual) edge connector with the per-arm port mapping
(--arm-ports). Optional because the edge can also be provisioned
out-of-band, but set it so the agent can bring a bimanual cell up itself.
Source code in core/src/armnet_core/models.py
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 | |
JobSpec
¶
Bases: BaseModel
The fields a client supplies when creating a job.
This is the body of POST /jobs. The orchestrator wraps it into a
:class:Job (assigning id, status, timestamps) before
persisting.
Source code in core/src/armnet_core/models.py
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 | |
image
class-attribute
instance-attribute
¶
image: str = Field(..., description='Fully-qualified container image reference, e.g. `ghcr.io/my-org/my-image:tag` or `my-image:latest` for local M0.5.')
args
class-attribute
instance-attribute
¶
args: dict[str, Any] = Field(default_factory=dict, description="Keyword arguments passed to the customer's @main-decorated function as `ctx.args`. JSON-encoded into the `ARMNET_ARGS` env var by the cell; decoded by the `armnet-runtime` entrypoint before calling user code. Must be JSON-serialisable.")
embodiment
class-attribute
instance-attribute
¶
embodiment: Embodiment = Field(..., description='Required robot embodiment. The orchestrator routes the job onto the NATS subject for this embodiment+task pair, where the matching cell picks it up.')
task
class-attribute
instance-attribute
¶
task: Optional[Task] = Field(default=None, description='Optional task. When set, only cells configured for this (embodiment, task) pair run the job. When omitted, any cell of the embodiment may pick it up regardless of its configured task.')
timeout_seconds
class-attribute
instance-attribute
¶
timeout_seconds: int = Field(default=120, ge=1, description='Wall-clock cap on container execution.')
secrets
class-attribute
instance-attribute
¶
secrets: dict[str, str] = Field(default_factory=dict, description="Mapping of environment variable name to user secret name. Example: {'HF_TOKEN': 'huggingface-token'} resolves the authenticated user's secret and injects it as HF_TOKEN.")
detach
class-attribute
instance-attribute
¶
detach: bool = Field(default=False, description='If false, losing the client log WebSocket requests graceful job cancellation. If true, the job keeps running after client disconnect.')
username
class-attribute
instance-attribute
¶
username: Optional[str] = Field(default=None, description='Authenticated armnet username. Set by the orchestrator from the API key; clients should not rely on supplied values being preserved.')
RobotCellConfig
¶
Bases: BaseModel
Physical robot cell configuration loaded from robot_cell.json.
This is operator-owned configuration, not job input. The cell and local Docker runner use it to inject the same robot metadata into the runtime context for every job that lands on this cell.
The JSON file may use a nested structure with top-level groups:
cell, robot, data_interface, policy. A model validator
flattens nested input into the canonical flat field set for backward
compatibility with all existing consumers.
Source code in core/src/armnet_core/models.py
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 | |
connector_socket_path
class-attribute
instance-attribute
¶
connector_socket_path: Optional[str] = None
robot_connector_endpoint
class-attribute
instance-attribute
¶
robot_connector_endpoint: Optional[str] = None
operator_call_endpoint
class-attribute
instance-attribute
¶
operator_call_endpoint: Optional[str] = 'tcp://127.0.0.1:9877'
calibration_file_path
class-attribute
instance-attribute
¶
calibration_file_path: Optional[Path] = None
camera_configs
class-attribute
instance-attribute
¶
camera_configs: dict[str, dict[str, Any]] = Field(default_factory=dict)
arms
class-attribute
instance-attribute
¶
arms: dict[str, RobotArmConfig] = Field(default_factory=dict)
safety_limit
class-attribute
instance-attribute
¶
safety_limit: Optional[float] = Field(default=None, description='Runtime-facing relative action safety limit for robot SDK configs. SO-101 cells expose 30 degrees; embodiments with connector-only safety, such as ARX5, leave this unset.')
language_instruction
class-attribute
instance-attribute
¶
language_instruction: Optional[str] = None
completion_min_interval_s
class-attribute
instance-attribute
¶
completion_min_interval_s: float = 1.0
completion_model_path
class-attribute
instance-attribute
¶
completion_model_path: str = 'robometer/Robometer-4B'
arm_rest_position
class-attribute
instance-attribute
¶
arm_rest_position: Optional[dict[str, float]] = None
from_file
classmethod
¶
from_file(path: str | Path) -> 'RobotCellConfig'
Source code in core/src/armnet_core/models.py
297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 | |
CellStatus
¶
Bases: BaseModel
Current status for one cell as reported by recent heartbeats.
Source code in core/src/armnet_core/models.py
323 324 325 326 327 328 329 330 331 | |
CellStatusSummary
¶
Bases: BaseModel
Aggregate availability for an embodiment, optionally scoped to a task.
task is None when the summary aggregates across every task of the
embodiment (used to answer "is any cell of this embodiment available?" for
task-less jobs).
Source code in core/src/armnet_core/models.py
334 335 336 337 338 339 340 341 342 343 344 345 346 | |
TeleopAction
¶
Bases: BaseModel
A single remote-teleoperation action for a running job.
Sent by the client (sampling a local leader arm) to the orchestrator over a
websocket, forwarded to the cell on the job's teleop NATS subject, and kept
by the cell as a most-recent-value register. timestamp (unix seconds, on
the client clock) is used to drop out-of-order/stale messages so the cell
always holds the freshest action.
Source code in core/src/armnet_core/models.py
349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 | |
TeleopEvent
¶
Bases: BaseModel
A discrete recording-control event for a running teleop job.
Travels the same path as :class:TeleopAction (client websocket →
orchestrator → the job's teleop NATS subject → cell), but with different
delivery semantics: actions are a freshest-wins stream where drops are
fine, whereas events are rare, user-initiated commands that the cell queues
in order so none is lost between runtime polls.
The event values mirror LeRobot's dataset-recording keyboard controls:
Right Arrow ends the current episode and moves on (next_episode), Left
Arrow discards and re-records it (rerecord_episode), and Esc stops the
whole session (stop_recording).
Source code in core/src/armnet_core/models.py
379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 | |
JobResult
¶
Bases: BaseModel
Terminal result published by a cell on the results subject.
Also returned (embedded in :class:Job) by GET /jobs/{id} once the
job is in a terminal state.
Source code in core/src/armnet_core/models.py
399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 | |
status
class-attribute
instance-attribute
¶
status: JobStatus = Field(..., description='One of the terminal statuses (succeeded/failed/timeout/cancelled).')
exit_code
class-attribute
instance-attribute
¶
exit_code: Optional[int] = Field(default=None, description='Container process exit code if the container ran to completion.')
stdout
class-attribute
instance-attribute
¶
stdout: str = Field(default='', description='Captured container stdout.')
stderr
class-attribute
instance-attribute
¶
stderr: str = Field(default='', description='Captured container stderr.')
error
class-attribute
instance-attribute
¶
error: Optional[str] = Field(default=None, description="Short, infra-side reason this job didn't run user code to completion: image pull failure, docker error, timeout, etc. Mutually exclusive with `traceback` in practice (one is a platform failure, the other is a user-code failure).")
traceback
class-attribute
instance-attribute
¶
traceback: Optional[str] = Field(default=None, description="Python traceback from the customer's `@main`-decorated function if it raised. Extracted by the cell from the `[armnet:traceback]:json` marker line in stdout. Capped at ~64 KiB on the cell side; the full untruncated traceback is also in `stderr` for power users. None for successful jobs and for infra-side failures (those go in `error` instead).")
return_value
class-attribute
instance-attribute
¶
return_value: Optional[Any] = Field(default=None, description="Value returned by the customer's `@main`-decorated function. Extracted by the cell from the marker line that the `armnet-runtime` entrypoint prints to stdout. None if the function returned None or did not run to completion.")
raise_for_status
¶
raise_for_status() -> None
Raise :class:RemoteExecutionError iff this result isn't SUCCEEDED.
The httpx-style "opt-in raising" pattern. Use it when you'd rather
bail than branch on result.status::
result = execute(...)
result.raise_for_status()
do_thing(result.return_value)
For successful results this is a no-op.
Source code in core/src/armnet_core/models.py
442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 | |
JobStatusTransition
¶
Bases: BaseModel
One entry in a job's status-change audit trail.
Emitted by the orchestrator's GET /jobs/{id}/status-transitions so users
can trace a job's lifecycle. detail carries optional context (e.g. the
cell id on dispatch/run, or the failure message on a terminal state).
Source code in core/src/armnet_core/models.py
483 484 485 486 487 488 489 490 491 492 493 | |
RemoteExecutionError
¶
Bases: RuntimeError
Raised by :meth:JobResult.raise_for_status for non-succeeded results.
The exception's __str__ includes the underlying status, any
platform-side error, and the user's traceback (if any), so an
unhandled raise prints all the diagnostic context an operator needs.
The original :class:JobResult is available as :attr:result for
structured access.
Source code in core/src/armnet_core/models.py
496 497 498 499 500 501 502 503 504 505 506 507 508 | |
Job
¶
Bases: BaseModel
The orchestrator's view of a job (response body of GET /jobs/{id}).
Source code in core/src/armnet_core/models.py
511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 | |
created_at
class-attribute
instance-attribute
¶
created_at: datetime = Field(default_factory=_utcnow)
updated_at
class-attribute
instance-attribute
¶
updated_at: datetime = Field(default_factory=_utcnow)
cell_id
class-attribute
instance-attribute
¶
cell_id: Optional[str] = Field(default=None, description='ID of the cell that picked up the job, set on dispatch.')
dispatched
class-attribute
instance-attribute
¶
dispatched: Optional[bool] = Field(default=None, description="Only set on the POST /jobs response: True if the job was dispatched to a cell immediately, False if it was accepted but queued (no matching cell was free). None on all other responses. Clients can use this to decide whether to wait for logs/result or just report 'queued'.")
is_terminal
¶
is_terminal() -> bool
Source code in core/src/armnet_core/models.py
534 535 | |
RegistryCredentials
¶
Bases: BaseModel
Short-lived credentials for pushing to the platform's image registry.
Returned by POST /registry/credentials. The orchestrator mints
these on demand by impersonating a dedicated image-pusher service
account. Customers never need to know about Google Cloud, IAM, or
service accounts — they just Image.build(...).push().
The password is an OAuth2 access token valid for ~1 hour. The
SDK caches it on disk and refreshes within 5 minutes of expiry.
Source code in core/src/armnet_core/models.py
538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 | |
registry
class-attribute
instance-attribute
¶
registry: str = Field(..., description="Registry hostname, e.g. 'europe-north1-docker.pkg.dev'.")
namespace
class-attribute
instance-attribute
¶
namespace: str = Field(..., description="Path under the registry the customer is allowed to push to: '<project>/<repo>/<customer-id>'. The full image ref is '<registry>/<namespace>/<image-name>:<tag>'.")
username
class-attribute
instance-attribute
¶
username: str = Field(..., description="docker login username. Always 'oauth2accesstoken' for AR.")
password
class-attribute
instance-attribute
¶
password: str = Field(..., description='OAuth2 access token. Treat as a secret — valid for ~1 hour and grants write access to the namespace above.')
expires_at
class-attribute
instance-attribute
¶
expires_at: datetime = Field(..., description='Wall-clock time at which the password becomes invalid.')
VolumeCredentials
¶
Bases: BaseModel
Short-lived credentials for a user's cloud-backed volume prefix.
Source code in core/src/armnet_core/models.py
575 576 577 578 579 580 581 | |
WhoAmI
¶
Bases: BaseModel
Authenticated API identity.
Source code in core/src/armnet_core/models.py
584 585 586 587 | |
EmbodimentInfo
¶
Bases: BaseModel
One known embodiment, as stored in the orchestrator database.
Source code in core/src/armnet_core/models.py
590 591 592 593 594 | |
EmbodimentList
¶
Bases: BaseModel
The set of embodiments the platform currently accepts (GET /embodiments).
Source code in core/src/armnet_core/models.py
597 598 599 600 | |
embodiments
class-attribute
instance-attribute
¶
embodiments: list[EmbodimentInfo] = Field(default_factory=list)
TaskInfo
¶
Bases: BaseModel
One known task, as stored in the orchestrator database.
Source code in core/src/armnet_core/models.py
603 604 605 606 607 | |
TaskList
¶
Bases: BaseModel
The set of tasks the platform currently accepts (GET /tasks).
Source code in core/src/armnet_core/models.py
610 611 612 613 | |
SecretInfo
¶
Bases: BaseModel
Secret metadata returned to clients. Never includes secret values.
Source code in core/src/armnet_core/models.py
616 617 618 619 | |
SecretList
¶
Bases: BaseModel
List of secret metadata for the authenticated user.
Source code in core/src/armnet_core/models.py
622 623 624 625 | |
secrets
class-attribute
instance-attribute
¶
secrets: list[SecretInfo] = Field(default_factory=list)