fix(github-copilot): enable xhigh for gpt-5.4 (#66437)

* fix(github-copilot): enable xhigh for gpt-5.4

* Update CHANGELOG.md
This commit is contained in:
Vincent Koc
2026-04-14 09:58:19 +01:00
committed by GitHub
parent 4f15d77ecc
commit a70fdc88e0
2 changed files with 2 additions and 1 deletions

View File

@@ -10,7 +10,7 @@ import { buildGithubCopilotReplayPolicy } from "./replay-policy.js";
import { wrapCopilotProviderStream } from "./stream.js";
const COPILOT_ENV_VARS = ["COPILOT_GITHUB_TOKEN", "GH_TOKEN", "GITHUB_TOKEN"];
const COPILOT_XHIGH_MODEL_IDS = ["gpt-5.2", "gpt-5.2-codex"] as const;
const COPILOT_XHIGH_MODEL_IDS = ["gpt-5.4", "gpt-5.2", "gpt-5.2-codex"] as const;
type GithubCopilotPluginConfig = {
discovery?: {