mirror of
https://github.com/block/goose.git
synced 2026-04-29 20:19:41 +00:00
58 lines
2.5 KiB
Text
58 lines
2.5 KiB
Text
---
|
|
title: Multi-Model Configuration
|
|
hide_title: true
|
|
description: Approaches for configuring model-switching behavior to optimize for cost, performance, and results.
|
|
---
|
|
|
|
import Card from '@site/src/components/Card';
|
|
import styles from '@site/src/components/Card/styles.module.css';
|
|
import Tabs from '@theme/Tabs';
|
|
import TabItem from '@theme/TabItem';
|
|
|
|
<h1 className={styles.pageTitle}>Multi-Model Configuration</h1>
|
|
<p className={styles.pageDescription}>
|
|
goose supports several approaches for using different models within a single session, allowing you to optimize for cost, performance, and task specialization. Strategies range from manual or turn-based model selection to dynamic, context-aware switching.
|
|
</p>
|
|
|
|
<div className={styles.categorySection}>
|
|
<h2 className={styles.categoryTitle}>📚 Documentation & Guides</h2>
|
|
<div className={styles.cardGrid}>
|
|
<Card
|
|
title="Automatic Multi-Model Switching"
|
|
description="Intelligent switching between models based on conversation content, complexity, and tool usage patterns."
|
|
link="/docs/guides/multi-model/autopilot"
|
|
/>
|
|
<Card
|
|
title="Lead/Worker Multi-Model Setup"
|
|
description="Automatic switching between models using a lead model for initial turns and a worker model for execution."
|
|
link="/docs/tutorials/lead-worker"
|
|
/>
|
|
<Card
|
|
title="Creating Plans Before Working"
|
|
description="Manual planning mode that uses a dedicated model to break complex projects into detailed, actionable steps."
|
|
link="/docs/guides/multi-model/creating-plans"
|
|
/>
|
|
<Card
|
|
title="Planning Complex Tasks"
|
|
description="Uses the Plan feature to transform a complex devcontainer setup into a systematic, executable roadmap."
|
|
link="/docs/tutorials/plan-feature-devcontainer-setup"
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div className={styles.categorySection}>
|
|
<h2 className={styles.categoryTitle}>📝 Featured Blog Posts</h2>
|
|
<div className={styles.cardGrid}>
|
|
<Card
|
|
title="Treating LLMs Like Tools in a Toolbox: A Multi-Model Approach to Smarter AI Agents"
|
|
description="LLMs are specialized tools, and multi-model approaches create smarter, more efficient AI agents."
|
|
link="/blog/2025/06/16/multi-model-in-goose"
|
|
/>
|
|
<Card
|
|
title="LLM Tag Team: Who Plans, Who Executes?"
|
|
description="Learn how lead/worker model configuration creates an effective AI tag team, with one model for planning and another for execution."
|
|
link="/blog/2025/08/11/llm-tag-team-lead-worker-model"
|
|
/>
|
|
</div>
|
|
</div>
|
|
|