summaryrefslogtreecommitdiff
path: root/internal/hexaiaction/prompts_more_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/hexaiaction/prompts_more_test.go')
-rw-r--r--internal/hexaiaction/prompts_more_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/hexaiaction/prompts_more_test.go b/internal/hexaiaction/prompts_more_test.go
index cfccd0c..a4410e5 100644
--- a/internal/hexaiaction/prompts_more_test.go
+++ b/internal/hexaiaction/prompts_more_test.go
@@ -35,8 +35,8 @@ func TestReqOptsFrom_Override(t *testing.T) {
cfg := appconfig.App{
MaxTokens: 123,
Provider: "openai",
- CopilotModel: "gpt-4o",
- CodeActionConfigs: []appconfig.SurfaceConfig{{Provider: "copilot", Model: "override", Temperature: ptrFloat(0.6)}},
+ AnthropicModel: "claude-3-5-sonnet",
+ CodeActionConfigs: []appconfig.SurfaceConfig{{Provider: "anthropic", Model: "override", Temperature: ptrFloat(0.6)}},
}
req := reqOptsFrom(cfg)
if req.model != "override" {