Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

Reachy Mini

⚠️ Reachy Mini is still in beta. Expect bugs, some of them we won't fix right away if they are not a priority.

Reachy Mini is an expressive, open-source robot designed for human-robot interaction, creative coding, and AI experimentation. We made it to be affordable, easy to use, hackable and cute, so that you can focus on building cool AI applications!

Reachy Mini Hello

Versions Lite & Wireless

Reachy Mini's hardware comes in two flavors:

  • Reachy Mini lite: where the robot is directly connected to your computer via USB. And the code that controls the robot (the daemon) runs on your computer.
  • Reachy Mini wireless: where an Raspberry Pi is embedded in the robot, and the code that controls the robot (the daemon) runs on the Raspberry Pi. You can connect to it via Wi-Fi from your computer. (TODO: add link to section on how to set it up)

There is also a simulated version of Reachy Mini in MuJoCo that you can use to prototype your applications before deploying them on the real robot. It behaves like the lite version where the daemon runs on your computer.

Software overview

This repository provides everything you need to control Reachy Mini, both in simulation and on the real robot. It consists of two main parts:

  • The 😈 Daemon 😈: A background service that manages communication with the robot's motors and sensors, or with the simulation environment. It should be running before you can control the robot. It can run either for the simulation (MuJoCo) or for the real robot.
  • 🐍 SDK & 🕸️ API to control the robot's main features (head, antennas, camera, speakers, microphone, etc.) and connect with your AI experimentation. Depending on your preferences and needs, there is a Python SDK and a HTTP REST API.

Using the Python SDK, making your robot move only require a few lines of code, as illustrated in the example below:

from reachy_mini import ReachyMini
from reachy_mini.utils import create_head_pose

with ReachyMini() as reachy_mini:
    # Move the head up (10mm on z-axis) and roll it 15 degrees
    pose = create_head_pose(z=10, roll=15, degrees=True, mm=True)
    reachy_mini.goto_target(head=pose, duration=2.0)

    # Reset to default pose
    pose = create_head_pose() 
    reachy_mini.goto_target(head=pose, duration=2.0)

and using the REST API, reading the current state of the robot:

curl 'http://localhost:8000/api/state/full'

Those two examples above assume that the daemon is already running (either in simulation or on the real robot) locally.

Installation of the daemon and Python SDK

As mentioned above, before being able to use the robot, you need to run the daemon that will handle the communication with the motors.

We support and test on Linux and macOS. It's also working on Windows, but it is less tested at the moment. Do not hesitate to open an issue if you encounter any problem.

The daemon is built in Python, so you need to have Python installed on your computer (versions from 3.10 to 3.13 are supported). We recommend using a virtual environment to avoid dependency conflicts with your other Python projects.

You can install Reachy Mini from the source code or from PyPI.

From PyPI, you can install the package with:

pip install reachy-mini

From the source code, you can install the package with:

git clone https://github.com/pollen-robotics/reachy_mini
pip install -e ./reachy_mini

The same package provides both the daemon and the Python SDK.

Run the reachy mini daemon

Before being able to use the robot, you need to run the daemon that will handle the communication with the motors. This daemon can run either in simulation (MuJoCo) or on the real robot.

reachy-mini-daemon

or run it via the Python module:

python -m reachy_mini.daemon.app.main

Additional argument for both simulation and real robot:

--localhost-only: (default behavior). The server will only accept connections from localhost.

or

--no-localhost-only: If set, the server will accept connections from any connection on the local network.

In simulation (MuJoCo)

You first have to install the optional dependency mujoco.

pip install reachy-mini[mujoco]

Then run the daemon with the --sim argument.

reachy-mini-daemon --sim

Additional arguments:

--scene <empty|minimal> : (Default empty). Choose between a basic empty scene, or a scene with a table and some objects.
Reachy Mini in MuJoCo

Note: On OSX in order to run mujoco, you need to use mjpython (see here). So, you should run the daemon with:

 mjpython -m reachy_mini.daemon.app.main --sim

