Skip to content

Quick Start

Get Model Lens running locally with a few commands.

  • Python 3.10+
  • A local LLM provider (we recommend LM Studio or Ollama)
  • At least one model loaded in your provider
  1. Clone the repository

    Terminal window
    git clone https://github.com/kevinjobin1/model-lens.git
    cd model-lens
  2. Install dependencies

    Terminal window
    pip install -r requirements.txt
  3. Install dev tooling (optional)

    Terminal window
    pip install ".[dev]"
    pre-commit install
  4. Verify installation

    Terminal window
    python apps/cli/modellens.py --help

If LM Studio is running with a model loaded:

Terminal window
python apps/cli/modellens.py run --quick

Model Lens auto-detects your provider and models.

Test models against real projects:

Terminal window
python apps/cli/modellens.py workload run --model qwen3.5-9b
Terminal window
python apps/cli/modellens.py run --framework compare --models qwen3.5 gemma-4
Terminal window
cd apps/dashboard
bun install
bun run dev # → http://localhost:4321
9090/events
python apps/cli/modellens.py run --sse-port 9090