Skip to content

Commit 9bddd9a

Browse files
authored
Change default OpenRouter model to non-moderated (RooCodeInc#1683)
* Change default OR model to non-moderated * Create breezy-bobcats-change.md
1 parent 10b8ee4 commit 9bddd9a

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"claude-dev": patch
3+
---
4+
5+
Change default OpenRouter model to anthropic/claude-3.5-sonnet

src/shared/api.ts

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

173173
// OpenRouter
174174
// https://openrouter.ai/models?order=newest&supported_parameters=tools
175-
export const openRouterDefaultModelId = "anthropic/claude-3.5-sonnet:beta" // will always exist in openRouterModels
175+
export const openRouterDefaultModelId = "anthropic/claude-3.5-sonnet" // will always exist in openRouterModels
176176
export const openRouterDefaultModelInfo: ModelInfo = {
177177
maxTokens: 8192,
178178
contextWindow: 200_000,
@@ -184,7 +184,7 @@ export const openRouterDefaultModelInfo: ModelInfo = {
184184
cacheWritesPrice: 3.75,
185185
cacheReadsPrice: 0.3,
186186
description:
187-
"The new Claude 3.5 Sonnet delivers better-than-Opus capabilities, faster-than-Sonnet speeds, at the same Sonnet prices. Sonnet is particularly good at:\n\n- Coding: New Sonnet scores ~49% on SWE-Bench Verified, higher than the last best score, and without any fancy prompt scaffolding\n- Data science: Augments human data science expertise; navigates unstructured data while using multiple tools for insights\n- Visual processing: excelling at interpreting charts, graphs, and images, accurately transcribing text to derive insights beyond just the text alone\n- Agentic tasks: exceptional tool use, making it great at agentic tasks (i.e. complex, multi-step problem solving tasks that require engaging with other systems)\n\n#multimodal\n\n_This is a faster endpoint, made available in collaboration with Anthropic, that is self-moderated: response moderation happens on the provider's side instead of OpenRouter's. For requests that pass moderation, it's identical to the [Standard](/anthropic/claude-3.5-sonnet) variant._",
187+
"The new Claude 3.5 Sonnet delivers better-than-Opus capabilities, faster-than-Sonnet speeds, at the same Sonnet prices. Sonnet is particularly good at:\n\n- Coding: New Sonnet scores ~49% on SWE-Bench Verified, higher than the last best score, and without any fancy prompt scaffolding\n- Data science: Augments human data science expertise; navigates unstructured data while using multiple tools for insights\n- Visual processing: excelling at interpreting charts, graphs, and images, accurately transcribing text to derive insights beyond just the text alone\n- Agentic tasks: exceptional tool use, making it great at agentic tasks (i.e. complex, multi-step problem solving tasks that require engaging with other systems)\n\n#multimodal",
188188
}
189189

190190
// Vertex AI

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -228,8 +228,8 @@ const OpenRouterModelPicker: React.FC<OpenRouterModelPickerProps> = ({ isPopup }
228228
If you're unsure which model to choose, Cline works best with{" "}
229229
<VSCodeLink
230230
style={{ display: "inline", fontSize: "inherit" }}
231-
onClick={() => handleModelChange("anthropic/claude-3.5-sonnet:beta")}>
232-
anthropic/claude-3.5-sonnet:beta.
231+
onClick={() => handleModelChange("anthropic/claude-3.5-sonnet")}>
232+
anthropic/claude-3.5-sonnet.
233233
</VSCodeLink>
234234
You can also try searching "free" for no-cost options currently available.
235235
</>

0 commit comments

Comments
 (0)