feat(explore): add github-copilot/gpt-5-mini to fallback chain (#1091)

* feat(explore): add github-copilot/gpt-5-mini to fallback chain

* test(explore): add tests for github-copilot/gpt-5-mini fallback

---------

Co-authored-by: Suyeol Jeon <devxoul@gmail.com>
This commit is contained in:
YeonGyu-Kim
2026-01-25 14:53:11 +09:00
committed by GitHub
parent 59c98cca77
commit 9f830e7f98
5 changed files with 29 additions and 6 deletions
+1
View File
@@ -35,6 +35,7 @@ export const AGENT_MODEL_REQUIREMENTS: Record<string, ModelRequirement> = {
explore: {
fallbackChain: [
{ providers: ["anthropic", "opencode"], model: "claude-haiku-4-5" },
{ providers: ["github-copilot"], model: "gpt-5-mini" },
{ providers: ["opencode"], model: "gpt-5-nano" },
],
},