Skip to content

Commit 9ac26d9

Browse files
committed
feat: add Mercury 2 model
1 parent 0fffa2e commit 9ac26d9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/main/kotlin/ee/carlrobert/codegpt/settings/models/ModelProvider.kt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ private fun defaultModelDisplayName(modelId: String): String {
185185
MistralAIModels.Chat.Codestral.id -> "Codestral"
186186

187187
// Inception
188-
Mercury.id -> "Mercury"
188+
Mercury2.id -> "Mercury 2"
189189
MERCURY_CODER -> "Mercury Coder"
190190

191191
else -> modelId
@@ -332,9 +332,9 @@ val Devstral2: LLModel = LLModel(
332332
maxOutputTokens = 65_536,
333333
)
334334

335-
val Mercury: LLModel = LLModel(
335+
val Mercury2: LLModel = LLModel(
336336
provider = InceptionAILLMClient.Inception,
337-
id = "mercury",
337+
id = "mercury-2",
338338
capabilities = listOf(
339339
LLMCapability.Temperature,
340340
LLMCapability.Schema.JSON.Basic,
@@ -614,8 +614,8 @@ private class InceptionModelProvider : ModelProvider {
614614
private fun inceptionMercury(): ModelSelection {
615615
return ModelSelection(
616616
provider = serviceType,
617-
llmModel = Mercury,
618-
displayName = defaultModelDisplayName(Mercury.id),
617+
llmModel = Mercury2,
618+
displayName = defaultModelDisplayName(Mercury2.id),
619619
)
620620
}
621621

0 commit comments

Comments
 (0)