chore: bump to 0.1.10 with github-copilot-sdk >=0.3.0#128
Merged
Conversation
The SDK ships a bundled copilot CLI binary used for JSON-RPC session.create calls. The 0.2.2 wheel bundles CLI 1.0.21, which predates newer model IDs (e.g. claude-opus-4.7-1m-internal) and rejects them locally with: JSON-RPC -32603: Model "<id>" is not available 0.3.0 bundles CLI 1.0.36-0, which accepts the current Copilot model catalog. Also adds CHANGELOG.md (Keep a Changelog format) covering changes since v0.1.9. Verified: - make check (ruff + ty) passes - pytest -m 'not performance' passes (1955 passed, 9 skipped) - examples/simple-qa.yaml runs end-to-end against claude-haiku-4.5, claude-sonnet-4.6, claude-opus-4.7, claude-opus-4.7-1m-internal, gpt-5.4, gpt-5-mini - examples/for-each-simple.yaml runs end-to-end Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
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.
Why
The
github-copilot-sdkPython package ships a bundledcopilotCLI binary that handles JSON-RPCsession.createcalls. Version0.2.2bundles CLI1.0.21, which predates newer Copilot model IDs and rejects them locally:0.3.0bundles CLI1.0.36-0, which accepts the current Copilot model catalog (including allclaude-opus-4.7*variants).Changes
github-copilot-sdkto>=0.3.0(pyproject.toml,uv.lock)0.1.9→0.1.10CHANGELOG.md(Keep a Changelog format) covering everything sincev0.1.9Verification
make check(ruff lint, ruff format, ty typecheck) — passesuv run pytest -m 'not performance'— 1955 passed, 9 skippeduv run conductor run examples/simple-qa.yaml— passes against:claude-haiku-4.5claude-sonnet-4.6claude-opus-4.7claude-opus-4.7-1m-internal(the originally-failing model)gpt-5.4gpt-5-miniuv run conductor run examples/for-each-simple.yaml— passes end-to-end