test(e2e): default the GOAT vision phase to gpt-5.6-luna

google/gemini-3.7-flash currently fails on the Provider API with a
zero-data-retention routing 404 for every request, which made the GOAT
live suite red regardless of provider changes. GPT-5.6 Luna is available
on every plan, accepts image input, and completes the vision request.
This commit is contained in:
Patrick Wozniak
2026-09-02 00:22:26 +02:00
parent d3c9832d28
commit a1bfafa556
2 changed files with 4 additions and 2 deletions
+3 -1
View File
@@ -40,7 +40,9 @@ const expectedPlan =
: testProfile === "provider"
? "provider"
: undefined
const goatVisionModel = process.env.COMMANDCODE_E2E_GOAT_VISION_MODEL ?? "google/gemini-3.7-flash"
// GPT-5.6 Luna is available on every plan and has a ZDR-capable upstream;
// Gemini 3.7 Flash currently fails with a zero-data-retention routing 404.
const goatVisionModel = process.env.COMMANDCODE_E2E_GOAT_VISION_MODEL ?? "gpt-5.6-luna"
const marker = "commandcode-live-e2e-ok"
function findPiBinary() {