Skip to content

Commit dc9a6aa

Browse files
Sync public snapshot from freebuff-private
Source: CodebuffAI/freebuff-private@6ff39d191cd17ca0a538b1d2c47b839a7b5be7d6
1 parent 16034ab commit dc9a6aa

2 files changed

Lines changed: 5 additions & 7 deletions

File tree

agents/base2/base2.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { buildArray } from '@codebuff/common/util/array'
22
import { COMPOSIO_META_TOOL_NAMES } from '@codebuff/common/constants/composio'
3-
import { deepseekModels } from '@codebuff/common/constants/model-config'
43
import {
54
FREEBUFF_GEMINI_THINKER_AGENT_ID,
65
FREEBUFF_GEMINI_THINKER_INSTRUCTIONS_PROMPT,
@@ -12,6 +11,7 @@ import {
1211
canFreebuffModelSpawnGeminiThinker,
1312
FREEBUFF_KIMI_MODEL_ID,
1413
FREEBUFF_MINIMAX_MODEL_ID,
14+
FREEBUFF_MINIMAX_M3_MODEL_ID,
1515
} from '@codebuff/common/constants/freebuff-models'
1616

1717
import { publisher } from '../constants'
@@ -47,13 +47,13 @@ export function createBase2(
4747
const isFree = mode === 'free' || mode === 'lite'
4848

4949
const isSonnet = false
50-
// Lite (paid Codebuff) defaults to DeepSeek V4 Flash. The unqualified
51-
// base2-free agent still uses MiniMax for legacy callers; new Freebuff
52-
// clients select explicit free variants from the model picker.
50+
// Lite mode runs MiniMax M3 (routed through the Fireworks AI API). The
51+
// unqualified base2-free agent still uses MiniMax for legacy callers; new
52+
// Freebuff clients select explicit free variants from the model picker.
5353
const model =
5454
modelOverride ??
5555
(mode === 'lite'
56-
? deepseekModels.deepseekV4Flash
56+
? FREEBUFF_MINIMAX_M3_MODEL_ID
5757
: mode === 'free'
5858
? FREEBUFF_MINIMAX_MODEL_ID
5959
: 'anthropic/claude-opus-4.8')

bun.lock

Lines changed: 0 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)