You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The direct commit "Faster examples" (c99e97d, 2026-02-20T14:56:25Z) switched non-streaming examples to claude-haiku-4.5 for performance. This was not documented in the CHANGELOG.
Notes
All other documentation was already up to date from the merged PRs themselves.
The patch file is available in the agent-artifacts artifact in the workflow run linked above.
To apply the patch locally:
# Download the artifact from the workflow run https://github.com/copilot-community-sdk/copilot-sdk-clojure/actions/runs/22228916982# (Use GitHub MCP tools if gh CLI is not available)
gh run download 22228916982 -n agent-artifacts
# The patch file will be at agent-artifacts/tmp/gh-aw/aw.patch after download# Apply the patch
git am agent-artifacts/tmp/gh-aw/aw.patch
Show patch (31 lines)
From 42a631877c8f0e1fa925fdee293363c4303ed831 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]" <github-actions[bot]@users.noreply.github.com>
Date: Fri, 20 Feb 2026 15:01:51 +0000
Subject: [PATCH] docs: document example model switch to claude-haiku-4.5 in
CHANGELOG
Add CHANGELOG entry for the 'Faster examples' commit that switched
non-streaming examples from gpt-5.2 to claude-haiku-4.5 for faster
and cheaper demonstrations.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
---
CHANGELOG.md | 1 +
1 file changed, 1 insertion(+)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index b1ceba3..ac540a3 100644
--- a/CHANGELOG.md+++ b/CHANGELOG.md@@ -15,6 +15,7 @@ All notable changes to this project will be documented in this file. This change
### Changed
- MCP local server example now passes `:on-permission-request copilot/approve-all` (required for MCP tool execution under deny-by-default)
+- Examples now use `claude-haiku-4.5` as the default model for non-streaming queries (faster and cheaper for demonstrations); streaming examples retain `gpt-5.2`
### Fixed
- Permission denial result `:kind` now consistently uses keywords (not strings) in default handler responses, matching specs and `approve-all` behavior
--
2.52.0
Documentation Updates - 2026-02-20
This PR adds a missing CHANGELOG entry for the "Faster examples" commit pushed directly to main today.
Features Documented
gpt-5.2toclaude-haiku-4.5for non-streaming examples (direct push, not a PR)Changes Made
CHANGELOG.md[Unreleased]### Changedsection to note that non-streaming examples now useclaude-haiku-4.5instead ofgpt-5.2Validation
bb --config /dev/null script/validate_docs.cljpassed (9 files, 0 warnings)Context
Scanned merged PRs from 2026-02-19 to 2026-02-20:
[docs] Update getting-started with permissions and :client-name— already a docs PR, no further action neededfeat: add :client-name to session config— already documented in API.md, CHANGELOG, and getting-started.mdFix permission denial keyword types and pin examples to gpt-5.2— already documented in CHANGELOG and API.mdThe direct commit "Faster examples" (c99e97d, 2026-02-20T14:56:25Z) switched non-streaming examples to
claude-haiku-4.5for performance. This was not documented in the CHANGELOG.Notes
All other documentation was already up to date from the merged PRs themselves.
Note
This was originally intended as a pull request, but the git push operation failed.
Workflow Run: View run details and download patch artifact
The patch file is available in the
agent-artifactsartifact in the workflow run linked above.To apply the patch locally:
Show patch (31 lines)