This commit is contained in:
Colin McDonnell
2026-02-14 03:58:27 +00:00
committed by pullfrog[bot]
parent 8fd2b6aacb
commit b80c78bdbe
+2 -2
View File
@@ -311,9 +311,9 @@ async function runTestForAgent(ctx: RunContext): Promise<ValidationResult> {
env.PULLFROG_TEST_REPO_SETUP = testConfig.repoSetup; env.PULLFROG_TEST_REPO_SETUP = testConfig.repoSetup;
} }
// opencode: use codex (OpenAI) to avoid google quota issues and gemini doom-looping // opencode: use anthropic sonnet to avoid google quota issues and gemini doom-looping
if (ctx.agent === "opencode") { if (ctx.agent === "opencode") {
env.OPENCODE_MODEL ??= "openai/gpt-5.1-codex-mini"; env.OPENCODE_MODEL ??= "anthropic/claude-sonnet-4-5";
} }
// gemini: use flash for all tests (including mini-effort) to avoid pro quota limits // gemini: use flash for all tests (including mini-effort) to avoid pro quota limits