@juspay/neurolink 9.16.0 โ 9.17.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
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [9.17.0](https://github.com/juspay/neurolink/compare/v9.16.0...v9.17.0) (2026-03-06)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
- **(landing):** nervous-system landing page redesign, docs overhaul, and SDK fixes ([fe756b3](https://github.com/juspay/neurolink/commit/fe756b393c0376f6c37fbab6c59ec2b31330a59f))
|
|
6
|
+
|
|
1
7
|
## [9.16.0](https://github.com/juspay/neurolink/compare/v9.15.0...v9.16.0) (2026-03-02)
|
|
2
8
|
|
|
3
9
|
### Features
|
package/README.md
CHANGED
|
@@ -1,23 +1,25 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
1
|
+
# NeuroLink
|
|
2
|
+
|
|
3
|
+
**The pipe layer for the AI nervous system.**
|
|
4
|
+
|
|
5
|
+
AI intelligence flows as streams โ tokens, tool calls, memory, voice, documents.
|
|
6
|
+
NeuroLink is the vascular layer that carries these streams from where they are
|
|
7
|
+
generated (LLM providers: the neurons) to where they are needed (connectors: the organs).
|
|
8
|
+
|
|
9
|
+
```typescript
|
|
10
|
+
import { NeuroLink } from "@juspay/neurolink";
|
|
11
|
+
|
|
12
|
+
const pipe = new NeuroLink({ defaultProvider: "anthropic" });
|
|
13
|
+
|
|
14
|
+
// Everything is a stream
|
|
15
|
+
for await (const token of pipe.stream({ prompt: "Hello" })) {
|
|
16
|
+
process.stdout.write(token);
|
|
17
|
+
}
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
**[โ Docs](https://docs.neurolink.ink) ยท [โ Quick Start](https://docs.neurolink.ink/docs/getting-started/quick-start) ยท [โ npm](https://www.npmjs.com/package/@juspay/neurolink)**
|
|
21
|
+
|
|
22
|
+
---
|
|
21
23
|
|
|
22
24
|
## ๐ง What is NeuroLink?
|
|
23
25
|
|
|
@@ -29,8 +29,8 @@ export async function summarizeMessages(messages, config) {
|
|
|
29
29
|
}
|
|
30
30
|
const summaryMessage = {
|
|
31
31
|
id: `summary-${randomUUID()}`,
|
|
32
|
-
role: "
|
|
33
|
-
content: `Previous conversation summary:\n\n${summaryText}`,
|
|
32
|
+
role: "user",
|
|
33
|
+
content: `[Previous conversation summary]:\n\n${summaryText}`,
|
|
34
34
|
timestamp: new Date().toISOString(),
|
|
35
35
|
metadata: {
|
|
36
36
|
isSummary: true,
|
|
@@ -29,8 +29,8 @@ export async function summarizeMessages(messages, config) {
|
|
|
29
29
|
}
|
|
30
30
|
const summaryMessage = {
|
|
31
31
|
id: `summary-${randomUUID()}`,
|
|
32
|
-
role: "
|
|
33
|
-
content: `Previous conversation summary:\n\n${summaryText}`,
|
|
32
|
+
role: "user",
|
|
33
|
+
content: `[Previous conversation summary]:\n\n${summaryText}`,
|
|
34
34
|
timestamp: new Date().toISOString(),
|
|
35
35
|
metadata: {
|
|
36
36
|
isSummary: true,
|
|
@@ -244,8 +244,8 @@ export function buildContextFromPointer(session, requestId) {
|
|
|
244
244
|
// Construct context: summary message + recent messages
|
|
245
245
|
const summaryMessage = {
|
|
246
246
|
id: `summary-${session.summarizedUpToMessageId}`,
|
|
247
|
-
role: "
|
|
248
|
-
content: `Previous conversation summary: ${session.summarizedMessage}`,
|
|
247
|
+
role: "user",
|
|
248
|
+
content: `[Previous conversation summary]: ${session.summarizedMessage}`,
|
|
249
249
|
timestamp: new Date().toISOString(),
|
|
250
250
|
metadata: {
|
|
251
251
|
isSummary: true,
|
|
@@ -244,8 +244,8 @@ export function buildContextFromPointer(session, requestId) {
|
|
|
244
244
|
// Construct context: summary message + recent messages
|
|
245
245
|
const summaryMessage = {
|
|
246
246
|
id: `summary-${session.summarizedUpToMessageId}`,
|
|
247
|
-
role: "
|
|
248
|
-
content: `Previous conversation summary: ${session.summarizedMessage}`,
|
|
247
|
+
role: "user",
|
|
248
|
+
content: `[Previous conversation summary]: ${session.summarizedMessage}`,
|
|
249
249
|
timestamp: new Date().toISOString(),
|
|
250
250
|
metadata: {
|
|
251
251
|
isSummary: true,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@juspay/neurolink",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.17.0",
|
|
4
4
|
"description": "Universal AI Development Platform with working MCP integration, multi-provider support, and professional CLI. Built-in tools operational, 58+ external MCP servers discoverable. Connect to filesystem, GitHub, database operations, and more. Build, test, and deploy AI applications with 13 providers: OpenAI, Anthropic, Google AI, AWS Bedrock, Azure, Hugging Face, Ollama, and Mistral AI.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Juspay Technologies",
|