summaryrefslogtreecommitdiffhomepage
path: root/internal/config
diff options
context:
space:
mode:
authorKujtim Hoxha <[email protected]>2025-04-15 11:54:38 +0200
committerGitHub <[email protected]>2025-04-15 11:54:38 +0200
commit6b1c64bcc75b89c530294b6a2d4404682b435d56 (patch)
tree48366a399e2ef4ded23e60097fc98c1ab053b7f5 /internal/config
parent9004b91bf98856717333b009a2ca8d60dd6e804b (diff)
parent633d1d286a17d4b8605b96b400f696819b3e9c17 (diff)
downloadopencode-6b1c64bcc75b89c530294b6a2d4404682b435d56.tar.gz
opencode-6b1c64bcc75b89c530294b6a2d4404682b435d56.zip
Merge pull request #30 from jdlms/update/config-GPT4.1
OpenAI model config changed to GPT-4.1
Diffstat (limited to 'internal/config')
-rw-r--r--internal/config/config.go4
-rw-r--r--internal/config/config_test.go6
2 files changed, 5 insertions, 5 deletions
diff --git a/internal/config/config.go b/internal/config/config.go
index 661dfc4bb..fdfacd11a 100644
--- a/internal/config/config.go
+++ b/internal/config/config.go
@@ -116,8 +116,8 @@ func Load(debug bool) error {
viper.SetDefault("providers.openai.apiKey", os.Getenv("OPENAI_API_KEY"))
viper.SetDefault("providers.openai.enabled", true)
if !defaultModelSet {
- viper.SetDefault("model.coder", models.GPT4o)
- viper.SetDefault("model.task", models.GPT4o)
+ viper.SetDefault("model.coder", models.GPT41)
+ viper.SetDefault("model.task", models.GPT41)
defaultModelSet = true
}
}
diff --git a/internal/config/config_test.go b/internal/config/config_test.go
index 9af6b479f..9111aa0fa 100644
--- a/internal/config/config_test.go
+++ b/internal/config/config_test.go
@@ -223,7 +223,7 @@ func TestLoad(t *testing.T) {
anthropicKey: "",
openaiKey: "test-key",
geminiKey: "test-key",
- expectedModel: models.GPT4o,
+ expectedModel: models.GPT41,
},
{
name: "fallback to gemini when no others",
@@ -237,9 +237,9 @@ func TestLoad(t *testing.T) {
anthropicKey: "test-key",
openaiKey: "test-key",
geminiKey: "test-key",
- explicitModel: models.GPT4o,
+ explicitModel: models.GPT41,
useExplicitModel: true,
- expectedModel: models.GPT4o,
+ expectedModel: models.GPT41,
},
}