11import { buildArray } from '@codebuff/common/util/array'
22import { COMPOSIO_META_TOOL_NAMES } from '@codebuff/common/constants/composio'
3- import { deepseekModels } from '@codebuff/common/constants/model-config'
43import {
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
1717import { 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' )
0 commit comments