Jelajahi Sumber

fix(opencode): pass configured headers to Copilot models (#32815)

Aiden Cline 2 bulan lalu
induk
melakukan
ec50db334b
1 mengubah file dengan 1 tambahan dan 0 penghapusan
  1. 1 0
      packages/opencode/src/plugin/github-copilot/copilot.ts

+ 1 - 0
packages/opencode/src/plugin/github-copilot/copilot.ts

@@ -70,6 +70,7 @@ export async function CopilotAuthPlugin(input: PluginInput): Promise<Hooks> {
         return CopilotModels.get(
           base(auth.enterpriseUrl),
           {
+            ...(provider.options?.headers as Record<string, string> | undefined),
             Authorization: `Bearer ${auth.refresh}`,
             "User-Agent": `opencode/${InstallationVersion}`,
             "X-GitHub-Api-Version": API_VERSION,