We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11b22ed commit efe7709Copy full SHA for efe7709
core/src/main/kotlin/cc/unitmesh/devti/settings/model/LLMModelManager.kt
@@ -56,7 +56,7 @@ class LLMModelManager(
56
githubModels?.forEach { model ->
57
models.add(ModelItem(
58
displayName = "Github: ${model.id}",
59
- id = model.id,
+ modelId = model.id,
60
isCustom = false
61
))
62
}
@@ -66,7 +66,7 @@ class LLMModelManager(
66
userModels.forEach { llm ->
67
68
displayName = llm.name,
69
- id = llm.name,
+ modelId = llm.name,
70
isCustom = true
71
72
0 commit comments