agenr 0.9.12 → 0.9.14
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/CHANGELOG.md +19 -0
- package/dist/{chunk-OOMINNDQ.js → chunk-EY2VW6OI.js} +1 -1
- package/dist/cli-main.js +1 -1
- package/dist/openclaw-plugin/index.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-2HANITK2.js +0 -1737
- package/dist/chunk-3BELR4QM.js +0 -2357
- package/dist/chunk-3DMRH57X.js +0 -2365
- package/dist/chunk-5K2G3I2J.js +0 -1736
- package/dist/chunk-5RBQPXEB.js +0 -1822
- package/dist/chunk-5ZIY7EEF.js +0 -788
- package/dist/chunk-736UKYBP.js +0 -774
- package/dist/chunk-AJR3OWNP.js +0 -1912
- package/dist/chunk-BGBXNBNL.js +0 -1649
- package/dist/chunk-BHV7UGJX.js +0 -1650
- package/dist/chunk-C55MCAEN.js +0 -2508
- package/dist/chunk-DMPHUNM6.js +0 -1737
- package/dist/chunk-G4NHDXJC.js +0 -2355
- package/dist/chunk-I5EOJBPQ.js +0 -1737
- package/dist/chunk-IC7FMYA3.js +0 -2147
- package/dist/chunk-JSPUNQPG.js +0 -608
- package/dist/chunk-JWL64JUH.js +0 -1886
- package/dist/chunk-L7VVZDWF.js +0 -792
- package/dist/chunk-NUFBXKLH.js +0 -1912
- package/dist/chunk-ONK37URD.js +0 -1714
- package/dist/chunk-P2CUJC4C.js +0 -2524
- package/dist/chunk-RMYAYY4E.js +0 -1908
- package/dist/chunk-RYFTWDLF.js +0 -2147
- package/dist/chunk-TNJ7U5WA.js +0 -2356
- package/dist/chunk-TOCUZX2Y.js +0 -1786
- package/dist/chunk-TRZJU4DT.js +0 -2524
- package/dist/chunk-TW7FHRVW.js +0 -586
- package/dist/chunk-U3C43QWU.js +0 -2364
- package/dist/chunk-U6PVSJJY.js +0 -212
- package/dist/chunk-UQLMQXKT.js +0 -796
- package/dist/chunk-VJ2WB7JG.js +0 -608
- package/dist/chunk-ZSUYAFMS.js +0 -1912
- package/dist/chunk-ZX2D3JMQ.js +0 -1745
- package/dist/co-recall-LNTNKBRK.js +0 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.9.14 - 2026-02-27
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
- Fixed a pi-ai dual module registry bug that caused bundled `streamSimple`
|
|
7
|
+
calls and consolidate LLM dedup pre-screening to silently fail. `tsup`
|
|
8
|
+
split pi-ai imports across separate ESM instances with separate API
|
|
9
|
+
registries; `runSimpleStream` now imports from
|
|
10
|
+
`@mariozechner/pi-ai/dist/stream.js` so provider registration and stream
|
|
11
|
+
lookup use the same registry instance.
|
|
12
|
+
- Reverted the 0.9.13 workaround that made consolidate loose-band LLM dedup
|
|
13
|
+
opt-in only when `--loose-threshold` was set.
|
|
14
|
+
|
|
15
|
+
## 0.9.13 - 2026-02-27
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
- LLM dedup pre-screening in consolidate is now opt-in via --loose-threshold.
|
|
19
|
+
Without it, consolidate uses subject-aware auto-union in the loose band but
|
|
20
|
+
skips LLM calls, avoiding potentially hundreds of sequential API round-trips.
|
|
21
|
+
|
|
3
22
|
## 0.9.12 - 2026-02-27
|
|
4
23
|
|
|
5
24
|
### Fixed
|
|
@@ -1158,7 +1158,7 @@ function resolveCredentials(params) {
|
|
|
1158
1158
|
}
|
|
1159
1159
|
|
|
1160
1160
|
// src/llm/stream.ts
|
|
1161
|
-
import { streamSimple } from "@mariozechner/pi-ai";
|
|
1161
|
+
import { streamSimple } from "@mariozechner/pi-ai/dist/stream.js";
|
|
1162
1162
|
function logVerbose(params, line) {
|
|
1163
1163
|
if (!params.verbose) {
|
|
1164
1164
|
return;
|
package/dist/cli-main.js
CHANGED