Skip to content

Commit c248e05

Browse files
committed
Simplify free model selection
1 parent 1f3f8d6 commit c248e05

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

agents/base2/base2.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,7 @@ export function createBase2(
2525
const isFree = mode === 'free' || mode === 'lite'
2626

2727
const isSonnet = false
28-
const model =
29-
mode === 'free'
30-
? 'moonshotai/kimi-k2.6'
31-
: mode === 'lite'
32-
? 'moonshotai/kimi-k2.6'
33-
: 'anthropic/claude-opus-4.7'
28+
const model = isFree ? 'moonshotai/kimi-k2.6' : 'anthropic/claude-opus-4.7'
3429

3530
return {
3631
publisher,

0 commit comments

Comments
 (0)