@@ -19,16 +19,16 @@ describe("Ollama Fetcher", () => {
1919 const parsedModel = parseOllamaModel ( modelData )
2020
2121 expect ( parsedModel ) . toEqual ( {
22- maxTokens : 40960 ,
23- contextWindow : 40960 ,
22+ maxTokens : 4096 , // kilocode_change
23+ contextWindow : 4096 , // kilocode_change
2424 supportsImages : false ,
2525 supportsComputerUse : false ,
2626 supportsPromptCache : true ,
2727 inputPrice : 0 ,
2828 outputPrice : 0 ,
2929 cacheWritesPrice : 0 ,
3030 cacheReadsPrice : 0 ,
31- description : "Family: qwen3, Context: 40960 , Size: 32.8B" ,
31+ description : "Family: qwen3, Context: 4096 , Size: 32.8B" , // kilocode_change
3232 } )
3333 } )
3434
@@ -44,16 +44,16 @@ describe("Ollama Fetcher", () => {
4444 const parsedModel = parseOllamaModel ( modelDataWithNullFamilies as any )
4545
4646 expect ( parsedModel ) . toEqual ( {
47- maxTokens : 40960 ,
48- contextWindow : 40960 ,
47+ maxTokens : 4096 , // kilocode_change
48+ contextWindow : 4096 , // kilocode_change
4949 supportsImages : false ,
5050 supportsComputerUse : false ,
5151 supportsPromptCache : true ,
5252 inputPrice : 0 ,
5353 outputPrice : 0 ,
5454 cacheWritesPrice : 0 ,
5555 cacheReadsPrice : 0 ,
56- description : "Family: qwen3, Context: 40960 , Size: 32.8B" ,
56+ description : "Family: qwen3, Context: 4096 , Size: 32.8B" , // kilocode_change
5757 } )
5858 } )
5959 } )
0 commit comments