Get Started
Install REE, launch the TUI, and run your first reproducible generation.
Quickstart Guide
Everything you need to go from zero to your first receipt: [1] prerequisites, [2] installation, and [3] a guided first run.
Prerequisites
Docker installed and running.
Python 3 installed on your machine.
Disk Space Requirements: The compressed REE container image is roughly 7 GB. When uncompressed, it occupies approximately 12 GB on disk.
NVIDIA GPU Driver Requirements: Linux requires version 570.00+ and Windows requires 572.16+. Check your current driver version with
nvidia-smi.
For a minimal SDK application example, see the SDK Hello World example in the REE repository.
Installing REE
Clone the GitHub repository and navigate into it:
git clone https://github.com/gensyn-ai/ree.git
cd reeNo additional installation or dependency management is required. The TUI handles pulling the REE container image automatically on your first run.
Updating REE
To update REE, pull the latest repository changes and run the TUI again:
The TUI calls ree.sh, which automatically pulls the configured REE container image (gensynai/ree:v0.6.0).
Receipt compatibility: v0.6.0 changes the bit-level output of the 3D RMSNorm kernel. Some receipts generated with v0.5.0 may not re-verify with v0.6.0. Verify legacy receipts with a compatible v0.5.0 environment. Generate new receipts with v0.6.0. See Receipts.
Launching the TUI
The TUI opens with an interactive form where you can configure and launch generations entirely from within the interface without the need to manually assemble CLI commands.
From the ree directory, run:
If you prefer the command line, REE can also be driven directly via ree.sh or the gensyn-sdk CLI without the TUI. This may be preferable if you're scripting, working in a CI pipeline, or using a coding agent like Claude Code. See the Advanced Usage & CLI Reference for the full CLI documentation.
Your First Run
When the TUI launches, you'll see this form:

To run your first generation:
Use the arrow keys to navigate to Model Name from this list and press Enter to edit it.
Navigate to Prompt Text and press Enter. Type a simple prompt like
Hello world.Set a Max New Tokens count.
Press
rto run.
REE will pull the container image, prepare the model, run inference, and display a progress checklist:

Once complete, you'll see the REE Output section showing the receipt file path and the model's generated text.
From here you can press e to reset and configure another run, r to re-run with the same settings, or q to quit.
Last updated