Skip to content

Commit ad51b7a

Browse files
celestial-vaultElephant Lumps
andauthored
reset recommended model (RooCodeInc#3857)
Co-authored-by: Elephant Lumps <[email protected]>
1 parent 9451609 commit ad51b7a

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

src/shared/api.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ export const bedrockModels = {
360360

361361
// OpenRouter
362362
// https://openrouter.ai/models?order=newest&supported_parameters=tools
363-
export const openRouterDefaultModelId = "anthropic/claude-sonnet-4" // will always exist in openRouterModels
363+
export const openRouterDefaultModelId = "anthropic/claude-3.7-sonnet" // will always exist in openRouterModels
364364
export const openRouterDefaultModelInfo: ModelInfo = {
365365
maxTokens: 8192,
366366
contextWindow: 200_000,
@@ -372,7 +372,7 @@ export const openRouterDefaultModelInfo: ModelInfo = {
372372
cacheWritesPrice: 3.75,
373373
cacheReadsPrice: 0.3,
374374
description:
375-
"Claude 4 Sonnet is an advanced large language model with improved reasoning, coding, and problem-solving capabilities. It introduces a hybrid reasoning approach, allowing users to choose between rapid responses and extended, step-by-step processing for complex tasks. The model demonstrates notable improvements in coding, particularly in front-end development and full-stack updates, and excels in agentic workflows, where it can autonomously navigate multi-step processes. \n\nClaude 4 Sonnet maintains performance parity with its predecessor in standard mode while offering an extended reasoning mode for enhanced accuracy in math, coding, and instruction-following tasks.\n\nRead more at the [blog post here](https://www.anthropic.com/news/claude-4)",
375+
"Claude 3.7 Sonnet is an advanced large language model with improved reasoning, coding, and problem-solving capabilities. It introduces a hybrid reasoning approach, allowing users to choose between rapid responses and extended, step-by-step processing for complex tasks. The model demonstrates notable improvements in coding, particularly in front-end development and full-stack updates, and excels in agentic workflows, where it can autonomously navigate multi-step processes. \n\nClaude 3.7 Sonnet maintains performance parity with its predecessor in standard mode while offering an extended reasoning mode for enhanced accuracy in math, coding, and instruction-following tasks.\n\nRead more at the [blog post here](https://www.anthropic.com/news/claude-3-7-sonnet)",
376376
}
377377
// Vertex AI
378378
// https://cloud.google.com/vertex-ai/generative-ai/docs/partner-models/use-claude

webview-ui/src/components/settings/OpenRouterModelPicker.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ export interface OpenRouterModelPickerProps {
4141
// Featured models for Cline provider
4242
const featuredModels = [
4343
{
44-
id: "anthropic/claude-sonnet-4",
45-
description: "Best model for agentic coding",
44+
id: "anthropic/claude-3.7-sonnet",
45+
description: "Recommended for agentic coding in Cline",
4646
label: "Best",
4747
},
4848
{
@@ -336,8 +336,8 @@ const OpenRouterModelPicker: React.FC<OpenRouterModelPickerProps> = ({ isPopup }
336336
If you're unsure which model to choose, Cline works best with{" "}
337337
<VSCodeLink
338338
style={{ display: "inline", fontSize: "inherit" }}
339-
onClick={() => handleModelChange("anthropic/claude-sonnet-4")}>
340-
anthropic/claude-sonnet-4.
339+
onClick={() => handleModelChange("anthropic/claude-3.7-sonnet")}>
340+
anthropic/claude-3.7-sonnet.
341341
</VSCodeLink>
342342
You can also try searching "free" for no-cost options currently available.
343343
</>

webview-ui/src/components/welcome/WelcomeView.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,17 +38,17 @@ const WelcomeView = memo(() => {
3838
</div>
3939
<p>
4040
I can do all kinds of tasks thanks to breakthroughs in{" "}
41-
<VSCodeLink href="https://www.anthropic.com/claude/sonnet" className="inline">
42-
Claude 4 Sonnet's
41+
<VSCodeLink href="https://www.anthropic.com/news/claude-3-7-sonnet" className="inline">
42+
Claude 3.7 Sonnet's
4343
</VSCodeLink>
4444
agentic coding capabilities and access to tools that let me create & edit files, explore complex projects, use
4545
a browser, and execute terminal commands <i>(with your permission, of course)</i>. I can even use MCP to
4646
create new tools and extend my own capabilities.
4747
</p>
4848

4949
<p className="text-[var(--vscode-descriptionForeground)]">
50-
Sign up for an account to get started for free, or use an API key that provides access to models like Claude 4
51-
Sonnet.
50+
Sign up for an account to get started for free, or use an API key that provides access to models like Claude
51+
3.7 Sonnet.
5252
</p>
5353

5454
<VSCodeButton appearance="primary" onClick={handleLogin} className="w-full mt-1">

0 commit comments

Comments
 (0)