@@ -28,7 +28,6 @@ export const FREEBUFF_ROOT_AGENT_IDS = [
2828 'base2-free' ,
2929 'base2-free-kimi' ,
3030 'base2-free-deepseek' ,
31- 'base2-free-deepseek-v4' ,
3231] as const
3332const FREEBUFF_ROOT_AGENT_ID_SET : ReadonlySet < string > = new Set (
3433 FREEBUFF_ROOT_AGENT_IDS ,
@@ -44,7 +43,7 @@ export const FREEBUFF_ROOT_AGENT_ID_BY_MODEL: Record<string, string> = {
4443}
4544
4645export const FREEBUFF_REVIEWER_AGENT_ID_BY_MODEL : Record < string , string > = {
47- [ FREEBUFF_MINIMAX_MODEL_ID ] : 'code-reviewer-lite ' ,
46+ [ FREEBUFF_MINIMAX_MODEL_ID ] : 'code-reviewer-minimax ' ,
4847 [ FREEBUFF_KIMI_MODEL_ID ] : 'code-reviewer-kimi' ,
4948 [ FREEBUFF_DEEPSEEK_V4_PRO_MODEL_ID ] : 'code-reviewer-deepseek' ,
5049}
@@ -66,7 +65,6 @@ export const FREE_MODE_AGENT_MODELS: Record<string, Set<string>> = {
6665 'base2-free' : new Set ( [ FREEBUFF_MINIMAX_MODEL_ID , FREEBUFF_GLM_MODEL_ID ] ) ,
6766 'base2-free-kimi' : new Set ( [ FREEBUFF_KIMI_MODEL_ID ] ) ,
6867 'base2-free-deepseek' : new Set ( [ FREEBUFF_DEEPSEEK_V4_PRO_MODEL_ID ] ) ,
69- 'base2-free-deepseek-v4' : new Set ( [ FREEBUFF_DEEPSEEK_V4_PRO_MODEL_ID ] ) ,
7068
7169 // File exploration agents
7270 'file-picker' : new Set ( [ 'google/gemini-2.5-flash-lite' ] ) ,
@@ -87,7 +85,7 @@ export const FREE_MODE_AGENT_MODELS: Record<string, Set<string>> = {
8785 'editor-lite' : new Set ( FREEBUFF_ALLOWED_MODEL_IDS ) ,
8886
8987 // Code reviewer for free mode
90- 'code-reviewer-lite ' : new Set ( [
88+ 'code-reviewer-minimax ' : new Set ( [
9189 FREEBUFF_MINIMAX_MODEL_ID ,
9290 FREEBUFF_GLM_MODEL_ID ,
9391 ] ) ,
0 commit comments