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.0rc1.tar.gz (1.7 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.0rc1-py3-none-any.whl (1.8 MB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: reachy_mini-1.0.0rc1.tar.gz
  • Upload date:
  • Size: 1.7 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.0rc1.tar.gz
Algorithm Hash digest
SHA256 0ff15723e15b56a352ff0b58265bfabb509ab75a059774f2f980651389bfed5e
MD5 0a66b4da4f62da44e72d56f5415b3747
BLAKE2b-256 8b700011f3de449c071464fa45e08e23519e60cd272046ab6538c8032206ee7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for reachy_mini-1.0.0rc1.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.0rc1-py3-none-any.whl.

File metadata

  • Download URL: reachy_mini-1.0.0rc1-py3-none-any.whl
  • Upload date:
  • Size: 1.8 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.0rc1-py3-none-any.whl
Algorithm Hash digest
SHA256 a0823c1048034d1bdea912cbee73d9afde9a41553f45e6c87c42026fee6b1734
MD5 87c4c3f8d80556a827d401102e9275f5
BLAKE2b-256 96cd019b77cdd336d07116c3be1622dc0b9e0577876e94e5c482f711db0182e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for reachy_mini-1.0.0rc1-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

1.10.0

2 files

1.9.0

2 files

1.8.4

2 files

1.8.3

2 files

1.8.2

2 files

1.8.1

2 files

1.8.0

2 files

1.7.3

2 files

1.7.2

2 files

1.7.1

2 files

1.7.0

2 files

1.6.4

2 files

1.6.3

2 files

1.6.2

2 files

1.6.1

2 files

1.6.0

2 files

1.5.1

2 files

1.5.0

2 files

1.4.1

2 files

1.4.0

2 files

1.3.1

2 files

1.3.0

2 files

1.2.13

2 files

1.2.11

2 files

1.2.10

2 files

1.2.9

2 files

1.2.8

2 files

1.2.7

2 files

1.2.6

2 files

1.2.5

2 files

1.2.4

2 files

1.2.3

2 files

1.2.2

2 files

1.2.1

2 files

1.2.0

2 files

1.1.4

2 files

1.1.3

2 files

1.1.2

2 files

1.1.1

2 files

1.1.0

2 files

1.0.0

2 files

This release

1.0.0rc1 This release

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page