Skip to content

Commit 793a6ec

Browse files
committed
Add missing kilocode_change marker
1 parent e623ce1 commit 793a6ec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/api/providers/fetchers/modelCache.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ import { getIOIntelligenceModels } from "./io-intelligence"
2727
import { getOvhCloudAiEndpointsModels } from "./ovhcloud"
2828
import { getChutesModels } from "./chutes"
2929
import { getGeminiModels } from "./gemini"
30+
import { getInceptionModels } from "./inception"
3031
// kilocode_change end
3132

3233
import { getDeepInfraModels } from "./deepinfra"
3334
import { getHuggingFaceModels } from "./huggingface"
34-
import { getInceptionModels } from "./inception"
3535

3636
const 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

0 commit comments

Comments
 (0)