feat: add GitHub Copilot OAuth provider for individual users#25
Open
cookiespiggy wants to merge 1 commit into
Open
feat: add GitHub Copilot OAuth provider for individual users#25cookiespiggy wants to merge 1 commit into
cookiespiggy wants to merge 1 commit into
Conversation
Adds GitHub Copilot as an LLM provider that authenticates via GitHub OAuth device-code flow. Personal subscribers use the raw GitHub OAuth token (ghu_*) directly with api.individual.githubcopilot.com, bypassing the Copilot token exchange (which only works for Enterprise/Business). Changes: - internal/auth/copilot.go: OAuth device-code login, GitHub token polling, Copilot token exchange (unused for personal, ready for Enterprise) - providers.json: github-copilot provider with 8 models, OAuth login config, individual endpoint, correct inference headers (X-Initiator: agent) - UI: API key row hidden for OAuth-only providers; model selection triggers OAuth login when no credential is stored; login-done applies pending model - config: ProviderHasAPIKeyAuth(), HasOAuthLogin() helpers - Tests: updated golden data, provider count, model parse, effort defaults - Cost table: Copilot model pricing added
Collaborator
|
@cookiespiggy Did you actually test it? |
Author
|
Dear email is ok!
|
Author
E2E tests passed. A small note: we shouldn't hardcode the model. Please list all GitHub Copilot supported models to let users pick. |
Collaborator
|
I tested it and I failed to get an auth token from Github. Can you give me the steps to step so I can reproduce the success path at least
I have a script that runs at release time to fetch the latest models, I'll add copilot to it |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds GitHub Copilot as an LLM provider that authenticates via GitHub OAuth device-code flow. Personal subscribers use the raw GitHub OAuth token (
ghu_*) directly withapi.individual.githubcopilot.com, bypassing the Copilot token exchange (which only works for Enterprise/Business).Key Changes
github-copilotprovider with 8 models (gpt-5-mini,gpt-5.4,gpt-5.4-mini,gpt-5.5,claude-sonnet-4.6,claude-opus-4.7,claude-haiku-4.5,gemini-2.5-pro), OAuth login config with device code, correct inference headers (X-Initiator: agent)ProviderHasAPIKeyAuth()andHasOAuthLogin()helpers for checking OAuth-only provider status