← Back to KHAO

Nvidia · AI Agent · GitHub ·

Every Robot and every Simulation joins a Zenoh peer mesh automatically

2 min read

Compiled by KHAO Editorial — aggregated from 1 source. See llms.txt for citation guidance.

★ Tier-1 Source

The agent calls robot_mesh(action="peers") to enumerate locals and discovered peers, then robot_mesh(action="broadcast",.) to send the structured command to every peer with a timeout.

Key facts

Summary

You have a robot, a folder of demonstration data on the Hugging Face Hub, and a new task you want it to learn. Strands Robots is an open source SDK from AWS ( Apache 2.0 ) that exposes robot abstractions, simulation, and the LeRobot stack as AgentTools that you compose into a single Strands agent. The integration is deliberately thin: LeRobot's own scripts handle hardware recording and calibration, and the Strands AgentTools come in for the parts an agent orchestrates. This post walks you through five steps inside a single agent: build the agent over the LeRobot AgentTools, record a demonstration as a LeRobotDataset in simulation, run a policy on the same robot, deploy the same agent code to a physical SO-101 with one keyword argument change, and broadcast commands across a fleet over the Zenoh mesh. No hardware, no GPU, no Hugging Face credentials needed for the default path.

Both modes share the same DatasetRecorder and the same policy providers, so a dataset captured in sim and a dataset captured on hardware use the same on-disk LeRobotDataset format.

Read full article at Hugging Face →

#Nvidia #AI Agent #GitHub