@juspay/neurolink 9.81.3 → 9.82.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 +12 -0
- package/README.md +4 -0
- package/dist/browser/neurolink.min.js +337 -337
- package/dist/cli/commands/proxy.js +5 -0
- package/dist/cli/factories/commandFactory.d.ts +2 -1
- package/dist/cli/factories/commandFactory.js +36 -16
- package/dist/cli/utils/audioPlayer.d.ts +37 -0
- package/dist/cli/utils/audioPlayer.js +138 -0
- package/dist/core/modules/GenerationHandler.js +7 -1
- package/dist/index.d.ts +6 -1
- package/dist/index.js +14 -6
- package/dist/lib/core/modules/GenerationHandler.js +7 -1
- package/dist/lib/index.d.ts +6 -1
- package/dist/lib/index.js +14 -6
- package/dist/lib/proxy/proxyDispatcher.d.ts +5 -0
- package/dist/lib/proxy/proxyDispatcher.js +61 -0
- package/dist/lib/utils/systemMessages.d.ts +29 -0
- package/dist/lib/utils/systemMessages.js +45 -0
- package/dist/proxy/proxyDispatcher.d.ts +5 -0
- package/dist/proxy/proxyDispatcher.js +60 -0
- package/dist/utils/systemMessages.d.ts +29 -0
- package/dist/utils/systemMessages.js +44 -0
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [9.82.0](https://github.com/juspay/neurolink/compare/v9.81.3...v9.82.0) (2026-07-08)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
- **(cli):** add audio playback support for TTS output ([0e6580f](https://github.com/juspay/neurolink/commit/0e6580fcb3ede82bba39522527cda4f1ada5c3d4))
|
|
6
|
+
- **(proxy):** reuse upstream connections via tuned keep-alive dispatcher ([86668b9](https://github.com/juspay/neurolink/commit/86668b9c9b6651227af2f0ceb6f9c07f81d10017))
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **(core):** pass system messages via generateText system option, not messages ([#1024](https://github.com/juspay/neurolink/issues/1024)) ([9f8104e](https://github.com/juspay/neurolink/commit/9f8104e7bda9b2943e90df0fea2f1a8506c0a4ac))
|
|
11
|
+
- **(exports):** make root import work without react installed ([4fb0a55](https://github.com/juspay/neurolink/commit/4fb0a556b2c8e055940288d5df7abed5e58251f6))
|
|
12
|
+
|
|
1
13
|
## [9.81.3](https://github.com/juspay/neurolink/compare/v9.81.2...v9.81.3) (2026-07-07)
|
|
2
14
|
|
|
3
15
|
### Bug Fixes
|
package/README.md
CHANGED
|
@@ -1033,6 +1033,10 @@ Full command and API breakdown lives in [`docs/cli/commands.md`](docs/cli/comman
|
|
|
1033
1033
|
- Development workflow, testing, and pull request guidelines → [`docs/development/contributing.md`](docs/development/contributing.md)
|
|
1034
1034
|
- Documentation improvements → open a PR referencing the [documentation matrix](docs/tracking/FEATURE-DOC-MATRIX.md).
|
|
1035
1035
|
|
|
1036
|
+
## Acknowledgements
|
|
1037
|
+
|
|
1038
|
+
NeuroLink is made possible by the vibrant open-source AI ecosystem. We gratefully acknowledge the teams behind [OpenAI](https://openai.com/), [Anthropic](https://www.anthropic.com/), [Google AI](https://ai.google.dev/), [Mistral](https://mistral.ai/), and the many other providers and open-source projects that power this platform. Special thanks to every contributor who has filed issues, submitted pull requests, or shared feedback — your input drives NeuroLink forward.
|
|
1039
|
+
|
|
1036
1040
|
---
|
|
1037
1041
|
|
|
1038
1042
|
NeuroLink is built with ❤️ by Juspay. Contributions, questions, and production feedback are always welcome.
|