OpenAI model config changed to GPT-4.1

This commit is contained in:
jdlms
2025-04-15 09:36:47 +02:00
parent 9004b91bf9
commit 633d1d286a
3 changed files with 13 additions and 13 deletions

View File

@@ -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,
},
}