For the lite version (connected via USB)

It should automatically detect the serial port of the robot. If it does not, you can specify it manually with the -p option:

reachy-mini-daemon -p <serial_port>

Usage

For more information about the daemon and its options, you can run:

reachy-mini-daemon --help

Run the demo

Conversational demo for the Reachy Mini robot combining LLM realtime APIs, vision pipelines, and choreographed motion libraries: reachy_mini_conversation_demo.

Using the Python SDK

The API is designed to be simple and intuitive. You can control the robot's features such as the head, antennas, camera, speakers, and microphone. For instance, to move the head of the robot, you can use the goto_target method as shown in the example below:

from reachy_mini import ReachyMini
from reachy_mini.utils import create_head_pose

with ReachyMini() as reachy_mini:
    # Move the head up (10mm on z-axis) and roll it 15 degrees
    pose = create_head_pose(z=10, roll=15, degrees=True, mm=True)
    reachy_mini.goto_target(head=pose, duration=2.0)

    # Reset to default pose
    pose = create_head_pose() 
    reachy_mini.goto_target(head=pose, duration=2.0)

For a full description of the SDK, please refer to the Python SDK documentation.

Using the REST API

The daemon also provides a REST API via fastapi that you can use to control the robot and get its state. The API is accessible via HTTP and WebSocket.

By default, the API server runs on http://localhost:8000. The API is documented using OpenAPI, and you can access the documentation at http://localhost:8000/docs when the daemon is running.

More information about the API can be found in the HTTP API documentation.

Open source & contribution

This project is actively developed and maintained by the Pollen Robotics team and the Hugging Face team.

We welcome contributions from the community! If you want to report a bug or request a feature, please open an issue on GitHub. If you want to contribute code, please fork the repository and submit a pull request.

3D models

TODO

Contributing

Development tools are available in the optional dependencies.

pip install -e .[dev]
pre-commit install

Your files will be checked before any commit. Checks may also be manually run with

pre-commit run --all-files

Checks are performed by Ruff. You may want to configure your IDE to support it.

License

This project is licensed under the Apache 2.0 License - see the LICENSE file for details.

The robot design files are licensed under the TODO license.

Simulation model used

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

reachy_mini-1.0.0rc5.tar.gz (20.4 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

reachy_mini-1.0.0rc5-py3-none-any.whl (20.4 MB view details)

Uploaded Python 3

File details

Details for the file reachy_mini-1.0.0rc5.tar.gz.

File metadata

  • Download URL: reachy_mini-1.0.0rc5.tar.gz
  • Upload date:
  • Size: 20.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for reachy_mini-1.0.0rc5.tar.gz
Algorithm Hash digest
SHA256 1d44b8d3d684a6a5d98481ea9da513d6f819e22bb4eca2191c6350af0526a742
MD5 93efb91e4b1fff92d38144cc28f1e299
BLAKE2b-256 e883236734031d84b3723546afd2f16e9b2ad8628c72dc73ffafedf4e1e00654

See more details on using hashes here.

Provenance

The following attestation bundles were made for reachy_mini-1.0.0rc5.tar.gz:

Publisher: wheels.yml on pollen-robotics/reachy_mini

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file reachy_mini-1.0.0rc5-py3-none-any.whl.

File metadata

  • Download URL: reachy_mini-1.0.0rc5-py3-none-any.whl
  • Upload date:
  • Size: 20.4 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for reachy_mini-1.0.0rc5-py3-none-any.whl
Algorithm Hash digest
SHA256 75eb3ce2c87e343e6c10232e9931356e4d43b34978f35291dbf65093db25db19
MD5 7d84f141b166a3f5a607b5a8a5f1969a
BLAKE2b-256 a45ff711e67d1d72457f5af8a05b8350c81722656685e81958cb30cf93cd9977

See more details on using hashes here.

Provenance

The following attestation bundles were made for reachy_mini-1.0.0rc5-py3-none-any.whl:

Publisher: wheels.yml on pollen-robotics/reachy_mini

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page