From e683b6edfa7a4c8ce37cbd883d0beb9bda99cd2a Mon Sep 17 00:00:00 2001 From: Peter Guy Date: Wed, 29 Oct 2025 19:32:12 -0700 Subject: [PATCH 1/2] Add Claude Haiku 4.5 and Haiku 4.5 w/ Thinking to supported models - Added Claude Haiku 4.5 and Claude Haiku 4.5 w/ Thinking to the supported models matrix - Added token limits for both variants (132k/18k/8k and 93k/18k/64k respectively) - Updated Claude 3.7 and 4 section to include Haiku 4.5 - Added version requirement: v6.9.2509+ for Haiku 4.5 - Both models support vision capabilities Amp-Thread-ID: https://ampcode.com/threads/T-cb44cbf9-0318-44fb-aa71-1e42d0fdd70a Co-authored-by: Amp --- docs/cody/capabilities/supported-models.mdx | 10 ++++++---- docs/cody/core-concepts/token-limits.mdx | 2 ++ 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/docs/cody/capabilities/supported-models.mdx b/docs/cody/capabilities/supported-models.mdx index d4a7ede4e..1f2afbedf 100644 --- a/docs/cody/capabilities/supported-models.mdx +++ b/docs/cody/capabilities/supported-models.mdx @@ -22,6 +22,8 @@ Cody supports a variety of cutting-edge large language models for use in chat an | OpenAI | [GPT-4.1-mini](https://platform.openai.com/docs/models/gpt-4o-mini) | ✅ | ✅ | | OpenAI | [GPT-4.1-nano](https://platform.openai.com/docs/models/gpt-4.1-nano) | ✅ | ✅ | | Anthropic | [Claude 3.5 Haiku](https://docs.anthropic.com/claude/docs/models-overview#model-comparison) | ✅ | ❌ | +| Anthropic | [Claude Haiku 4.5](https://docs.anthropic.com/en/docs/about-claude/models/overview) | ✅ | ✅ | +| Anthropic | [Claude Haiku 4.5 w/ Thinking](https://docs.anthropic.com/en/docs/about-claude/models/overview) | ✅ | ✅ | | Anthropic | [Claude 3.7 Sonnet](https://docs.anthropic.com/claude/docs/models-overview#model-comparison) | ✅ | ✅ | | Anthropic | [Claude Sonnet 4](https://docs.anthropic.com/en/docs/about-claude/models/overview) | ✅ | ✅ | | Anthropic | [Claude Sonnet 4 w/ Thinking](https://docs.anthropic.com/en/docs/about-claude/models/overview) | ✅ | ✅ | @@ -40,15 +42,15 @@ Cody supports a variety of cutting-edge large language models for use in chat an Site admins can configure vision support using the [`chatVision` setting](/admin/config/site_config) in site configuration and by adding the `vision` capability to model configurations. See [Model Configuration](/cody/enterprise/model-configuration) for more details. -### Claude 3.7 and 4 Sonnet +### Claude 3.7 and 4 Models -Claude 3.7 and 4 Sonnet have two variants; the base version, and the **extended thinking** version which supports deep reasoning and fast, responsive edit workflows. Cody enables using both, and lets the user select which to use in the model dropdown selector, so the user can choose whether to use extended thinkig depending on their work task. +Claude 3.7 and 4 Sonnet have two variants; the base version, and the **extended thinking** version which supports deep reasoning and fast, responsive edit workflows. Claude Haiku 4.5 also supports both variants. Cody enables using both, and lets the user select which to use in the model dropdown selector, so the user can choose whether to use extended thinkig depending on their work task. -Claude 4 models support is available with Sourcegraph versions v6.4+ and v6.3.4167. It also depends on the deployement type and whether it's **thinking** or not. +Claude 4 models support is available with Sourcegraph versions v6.4+ and v6.3.4167. Claude Haiku 4.5 requires v6.9.2509+. Model availability also depends on the deployment type and whether it's **thinking** or not. #### Claude 3.7 and 4 via Google Vertex, via AWS Bedrock -Starting in Sourcegraph v6.4+ and v6.3.416, Claude 3.7 Extended Thinking - as well as Claude 4 base and extended thinking variants - are available in Sourcegraph when using Claude through either Google Vertex or AWS Bedrock. +Starting in Sourcegraph v6.4+ and v6.3.416, Claude 3.7 Extended Thinking - as well as Claude 4 base and extended thinking variants - are available in Sourcegraph when using Claude through either Google Vertex or AWS Bedrock. Claude Haiku 4.5 is available starting in v6.9.2509. See [Model Configuration: Reasoning models](/cody/enterprise/model-configuration#reasoning-models) for more information. diff --git a/docs/cody/core-concepts/token-limits.mdx b/docs/cody/core-concepts/token-limits.mdx index 66d1561fe..8d79da62f 100644 --- a/docs/cody/core-concepts/token-limits.mdx +++ b/docs/cody/core-concepts/token-limits.mdx @@ -20,6 +20,8 @@ Here's a detailed breakdown of the token limits by model: | o1 | 7,000 | shared | 4,000 | | o3 mini high | 7,000 | shared | 4,000 | | Claude 3.5 Haiku | 7,000 | shared | 4,000 | +| **Claude Haiku 4.5** | **132,000** | **18,000** | **8,192** | +| **Claude Haiku 4.5 w/Thinking**| **93,000** | **18,000** | **64,000** | | Claude 3.5 Sonnet (New) | 15,000 | 30,000 | 4,000 | | **Claude Sonnet 4 w/Thinking** | **15,000** | **45,000** | **4,000** | | **Claude Opus 4** | **15,000** | **45,000** | **4,000** | From 37c9b9e79e9ec973752df7e842d7e1ae08673fca Mon Sep 17 00:00:00 2001 From: Peter Guy Date: Wed, 29 Oct 2025 19:42:26 -0700 Subject: [PATCH 2/2] Unbold existing Claude 4 models in token limits table Only Haiku 4.5 models should be bolded as they are new in this release Amp-Thread-ID: https://ampcode.com/threads/T-cb44cbf9-0318-44fb-aa71-1e42d0fdd70a Co-authored-by: Amp --- docs/cody/core-concepts/token-limits.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/cody/core-concepts/token-limits.mdx b/docs/cody/core-concepts/token-limits.mdx index 8d79da62f..97713e1a5 100644 --- a/docs/cody/core-concepts/token-limits.mdx +++ b/docs/cody/core-concepts/token-limits.mdx @@ -23,9 +23,9 @@ Here's a detailed breakdown of the token limits by model: | **Claude Haiku 4.5** | **132,000** | **18,000** | **8,192** | | **Claude Haiku 4.5 w/Thinking**| **93,000** | **18,000** | **64,000** | | Claude 3.5 Sonnet (New) | 15,000 | 30,000 | 4,000 | -| **Claude Sonnet 4 w/Thinking** | **15,000** | **45,000** | **4,000** | -| **Claude Opus 4** | **15,000** | **45,000** | **4,000** | -| **Claude Opus 4 w/Thinking** | **15,000** | **45,000** | **4,000** | +| Claude Sonnet 4 w/Thinking | 15,000 | 45,000 | 4,000 | +| Claude Opus 4 | 15,000 | 45,000 | 4,000 | +| Claude Opus 4 w/Thinking | 15,000 | 45,000 | 4,000 | | Claude 3.7 Sonnet | 15,000 | 30,000 | 4,000 | | Gemini 1.5 Pro | 15,000 | 30,000 | 4,000 | | Gemini 2.0 Flash | 7,000 | shared | 4,000 |