@juspay/neurolink 9.73.0 → 9.74.0
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 +10 -0
- package/dist/browser/neurolink.min.js +349 -349
- package/dist/core/toolRouting.js +90 -4
- package/dist/core/toolRoutingCache.d.ts +64 -0
- package/dist/core/toolRoutingCache.js +154 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +4 -0
- package/dist/lib/core/toolRouting.js +90 -4
- package/dist/lib/core/toolRoutingCache.d.ts +64 -0
- package/dist/lib/core/toolRoutingCache.js +155 -0
- package/dist/lib/index.d.ts +2 -0
- package/dist/lib/index.js +4 -0
- package/dist/lib/neurolink.d.ts +8 -6
- package/dist/lib/neurolink.js +187 -39
- package/dist/lib/types/toolRouting.d.ts +88 -0
- package/dist/neurolink.d.ts +8 -6
- package/dist/neurolink.js +187 -39
- package/dist/types/toolRouting.d.ts +88 -0
- package/package.json +4 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## [9.74.0](https://github.com/juspay/neurolink/compare/v9.73.0...v9.74.0) (2026-06-20)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
- **(tool-routing):** apply routing in generate(), add decision telemetry, routing cache + session stickiness ([a1e0f81](https://github.com/juspay/neurolink/commit/a1e0f81ef450bfb3e3ec974884570e3a76bc62b2))
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- **(ci):** cap Yama ai.maxTokens to 16000 so large PRs fit the model window ([3118149](https://github.com/juspay/neurolink/commit/31181493c7a1d35e2c003793a27880bef8c83a60)), closes [#1107](https://github.com/juspay/neurolink/issues/1107) [#1108](https://github.com/juspay/neurolink/issues/1108)
|
|
10
|
+
|
|
1
11
|
## [9.73.0](https://github.com/juspay/neurolink/compare/v9.72.0...v9.73.0) (2026-06-18)
|
|
2
12
|
|
|
3
13
|
### Features
|