mirror of
https://github.com/carlrobertoh/ProxyAI.git
synced 2026-05-20 01:02:02 +00:00
fix: proxyai default cc model
This commit is contained in:
parent
bfba8b2042
commit
329e8fde6f
2 changed files with 2 additions and 2 deletions
|
|
@ -8,7 +8,7 @@ import javax.swing.Icon
|
|||
object CodeGPTAvailableModels {
|
||||
|
||||
val DEFAULT_CHAT_MODEL = CodeGPTModel("GPT-4.1 Mini", "gpt-4.1-mini", Icons.Google, ANONYMOUS)
|
||||
val DEFAULT_CODE_MODEL = CodeGPTModel("Codestral", "codestral", Icons.Mistral, ANONYMOUS)
|
||||
val DEFAULT_CODE_MODEL = CodeGPTModel("Qwen 2.5 Coder", "qwen-2.5-32b-code", Icons.Qwen, ANONYMOUS)
|
||||
|
||||
@JvmStatic
|
||||
fun getToolWindowModels(pricingPlan: PricingPlan?): List<CodeGPTModel> {
|
||||
|
|
|
|||
|
|
@ -22,5 +22,5 @@ class CodeGPTServiceChatCompletionSettingsState : BaseState() {
|
|||
|
||||
class CodeGPTServiceCodeCompletionSettingsState : BaseState() {
|
||||
var codeCompletionsEnabled by property(true)
|
||||
var model by string(CodeGPTAvailableModels.DEFAULT_CODE_MODEL.toString())
|
||||
var model by string(CodeGPTAvailableModels.DEFAULT_CODE_MODEL.code)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue