We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9eea9d0 commit 3e9c83bCopy full SHA for 3e9c83b
.changeset/brown-sloths-search.md
@@ -0,0 +1,5 @@
1
+---
2
+"claude-dev": patch
3
4
+
5
+Add the o4-mini model in the isOminiModel
src/api/providers/litellm.ts
@@ -58,7 +58,7 @@ export class LiteLlmHandler implements ApiHandler {
58
content: systemPrompt,
59
}
60
const modelId = this.options.liteLlmModelId || liteLlmDefaultModelId
61
- const isOminiModel = modelId.includes("o1-mini") || modelId.includes("o3-mini")
+ const isOminiModel = modelId.includes("o1-mini") || modelId.includes("o3-mini") || modelId.includes("o4-mini")
62
63
// Configuration for extended thinking
64
const budgetTokens = this.options.thinkingBudgetTokens || 0
0 commit comments