sortie-dogs 0.5.3 → 0.5.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/plugin/continuation.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ Requirements: Node.js 22.6 or newer, npm, and OpenCode.
|
|
|
20
20
|
|
|
21
21
|
Guides: [日本語](docs/guide-ja.md) · [简体中文](docs/guide-zh-CN.md) · [CLI testing](docs/cli-testing.md)
|
|
22
22
|
|
|
23
|
-
Release: [v0.5.
|
|
23
|
+
Release: [v0.5.4](https://github.com/zufall-upon/Sortie-dogs/releases/tag/v0.5.4)
|
|
24
24
|
|
|
25
25
|
## Quick start
|
|
26
26
|
|
|
@@ -885,7 +885,7 @@ export function createContinuationHooks(client, directory, policySource, timings
|
|
|
885
885
|
identity.agent !== policy().agent)
|
|
886
886
|
return;
|
|
887
887
|
}
|
|
888
|
-
if (pending || state?.ownsHostContinuation === true)
|
|
888
|
+
if (pending || (state?.ownsHostContinuation === true && input.overflow !== true))
|
|
889
889
|
output.enabled = false;
|
|
890
890
|
},
|
|
891
891
|
observeModel(sessionID, model, synthetic = false) {
|