@juspay/neurolink 9.54.8 → 9.54.9
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.
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Abstract base class for all chunker implementations.
|
|
5
5
|
* Provides common functionality and interface contract.
|
|
6
6
|
*/
|
|
7
|
-
import {
|
|
7
|
+
import { randomUUID } from "node:crypto";
|
|
8
8
|
import { ChunkingError, RAGErrorCodes } from "../errors/RAGError.js";
|
|
9
9
|
import { withSpan } from "../../telemetry/withSpan.js";
|
|
10
10
|
import { tracers } from "../../telemetry/tracers.js";
|
|
@@ -121,7 +121,7 @@ export class BaseChunker {
|
|
|
121
121
|
custom: this.config.preserveMetadata ? customMetadata : undefined,
|
|
122
122
|
};
|
|
123
123
|
return {
|
|
124
|
-
id:
|
|
124
|
+
id: randomUUID(),
|
|
125
125
|
text,
|
|
126
126
|
metadata,
|
|
127
127
|
};
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Abstract base class for all chunker implementations.
|
|
5
5
|
* Provides common functionality and interface contract.
|
|
6
6
|
*/
|
|
7
|
-
import {
|
|
7
|
+
import { randomUUID } from "node:crypto";
|
|
8
8
|
import { ChunkingError, RAGErrorCodes } from "../errors/RAGError.js";
|
|
9
9
|
import { withSpan } from "../../telemetry/withSpan.js";
|
|
10
10
|
import { tracers } from "../../telemetry/tracers.js";
|
|
@@ -121,7 +121,7 @@ export class BaseChunker {
|
|
|
121
121
|
custom: this.config.preserveMetadata ? customMetadata : undefined,
|
|
122
122
|
};
|
|
123
123
|
return {
|
|
124
|
-
id:
|
|
124
|
+
id: randomUUID(),
|
|
125
125
|
text,
|
|
126
126
|
metadata,
|
|
127
127
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@juspay/neurolink",
|
|
3
|
-
"version": "9.54.
|
|
3
|
+
"version": "9.54.9",
|
|
4
4
|
"packageManager": "pnpm@10.15.1",
|
|
5
5
|
"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.",
|
|
6
6
|
"author": {
|
|
@@ -255,7 +255,6 @@
|
|
|
255
255
|
"redis": "^5.11.0",
|
|
256
256
|
"tar-stream": "^3.1.8",
|
|
257
257
|
"undici": ">=7.22.0",
|
|
258
|
-
"uuid": "^13.0.0",
|
|
259
258
|
"ws": "^8.19.0",
|
|
260
259
|
"yargs": "^18.0.0",
|
|
261
260
|
"zod": "^4.3.6",
|