File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
src/main/kotlin/ee/carlrobert/codegpt/settings/models Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments