File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/api/providers/fetchers Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -27,11 +27,11 @@ import { getIOIntelligenceModels } from "./io-intelligence"
2727import { getOvhCloudAiEndpointsModels } from "./ovhcloud"
2828import { getChutesModels } from "./chutes"
2929import { getGeminiModels } from "./gemini"
30+ import { getInceptionModels } from "./inception"
3031// kilocode_change end
3132
3233import { getDeepInfraModels } from "./deepinfra"
3334import { getHuggingFaceModels } from "./huggingface"
34- import { getInceptionModels } from "./inception"
3535
3636const memoryCache = new NodeCache ( { stdTTL : 5 * 60 , checkperiod : 5 * 60 } )
3737
@@ -133,10 +133,10 @@ export const getModels = async (options: GetModelsOptions): Promise<ModelRecord>
133133 case "huggingface" :
134134 models = await getHuggingFaceModels ( )
135135 break
136+ // kilocode_change start
136137 case "inception" :
137138 models = await getInceptionModels ( )
138139 break
139- // kilocode_change start
140140 case "ovhcloud" :
141141 models = await getOvhCloudAiEndpointsModels ( )
142142 break
You can’t perform that action at this time.
0 commit comments