Skip to main content

Quick Start Guide

Get MIU running on your system and start building AI-powered coding agents.

Prerequisites

Before you begin, ensure you have:
  • Python 3.11 or higher
  • An API key from Anthropic, OpenAI, or Google

Installation

Configuration

Set your API key for the LLM provider you want to use:
# Anthropic (default)
export ANTHROPIC_API_KEY="sk-ant-..."

# Google
export GOOGLE_API_KEY="..."

# OpenAI
export OPENAI_API_KEY="sk-..."
Store your API keys in a .env file in your project root for convenience.

Basic Usage

1

One-shot Query

Run a single command and get a response:
miu -q "explain this codebase"
2

Interactive REPL

Start an interactive session:
miu
3

TUI Mode

Launch the full terminal UI:
miu code
4

Custom Provider

Specify a different model:
miu --model anthropic:claude-opus-4-20250805 -q "summarize README.md"

What’s Next?