From 863e52ed638758fa19e10c2b19c6807fd952d992 Mon Sep 17 00:00:00 2001 From: Brendan Kellam Date: Fri, 29 May 2026 22:36:58 -0700 Subject: [PATCH 1/2] fix --- packages/web/src/features/chat/utils.server.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/web/src/features/chat/utils.server.ts b/packages/web/src/features/chat/utils.server.ts index 9d00459f4..6c96e7f10 100644 --- a/packages/web/src/features/chat/utils.server.ts +++ b/packages/web/src/features/chat/utils.server.ts @@ -211,7 +211,8 @@ export const getAISDKLanguageModelAndOptions = async (config: LanguageModel): Pr }); const isAdaptiveThinkingSupported = - modelId.startsWith('claude-opus-4-7'); + modelId.startsWith('claude-opus-4-7') || + modelId.startsWith('claude-opus-4-8'); return { model: anthropic(modelId), From 8e4e4544b83a5f1f8c00fe35d2ae013d5781f9ea Mon Sep 17 00:00:00 2001 From: Brendan Kellam Date: Fri, 29 May 2026 22:41:24 -0700 Subject: [PATCH 2/2] changelog --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c75db3a7..95d2d83c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Documented session lifetime, repository visibility refresh behavior, and how permission sync handles transient code-host errors. [#1218](https://github.com/sourcebot-dev/sourcebot/pull/1218) +### Fixed +- Fixed issue where claude-opus-4-8 was returning "error occurred "thinking.type.enabled" is not supported for this model". [#1249](https://github.com/sourcebot-dev/sourcebot/pull/1249) + ## [4.17.3] - 2026-05-22 ### Fixed