diff --git a/.changeset/context-overflow-normalization.md b/.changeset/context-overflow-normalization.md deleted file mode 100644 index 63db039..0000000 --- a/.changeset/context-overflow-normalization.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@aliou/pi-synthetic": patch ---- - -Normalize Synthetic context overflow errors so Pi's built-in compact-and-retry triggers. - -Some Synthetic backends return overflow errors that Pi does not detect natively (e.g. "The input (N tokens) is longer than the model's context length" or "Context limit exceeded"). A `message_end` handler now prefixes these with `context_length_exceeded:` so Pi recognizes them and auto-compacts. diff --git a/.changeset/web-search-truncation.md b/.changeset/web-search-truncation.md deleted file mode 100644 index 53461f2..0000000 --- a/.changeset/web-search-truncation.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@aliou/pi-synthetic": patch ---- - -Add truncation and temp file persistence to `synthetic_web_search` tool diff --git a/CHANGELOG.md b/CHANGELOG.md index b5849ff..f4ce043 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # @aliou/pi-synthetic +## 0.17.1 + +### Patch Changes + +- 0404301: Normalize Synthetic context overflow errors so Pi's built-in compact-and-retry triggers. + + Some Synthetic backends return overflow errors that Pi does not detect natively (e.g. "The input (N tokens) is longer than the model's context length" or "Context limit exceeded"). A `message_end` handler now prefixes these with `context_length_exceeded:` so Pi recognizes them and auto-compacts. + +- 553ac07: Add truncation and temp file persistence to `synthetic_web_search` tool + ## 0.17.0 ### Minor Changes diff --git a/package.json b/package.json index c88c91f..913368e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@aliou/pi-synthetic", - "version": "0.17.0", + "version": "0.17.1", "license": "MIT", "type": "module", "private": false,