55 CLAUDE_SONNET_CURRENT_MODEL_ID ,
66} from '@/lib/ai-gateway/providers/anthropic.constants' ;
77import type { OpenRouterReasoningConfig } from '@/lib/ai-gateway/providers/openrouter/types' ;
8- import type { ModelSettings , OpenCodeSettings , Verbosity } from '@kilocode/db/schema-types' ;
8+ import type { OpenCodeSettings , Verbosity } from '@kilocode/db/schema-types' ;
99import { qwen36_plus_model } from '@/lib/ai-gateway/providers/qwen' ;
1010
1111type AutoModel = {
@@ -19,7 +19,6 @@ type AutoModel = {
1919 input_cache_read_price : string | undefined ;
2020 input_cache_write_price : string | undefined ;
2121 supports_images : boolean ;
22- roocode_settings : ModelSettings | undefined ;
2322 opencode_settings : OpenCodeSettings | undefined ;
2423} ;
2524
@@ -110,7 +109,6 @@ export const KILO_AUTO_FRONTIER_MODEL: AutoModel = {
110109 input_cache_read_price : '0.0000005' ,
111110 input_cache_write_price : '0.00000625' ,
112111 supports_images : true ,
113- roocode_settings : undefined ,
114112 opencode_settings : {
115113 family : 'claude' ,
116114 prompt : 'anthropic' ,
@@ -129,7 +127,6 @@ export const KILO_AUTO_FREE_MODEL: AutoModel = {
129127 input_cache_read_price : '0' ,
130128 input_cache_write_price : '0' ,
131129 supports_images : false ,
132- roocode_settings : undefined ,
133130 opencode_settings : undefined ,
134131} ;
135132
@@ -144,7 +141,6 @@ export const KILO_AUTO_BALANCED_MODEL: AutoModel = {
144141 input_cache_read_price : '0.0000000325' ,
145142 input_cache_write_price : '0.00000040625' ,
146143 supports_images : true ,
147- roocode_settings : undefined ,
148144 opencode_settings : {
149145 ai_sdk_provider : 'openai-compatible' ,
150146 } ,
@@ -161,7 +157,6 @@ export const KILO_AUTO_SMALL_MODEL: AutoModel = {
161157 input_cache_read_price : '0.000000005' ,
162158 input_cache_write_price : undefined ,
163159 supports_images : true ,
164- roocode_settings : undefined ,
165160 opencode_settings : undefined ,
166161} ;
167162
0 commit comments