Skip to main content

Prerequisites

  • Python 3.12+
  • macOS, Linux, or WSL2
  • An LLM provider key — OpenAI, Anthropic, or DeepSeek
  • A Unify API key and an assistant — create both at console.unify.ai

Install

The installer clones unify, syncs Python dependencies with uv (which resolves the sibling unisdk and unillm packages), runs a key wizard, and installs a unify CLI shim in ~/.local/bin/. Open a new terminal, then start chatting:
unify opens an interactive local chat with one teammate, powered by the full local runtime and the hosted Orchestra backend. Run headless (ConversationManager + gateway) with unify serve.
Clones unify under ~/.unity/, runs uv sync --all-groups, and writes ~/.unity/unity/.env with your UNIFY_KEY, ASSISTANT_ID, ORCHESTRA_URL (the hosted backend), and an LLM provider key — plus optional voice and research keys via the bring-your-own-keys wizard. It installs a unify CLI shim in ~/.local/bin/ with a clearly-marked PATH block appended to your shell rc.Get your UNIFY_KEY and ASSISTANT_ID from console.unify.ai. If you skip a key at install time (or pipe through a non-interactive shell), add it to ~/.unity/unity/.env and run unify setup.

Configuration

All bring-your-own-keys (LLM, voice, research) live in ~/.unity/unity/.env. Edit the file and run unify setup to apply changes. The keys the runtime understands:

Running from a checkout

If you cloned the repo yourself rather than using the installer:
The interactive chat is .venv/bin/python -m sandboxes.conversation_manager.sandbox, and the headless runtime is bash scripts/local.sh start --full. Always use the project virtualenv at .venv/ — the key wizard is available as scripts/prompt_byok_keys.sh.

Updating

This updates the checkout and re-syncs dependencies. Your .env is preserved.