Interactive Demo

Playground

Try the 3we Robot Platform directly in your browser. Run navigation tasks, explore environments, and test AI integrations without any installation.

3we Playground — HuggingFace Spaces
smart_toy

Coming Soon

The interactive playground is being deployed to HuggingFace Spaces. In the meantime, you can run the full platform locally.

Local Setup Guide
Run Locally

Quick Start via CLI

Install the Python SDK and run your first navigation task in under 2 minutes.

Terminal
$ pip install threewe[sim,ai]

$ python
>>> from threewe import Robot
>>> robot = Robot(backend="gazebo")
>>> robot.move_to(x=2.0, y=1.5)
NavigationResult(success=True, duration=3.2s)

>>> robot.navigate_with_vlm("go to the red chair")
NavigationResult(success=True, duration=8.7s)