From df7f64db3c0ca60adcf9c7d354f604ea91bb51db Mon Sep 17 00:00:00 2001 From: Samuele Domenico Ruffino Date: Thu, 23 Apr 2026 16:10:50 +0200 Subject: [PATCH] fix(docs): correct Explore and Librarian fallback chains in installation guide The documented chains were missing entries and had wrong providers: - Librarian was missing openai/gpt-5.4-mini-fast, vercel/minimax-m2.7-highspeed, and the last two entries. Also had opencode/ instead of vercel/ for minimax-m2.7-highspeed. - Explore had github-copilot|xai/grok-code-fast-1 as primary (which doesn't exist in the fallback chain) and was missing openai/gpt-5.4-mini-fast. Both now match the exact runtime chains from model-requirements.ts. --- docs/guide/installation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guide/installation.md b/docs/guide/installation.md index e6c883edc..9d58040e3 100644 --- a/docs/guide/installation.md +++ b/docs/guide/installation.md @@ -359,8 +359,8 @@ These agents do search, grep, and retrieval. They intentionally use fast, cheap | Agent | Role | Default Chain | Design Rationale | | --------------------- | ------------------ | ---------------------------------------------------------------------- | -------------------------------------------------------------- | -| **Explore** | Fast codebase grep | github-copilot\|xai/grok-code-fast-1 → opencode-go/qwen3.5-plus → vercel/minimax-m2.7-highspeed → opencode/minimax-m2.7 → anthropic\|opencode/claude-haiku-4-5 → opencode/gpt-5-nano | Speed is everything. Exact runtime chain from `src/shared/model-requirements.ts`. | -| **Librarian** | Docs/code search | opencode-go/minimax-m2.7 → opencode/minimax-m2.7-highspeed → anthropic\|opencode/claude-haiku-4-5 → opencode/gpt-5-nano | Doc retrieval doesn't need deep reasoning. Exact runtime chain from `src/shared/model-requirements.ts`. | +| **Explore** | Fast codebase grep | openai/gpt-5.4-mini-fast → opencode-go/qwen3.5-plus → vercel/minimax-m2.7-highspeed → opencode-go\|vercel/minimax-m2.7 → anthropic\|opencode\|vercel/claude-haiku-4-5 → openai\|opencode\|vercel/gpt-5.4-nano | Speed is everything. Exact runtime chain from `src/shared/model-requirements.ts`. | +| **Librarian** | Docs/code search | openai/gpt-5.4-mini-fast → opencode-go/qwen3.5-plus → vercel/minimax-m2.7-highspeed → opencode-go\|vercel/minimax-m2.7 → anthropic\|opencode\|vercel/claude-haiku-4-5 → openai\|opencode\|vercel/gpt-5.4-nano | Doc retrieval doesn't need deep reasoning. Exact runtime chain from `src/shared/model-requirements.ts`. | | **Multimodal Looker** | Vision/screenshots | openai\|opencode/gpt-5.5 (medium) → opencode-go/kimi-k2.6 → zai-coding-plan/glm-4.6v → openai\|github-copilot\|opencode/gpt-5-nano | GPT-5.5 now leads the default vision path when available. | #### Why Different Models Need Different Prompts