File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -139,14 +139,14 @@ export class ConfigLoader {
139139 const config = this . loadConfig ( ) ;
140140
141141 // Extract from config or fall back to defaults
142- const primary = config . model || 'berget/glm-4.7 ' ;
142+ const primary = config . model || 'berget/kimi-k2.6 ' ;
143143 const small = config . small_model || 'berget/gpt-oss' ;
144144
145145 return { primary, small } ;
146146 } catch {
147147 // Fallback to defaults when no config exists (init scenario)
148148 return {
149- primary : 'berget/glm-4.7 ' ,
149+ primary : 'berget/kimi-k2.6 ' ,
150150 small : 'berget/gpt-oss' ,
151151 } ;
152152 }
@@ -190,9 +190,9 @@ export class ConfigLoader {
190190
191191 // Fallback to defaults
192192 return {
193- 'glm-4.7 ' : {
194- limit : { context : 90_000 , output : 4000 } ,
195- name : 'GLM-4.7 ' ,
193+ 'kimi-k2.6 ' : {
194+ limit : { context : 256_000 , output : 16_000 } ,
195+ name : 'Kimi K2.6 ' ,
196196 } ,
197197 'gpt-oss' : {
198198 limit : { context : 128_000 , output : 4000 } ,
You can’t perform that action at this time.
0 commit comments