This release is a pre-release and may not be stable for production use.
se3labs
Client library for evaluating a robot policy on an SE3 Labs station. Your
model runs on your machine; the station streams observations to it over one
gRPC stream, executes the actions it returns under the station's safety
layer, and records everything. Nothing here touches hardware: the only
dependencies are grpcio and protobuf.
pip install se3labs
Run a reference policy against the job id your SE3 Labs contact gives you, and poll the job's progress:
se3labs eval run --job job_… --address relay.example.com:7443 --policy hold
se3labs eval status --job job_… --address relay.example.com:7443
Wrap your own model:
from se3labs.eval.policy import client
from se3labs.eval.policy.proto import policy_session_pb2 as pb
class MyPolicy:
def manifest(self) -> pb.ClientManifest:
return client.default_manifest(model="my-model", version="1", max_horizon=8)
def reset(self, reset: pb.Reset) -> None:
pass
def act(self, observe: pb.Observe) -> list[pb.Action]:
targets = {a.name: (list(a.joint_pos_rad), None) for a in observe.observation.arms}
return [client.joint_action(targets) for _ in range(8)]
client.serve_policy("job_…", "relay.example.com:7443", MyPolicy())
Or, with that class saved in my_policy.py, without writing the last line:
se3labs eval run --job job_… --address relay.example.com:7443 --policy my_policy:MyPolicy
Full documentation: https://se3labs.github.io/YAM-Station/
Protocol version: se3labs.eval.policy.PROTOCOL_VERSION. A release that
changes it cannot talk to a station expecting the old one.
Release files for se3labs 0.0.0a0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| se3labs-0.0.0a0.tar.gz | 19.3 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| se3labs-0.0.0a0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 45.1 kB
Release files / se3labs-0.0.0a0.tar.gz
| Download URL | se3labs-0.0.0a0.tar.gz |
|---|---|
| Size | 19.3 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
b5557b3bcd0b10993d5ad2f319f2c3ea43cda79a956d38b65f27b3f6dbe0619d
|
|
BLAKE2b-256 checksum How to use checksums |
de1369efe66f1c6688d563cc84fca7e99649bc9eb774f6b46ec0c33610e6040d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 4, 2026.
Transparency logRelease files / se3labs-0.0.0a0-py3-none-any.whl
| Download URL | se3labs-0.0.0a0-py3-none-any.whl |
|---|---|
| Size | 25.8 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
fc6d2ab5c4b9ff9beeb6565303a6e66a49c5f0eca90969baed70a6d85949621d
|
|
BLAKE2b-256 checksum How to use checksums |
61052e4bff50bfbc2ae5c55d3a244d4d9acb03bf0a2d4536bf30b44034b63da4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 4, 2026.
Transparency log