-
Notifications
You must be signed in to change notification settings - Fork 1
Fix permission denial keyword types and pin examples to gpt-5.2 #18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
|
|
@@ -32,6 +32,11 @@ | |||||||
| :args (s/cat :client ::specs/client) | ||||||||
| :ret nil?) | ||||||||
|
|
||||||||
| (s/fdef github.copilot-sdk.client/approve-all | ||||||||
| :args (s/cat :request ::specs/permission-request | ||||||||
|
||||||||
| :args (s/cat :request ::specs/permission-request | |
| :args (s/cat :request (s/or :normalized ::specs/permission-request | |
| :wire map?) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This section is labeled “Dynamic Model Switching”, but the session is created with
:model "gpt-5.2"and thenswitch-model!is called with the same model, so it doesn't actually demonstrate switching. Either start the session without an explicit model and switch togpt-5.2, or switch to a different known-good model while keeping the initial model pinned for the earlier queries.