@juspay/neurolink 10.10.3 → 10.10.5

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.
Files changed (31) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/dist/browser/neurolink.min.js +387 -386
  3. package/dist/context/anthropicLoopGuard.d.ts +46 -0
  4. package/dist/context/anthropicLoopGuard.js +167 -0
  5. package/dist/context/loopGuardCore.d.ts +43 -0
  6. package/dist/context/loopGuardCore.js +145 -0
  7. package/dist/context/openaiCompatLoopGuard.d.ts +42 -0
  8. package/dist/context/openaiCompatLoopGuard.js +172 -0
  9. package/dist/context/stepBudgetGuard.js +32 -3
  10. package/dist/context/toolOutputLimits.d.ts +11 -0
  11. package/dist/context/toolOutputLimits.js +16 -0
  12. package/dist/lib/context/anthropicLoopGuard.d.ts +46 -0
  13. package/dist/lib/context/anthropicLoopGuard.js +168 -0
  14. package/dist/lib/context/loopGuardCore.d.ts +43 -0
  15. package/dist/lib/context/loopGuardCore.js +146 -0
  16. package/dist/lib/context/openaiCompatLoopGuard.d.ts +42 -0
  17. package/dist/lib/context/openaiCompatLoopGuard.js +173 -0
  18. package/dist/lib/context/stepBudgetGuard.js +32 -3
  19. package/dist/lib/context/toolOutputLimits.d.ts +11 -0
  20. package/dist/lib/context/toolOutputLimits.js +16 -0
  21. package/dist/lib/providers/anthropic/client.js +98 -0
  22. package/dist/lib/providers/openaiChatCompletionsBase.js +38 -1
  23. package/dist/lib/types/context.d.ts +73 -0
  24. package/dist/lib/utils/tokenEstimation.d.ts +1 -1
  25. package/dist/lib/utils/tokenEstimation.js +1 -1
  26. package/dist/providers/anthropic/client.js +98 -0
  27. package/dist/providers/openaiChatCompletionsBase.js +38 -1
  28. package/dist/types/context.d.ts +73 -0
  29. package/dist/utils/tokenEstimation.d.ts +1 -1
  30. package/dist/utils/tokenEstimation.js +1 -1
  31. package/package.json +5 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ ## [10.10.5](https://github.com/juspay/neurolink/compare/v10.10.4...v10.10.5) (2026-08-06)
2
+
3
+ ### Bug Fixes
4
+
5
+ - **(providers):** guard native agent loops against mid-turn overflow ([56088a1](https://github.com/juspay/neurolink/commit/56088a1f9d745561c3776957bdcf50c7408f4bc9))
6
+
7
+ ## [10.10.4](https://github.com/juspay/neurolink/compare/v10.10.3...v10.10.4) (2026-08-06)
8
+
9
+ ### Bug Fixes
10
+
11
+ - **(context):** reclaim to a low-water mark in the step budget guard ([4866db8](https://github.com/juspay/neurolink/commit/4866db8b9a04ff3c4bc8ca479dc019eb1471955d))
12
+
1
13
  ## [10.10.3](https://github.com/juspay/neurolink/compare/v10.10.2...v10.10.3) (2026-08-06)
2
14
 
3
15
  ### Bug Fixes