fix: remove github-copilot association from gpt-5-nano model mapping

explore agent uses opencode/gpt-5-nano exclusively — github-copilot
should not be associated with gpt-5-nano in docs, tests, or fallback chains.
This commit is contained in:
justsisyphus
2026-01-25 12:45:11 +09:00
parent 20cca35157
commit c8cc94cd3c
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -236,9 +236,9 @@ describe("resolveModelWithFallback", () => {
// #given
const input: ExtendedModelResolutionInput = {
fallbackChain: [
{ providers: ["anthropic", "opencode", "github-copilot"], model: "gpt-5-nano" },
{ providers: ["anthropic", "opencode"], model: "gpt-5-nano" },
],
availableModels: new Set(["opencode/gpt-5-nano", "github-copilot/gpt-5-nano-preview"]),
availableModels: new Set(["opencode/gpt-5-nano"]),
systemDefaultModel: "google/gemini-3-pro",
}