@juspay/neurolink 8.3.0 → 8.4.1
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 +1 -0
- package/dist/adapters/providerImageAdapter.d.ts +1 -1
- package/dist/adapters/providerImageAdapter.js +62 -0
- package/dist/agent/directTools.d.ts +0 -72
- package/dist/agent/directTools.js +3 -74
- package/dist/cli/commands/config.d.ts +18 -18
- package/dist/cli/factories/commandFactory.js +1 -0
- package/dist/constants/enums.d.ts +1 -0
- package/dist/constants/enums.js +3 -1
- package/dist/constants/tokens.d.ts +3 -0
- package/dist/constants/tokens.js +3 -0
- package/dist/core/baseProvider.d.ts +56 -53
- package/dist/core/baseProvider.js +107 -1095
- package/dist/core/constants.d.ts +3 -0
- package/dist/core/constants.js +6 -3
- package/dist/core/modelConfiguration.js +10 -0
- package/dist/core/modules/GenerationHandler.d.ts +63 -0
- package/dist/core/modules/GenerationHandler.js +230 -0
- package/dist/core/modules/MessageBuilder.d.ts +39 -0
- package/dist/core/modules/MessageBuilder.js +179 -0
- package/dist/core/modules/StreamHandler.d.ts +52 -0
- package/dist/core/modules/StreamHandler.js +103 -0
- package/dist/core/modules/TelemetryHandler.d.ts +64 -0
- package/dist/core/modules/TelemetryHandler.js +170 -0
- package/dist/core/modules/ToolsManager.d.ts +98 -0
- package/dist/core/modules/ToolsManager.js +521 -0
- package/dist/core/modules/Utilities.d.ts +88 -0
- package/dist/core/modules/Utilities.js +329 -0
- package/dist/factories/providerRegistry.js +1 -1
- package/dist/lib/adapters/providerImageAdapter.d.ts +1 -1
- package/dist/lib/adapters/providerImageAdapter.js +62 -0
- package/dist/lib/agent/directTools.d.ts +0 -72
- package/dist/lib/agent/directTools.js +3 -74
- package/dist/lib/constants/enums.d.ts +1 -0
- package/dist/lib/constants/enums.js +3 -1
- package/dist/lib/constants/tokens.d.ts +3 -0
- package/dist/lib/constants/tokens.js +3 -0
- package/dist/lib/core/baseProvider.d.ts +56 -53
- package/dist/lib/core/baseProvider.js +107 -1095
- package/dist/lib/core/constants.d.ts +3 -0
- package/dist/lib/core/constants.js +6 -3
- package/dist/lib/core/modelConfiguration.js +10 -0
- package/dist/lib/core/modules/GenerationHandler.d.ts +63 -0
- package/dist/lib/core/modules/GenerationHandler.js +231 -0
- package/dist/lib/core/modules/MessageBuilder.d.ts +39 -0
- package/dist/lib/core/modules/MessageBuilder.js +180 -0
- package/dist/lib/core/modules/StreamHandler.d.ts +52 -0
- package/dist/lib/core/modules/StreamHandler.js +104 -0
- package/dist/lib/core/modules/TelemetryHandler.d.ts +64 -0
- package/dist/lib/core/modules/TelemetryHandler.js +171 -0
- package/dist/lib/core/modules/ToolsManager.d.ts +98 -0
- package/dist/lib/core/modules/ToolsManager.js +522 -0
- package/dist/lib/core/modules/Utilities.d.ts +88 -0
- package/dist/lib/core/modules/Utilities.js +330 -0
- package/dist/lib/factories/providerRegistry.js +1 -1
- package/dist/lib/mcp/servers/agent/directToolsServer.js +0 -1
- package/dist/lib/memory/mem0Initializer.d.ts +32 -1
- package/dist/lib/memory/mem0Initializer.js +55 -2
- package/dist/lib/models/modelRegistry.js +44 -0
- package/dist/lib/neurolink.d.ts +1 -1
- package/dist/lib/neurolink.js +43 -10
- package/dist/lib/providers/amazonBedrock.js +59 -10
- package/dist/lib/providers/anthropic.js +2 -30
- package/dist/lib/providers/azureOpenai.js +2 -24
- package/dist/lib/providers/googleAiStudio.js +2 -24
- package/dist/lib/providers/googleVertex.js +2 -45
- package/dist/lib/providers/huggingFace.js +3 -31
- package/dist/lib/providers/litellm.d.ts +1 -1
- package/dist/lib/providers/litellm.js +110 -44
- package/dist/lib/providers/mistral.js +5 -32
- package/dist/lib/providers/ollama.d.ts +1 -0
- package/dist/lib/providers/ollama.js +476 -129
- package/dist/lib/providers/openAI.js +2 -28
- package/dist/lib/providers/openaiCompatible.js +3 -31
- package/dist/lib/types/content.d.ts +16 -113
- package/dist/lib/types/content.js +16 -2
- package/dist/lib/types/conversation.d.ts +3 -17
- package/dist/lib/types/generateTypes.d.ts +2 -2
- package/dist/lib/types/index.d.ts +2 -0
- package/dist/lib/types/index.js +2 -0
- package/dist/lib/types/multimodal.d.ts +282 -0
- package/dist/lib/types/multimodal.js +101 -0
- package/dist/lib/types/streamTypes.d.ts +2 -2
- package/dist/lib/utils/imageProcessor.d.ts +1 -1
- package/dist/lib/utils/messageBuilder.js +25 -2
- package/dist/lib/utils/multimodalOptionsBuilder.d.ts +1 -1
- package/dist/lib/utils/pdfProcessor.d.ts +9 -0
- package/dist/lib/utils/pdfProcessor.js +67 -9
- package/dist/mcp/servers/agent/directToolsServer.js +0 -1
- package/dist/memory/mem0Initializer.d.ts +32 -1
- package/dist/memory/mem0Initializer.js +55 -2
- package/dist/models/modelRegistry.js +44 -0
- package/dist/neurolink.d.ts +1 -1
- package/dist/neurolink.js +43 -10
- package/dist/providers/amazonBedrock.js +59 -10
- package/dist/providers/anthropic.js +2 -30
- package/dist/providers/azureOpenai.js +2 -24
- package/dist/providers/googleAiStudio.js +2 -24
- package/dist/providers/googleVertex.js +2 -45
- package/dist/providers/huggingFace.js +3 -31
- package/dist/providers/litellm.d.ts +1 -1
- package/dist/providers/litellm.js +110 -44
- package/dist/providers/mistral.js +5 -32
- package/dist/providers/ollama.d.ts +1 -0
- package/dist/providers/ollama.js +476 -129
- package/dist/providers/openAI.js +2 -28
- package/dist/providers/openaiCompatible.js +3 -31
- package/dist/types/content.d.ts +16 -113
- package/dist/types/content.js +16 -2
- package/dist/types/conversation.d.ts +3 -17
- package/dist/types/generateTypes.d.ts +2 -2
- package/dist/types/index.d.ts +2 -0
- package/dist/types/index.js +2 -0
- package/dist/types/multimodal.d.ts +282 -0
- package/dist/types/multimodal.js +100 -0
- package/dist/types/streamTypes.d.ts +2 -2
- package/dist/utils/imageProcessor.d.ts +1 -1
- package/dist/utils/messageBuilder.js +25 -2
- package/dist/utils/multimodalOptionsBuilder.d.ts +1 -1
- package/dist/utils/pdfProcessor.d.ts +9 -0
- package/dist/utils/pdfProcessor.js +67 -9
- package/package.json +5 -2
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Multimodal Content Types for NeuroLink
|
|
3
|
+
*
|
|
4
|
+
* Central registry for all multimodal input/output types.
|
|
5
|
+
* This file consolidates types from content.ts and conversation.ts
|
|
6
|
+
* to provide a single source of truth for multimodal functionality.
|
|
7
|
+
*
|
|
8
|
+
* @module types/multimodal
|
|
9
|
+
*
|
|
10
|
+
* @example Basic Multimodal Input
|
|
11
|
+
* ```typescript
|
|
12
|
+
* import type { MultimodalInput } from './types/multimodal.js';
|
|
13
|
+
*
|
|
14
|
+
* const input: MultimodalInput = {
|
|
15
|
+
* text: "What's in this image?",
|
|
16
|
+
* images: [imageBuffer, "https://example.com/image.jpg"],
|
|
17
|
+
* pdfFiles: [pdfBuffer]
|
|
18
|
+
* };
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @example Audio/Video Input (Future)
|
|
22
|
+
* ```typescript
|
|
23
|
+
* const avInput: MultimodalInput = {
|
|
24
|
+
* text: "Transcribe this audio and analyze this video",
|
|
25
|
+
* audioFiles: [audioBuffer],
|
|
26
|
+
* videoFiles: ["path/to/video.mp4"]
|
|
27
|
+
* };
|
|
28
|
+
* ```
|
|
29
|
+
*
|
|
30
|
+
* @example Advanced Content Array
|
|
31
|
+
* ```typescript
|
|
32
|
+
* const advanced: MultimodalInput = {
|
|
33
|
+
* text: "irrelevant", // ignored when content[] is provided
|
|
34
|
+
* content: [
|
|
35
|
+
* { type: "text", text: "Analyze these items:" },
|
|
36
|
+
* { type: "image", data: imageBuffer, mediaType: "image/jpeg" },
|
|
37
|
+
* { type: "pdf", data: pdfBuffer, metadata: { filename: "report.pdf" } }
|
|
38
|
+
* ]
|
|
39
|
+
* };
|
|
40
|
+
* ```
|
|
41
|
+
*/
|
|
42
|
+
// ============================================
|
|
43
|
+
// TYPE GUARDS
|
|
44
|
+
// ============================================
|
|
45
|
+
/**
|
|
46
|
+
* Type guard to check if content is TextContent
|
|
47
|
+
*/
|
|
48
|
+
export function isTextContent(content) {
|
|
49
|
+
return content.type === "text";
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* Type guard to check if content is ImageContent
|
|
53
|
+
*/
|
|
54
|
+
export function isImageContent(content) {
|
|
55
|
+
return content.type === "image";
|
|
56
|
+
}
|
|
57
|
+
/**
|
|
58
|
+
* Type guard to check if content is CSVContent
|
|
59
|
+
*/
|
|
60
|
+
export function isCSVContent(content) {
|
|
61
|
+
return content.type === "csv";
|
|
62
|
+
}
|
|
63
|
+
/**
|
|
64
|
+
* Type guard to check if content is PDFContent
|
|
65
|
+
*/
|
|
66
|
+
export function isPDFContent(content) {
|
|
67
|
+
return content.type === "pdf";
|
|
68
|
+
}
|
|
69
|
+
/**
|
|
70
|
+
* Type guard to check if content is AudioContent
|
|
71
|
+
*/
|
|
72
|
+
export function isAudioContent(content) {
|
|
73
|
+
return content.type === "audio";
|
|
74
|
+
}
|
|
75
|
+
/**
|
|
76
|
+
* Type guard to check if content is VideoContent
|
|
77
|
+
*/
|
|
78
|
+
export function isVideoContent(content) {
|
|
79
|
+
return content.type === "video";
|
|
80
|
+
}
|
|
81
|
+
/**
|
|
82
|
+
* Type guard to check if input contains multimodal content
|
|
83
|
+
* Now includes audio and video detection
|
|
84
|
+
*/
|
|
85
|
+
export function isMultimodalInput(input) {
|
|
86
|
+
const maybeInput = input;
|
|
87
|
+
return !!(maybeInput?.images?.length ||
|
|
88
|
+
maybeInput?.csvFiles?.length ||
|
|
89
|
+
maybeInput?.pdfFiles?.length ||
|
|
90
|
+
maybeInput?.files?.length ||
|
|
91
|
+
maybeInput?.content?.length ||
|
|
92
|
+
maybeInput?.audioFiles?.length ||
|
|
93
|
+
maybeInput?.videoFiles?.length);
|
|
94
|
+
}
|
|
95
|
+
/**
|
|
96
|
+
* Type guard to check if message content is multimodal (array)
|
|
97
|
+
*/
|
|
98
|
+
export function isMultimodalMessageContent(content) {
|
|
99
|
+
return Array.isArray(content);
|
|
100
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { Tool } from "ai";
|
|
2
2
|
import type { ValidationSchema, StandardRecord } from "./typeAliases.js";
|
|
3
3
|
import type { AIModelProviderConfig } from "./providers.js";
|
|
4
|
-
import type {
|
|
4
|
+
import type { Content } from "./content.js";
|
|
5
5
|
import type { AnalyticsData, ToolExecutionEvent, ToolExecutionSummary } from "../types/index.js";
|
|
6
6
|
import { AIProviderName } from "../constants/enums.js";
|
|
7
7
|
import type { TokenUsage } from "./analytics.js";
|
|
@@ -129,7 +129,7 @@ export type StreamOptions = {
|
|
|
129
129
|
csvFiles?: Array<Buffer | string>;
|
|
130
130
|
pdfFiles?: Array<Buffer | string>;
|
|
131
131
|
files?: Array<Buffer | string>;
|
|
132
|
-
content?:
|
|
132
|
+
content?: Content[];
|
|
133
133
|
};
|
|
134
134
|
output?: {
|
|
135
135
|
format?: "text" | "structured" | "json";
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Image processing utilities for multimodal support
|
|
3
3
|
* Handles format conversion for different AI providers
|
|
4
4
|
*/
|
|
5
|
-
import type { ProcessedImage } from "../types/
|
|
5
|
+
import type { ProcessedImage } from "../types/multimodal.js";
|
|
6
6
|
import type { FileProcessingResult } from "../types/fileTypes.js";
|
|
7
7
|
/**
|
|
8
8
|
* Image processor class for handling provider-specific image formatting
|
|
@@ -473,6 +473,26 @@ export async function buildMultimodalMessagesArray(options, provider, model) {
|
|
|
473
473
|
if (hasConversationHistory) {
|
|
474
474
|
systemPrompt = `${systemPrompt.trim()}${CONVERSATION_INSTRUCTIONS}`;
|
|
475
475
|
}
|
|
476
|
+
// Add file handling guidance when multimodal files are present
|
|
477
|
+
const hasCSVFiles = (options.input.csvFiles && options.input.csvFiles.length > 0) ||
|
|
478
|
+
(options.input.files &&
|
|
479
|
+
options.input.files.some((f) => typeof f === "string" ? f.toLowerCase().endsWith(".csv") : false));
|
|
480
|
+
const hasPDFFiles = pdfFiles.length > 0;
|
|
481
|
+
if (hasCSVFiles || hasPDFFiles) {
|
|
482
|
+
const fileTypes = [];
|
|
483
|
+
if (hasPDFFiles) {
|
|
484
|
+
fileTypes.push("PDFs");
|
|
485
|
+
}
|
|
486
|
+
if (hasCSVFiles) {
|
|
487
|
+
fileTypes.push("CSVs");
|
|
488
|
+
}
|
|
489
|
+
systemPrompt += `\n\nIMPORTANT FILE HANDLING INSTRUCTIONS:
|
|
490
|
+
- File content (${fileTypes.join(", ")}, images) is already processed and included in this message
|
|
491
|
+
- DO NOT use GitHub tools (get_file_contents, search_code, etc.) for local files - they only work for remote repository files
|
|
492
|
+
- Analyze the provided file content directly without attempting to fetch or read files using tools
|
|
493
|
+
- GitHub MCP tools are ONLY for remote repository operations, not local filesystem access
|
|
494
|
+
- Use the file content shown in this message for your analysis`;
|
|
495
|
+
}
|
|
476
496
|
// Add system message if we have one
|
|
477
497
|
if (systemPrompt.trim()) {
|
|
478
498
|
messages.push({
|
|
@@ -739,7 +759,10 @@ async function convertMultimodalToProviderFormat(text, images, pdfFiles, provide
|
|
|
739
759
|
});
|
|
740
760
|
}
|
|
741
761
|
}
|
|
742
|
-
// Add PDFs using Vercel AI SDK standard format (works for all providers)
|
|
762
|
+
// Add PDFs using Vercel AI SDK standard format (works for all providers except Mistral)
|
|
763
|
+
// NOTE: Mistral API has a fundamental limitation - it does NOT support PDFs in any form.
|
|
764
|
+
// The API strictly requires image content to start with data:image/, rejecting data:application/pdf
|
|
765
|
+
// See: MISTRAL_PDF_FIX_SUMMARY.md for full investigation details
|
|
743
766
|
content.push(...pdfFiles.map((pdf) => {
|
|
744
767
|
logger.info(`[PDF] ✅ Added to content (Vercel AI SDK format): ${pdf.filename}`);
|
|
745
768
|
return {
|
|
@@ -769,5 +792,5 @@ function extractFilename(file, index = 0) {
|
|
|
769
792
|
return `file-${index + 1}`;
|
|
770
793
|
}
|
|
771
794
|
function buildCSVToolInstructions(filePath) {
|
|
772
|
-
return `\n**
|
|
795
|
+
return `\n**NOTE**: You can perform calculations directly on the CSV data shown above. For advanced operations on the full file (counting by column, grouping, etc.), you may optionally use the analyzeCSV tool with filePath="${filePath}".\n\nExample: analyzeCSV(filePath="${filePath}", operation="count_by_column", column="merchant_id")\n\n`;
|
|
773
796
|
}
|
|
@@ -45,7 +45,7 @@ export declare function buildMultimodalOptions(options: StreamOptions, providerN
|
|
|
45
45
|
input: {
|
|
46
46
|
text: string;
|
|
47
47
|
images: (string | Buffer<ArrayBufferLike>)[] | undefined;
|
|
48
|
-
content:
|
|
48
|
+
content: import("../types/multimodal.js").Content[] | undefined;
|
|
49
49
|
files: (string | Buffer<ArrayBufferLike>)[] | undefined;
|
|
50
50
|
csvFiles: (string | Buffer<ArrayBufferLike>)[] | undefined;
|
|
51
51
|
pdfFiles: (string | Buffer<ArrayBufferLike>)[] | undefined;
|
|
@@ -7,4 +7,13 @@ export declare class PDFProcessor {
|
|
|
7
7
|
private static isValidPDF;
|
|
8
8
|
private static extractBasicMetadata;
|
|
9
9
|
static estimateTokens(pageCount: number, mode?: "text-only" | "visual"): number;
|
|
10
|
+
static convertPDFToImages(pdfBuffer: Buffer, options?: {
|
|
11
|
+
maxPages?: number;
|
|
12
|
+
scale?: number;
|
|
13
|
+
format?: "png" | "jpeg";
|
|
14
|
+
quality?: number;
|
|
15
|
+
}): Promise<Array<{
|
|
16
|
+
buffer: Buffer;
|
|
17
|
+
pageNumber: number;
|
|
18
|
+
}>>;
|
|
10
19
|
}
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import { logger } from "./logger.js";
|
|
2
|
+
import * as pdfjs from "pdfjs-dist/legacy/build/pdf.mjs";
|
|
3
|
+
import { createCanvas } from "canvas";
|
|
2
4
|
const PDF_PROVIDER_CONFIGS = {
|
|
3
5
|
anthropic: {
|
|
4
6
|
maxSizeMB: 5,
|
|
@@ -87,7 +89,7 @@ const PDF_PROVIDER_CONFIGS = {
|
|
|
87
89
|
mistral: {
|
|
88
90
|
maxSizeMB: 10,
|
|
89
91
|
maxPages: 100,
|
|
90
|
-
supportsNative:
|
|
92
|
+
supportsNative: false,
|
|
91
93
|
requiresCitations: false,
|
|
92
94
|
apiType: "files-api",
|
|
93
95
|
},
|
|
@@ -115,16 +117,14 @@ export class PDFProcessor {
|
|
|
115
117
|
if (!this.isValidPDF(content)) {
|
|
116
118
|
throw new Error("Invalid PDF file format. File must start with %PDF- header.");
|
|
117
119
|
}
|
|
118
|
-
if (!config
|
|
119
|
-
const supportedProviders = Object.keys(PDF_PROVIDER_CONFIGS)
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
throw new Error(`PDF files are not currently supported with ${provider} provider.\n` +
|
|
123
|
-
`Supported providers: ${supportedProviders}\n` +
|
|
120
|
+
if (!config) {
|
|
121
|
+
const supportedProviders = Object.keys(PDF_PROVIDER_CONFIGS).join(", ");
|
|
122
|
+
throw new Error(`PDF files are not configured for ${provider} provider.\n` +
|
|
123
|
+
`Configured providers: ${supportedProviders}\n` +
|
|
124
124
|
`Current provider: ${provider}\n\n` +
|
|
125
125
|
`Options:\n` +
|
|
126
|
-
`1. Switch to a
|
|
127
|
-
`2.
|
|
126
|
+
`1. Switch to a configured provider (--provider openai or --provider vertex)\n` +
|
|
127
|
+
`2. Contact support to add ${provider} PDF configuration`);
|
|
128
128
|
}
|
|
129
129
|
const sizeMB = content.length / (1024 * 1024);
|
|
130
130
|
if (sizeMB > config.maxSizeMB) {
|
|
@@ -195,4 +195,62 @@ export class PDFProcessor {
|
|
|
195
195
|
return Math.ceil((pageCount / 3) * 7000);
|
|
196
196
|
}
|
|
197
197
|
}
|
|
198
|
+
static async convertPDFToImages(pdfBuffer, options) {
|
|
199
|
+
const maxPages = options?.maxPages || 10;
|
|
200
|
+
const scale = options?.scale || 2.0;
|
|
201
|
+
const format = options?.format || "png";
|
|
202
|
+
const quality = options?.quality || 0.9;
|
|
203
|
+
let pdfDocument = null;
|
|
204
|
+
try {
|
|
205
|
+
const loadingTask = pdfjs.getDocument({
|
|
206
|
+
data: new Uint8Array(pdfBuffer),
|
|
207
|
+
useSystemFonts: true,
|
|
208
|
+
standardFontDataUrl: `https://cdn.jsdelivr.net/npm/pdfjs-dist@${pdfjs.version}/standard_fonts/`,
|
|
209
|
+
});
|
|
210
|
+
pdfDocument = await loadingTask.promise;
|
|
211
|
+
const numPages = Math.min(pdfDocument.numPages, maxPages);
|
|
212
|
+
const images = [];
|
|
213
|
+
logger.info(`[PDF→Image] Converting ${numPages} page(s) from PDF (total: ${pdfDocument.numPages})`);
|
|
214
|
+
for (let pageNum = 1; pageNum <= numPages; pageNum++) {
|
|
215
|
+
const page = await pdfDocument.getPage(pageNum);
|
|
216
|
+
const viewport = page.getViewport({ scale });
|
|
217
|
+
const canvas = createCanvas(viewport.width, viewport.height);
|
|
218
|
+
const context = canvas.getContext("2d");
|
|
219
|
+
await page.render({
|
|
220
|
+
canvasContext: context,
|
|
221
|
+
viewport,
|
|
222
|
+
// @ts-expect-error - canvas type mismatch between node-canvas and pdfjs-dist
|
|
223
|
+
canvas: canvas,
|
|
224
|
+
}).promise;
|
|
225
|
+
const imageBuffer = format === "png"
|
|
226
|
+
? canvas.toBuffer("image/png")
|
|
227
|
+
: canvas.toBuffer("image/jpeg", { quality });
|
|
228
|
+
images.push({ buffer: imageBuffer, pageNumber: pageNum });
|
|
229
|
+
logger.debug(`[PDF→Image] ✅ Converted page ${pageNum}/${numPages} (${(imageBuffer.length / 1024).toFixed(1)}KB)`);
|
|
230
|
+
}
|
|
231
|
+
if (pdfDocument.numPages > maxPages) {
|
|
232
|
+
logger.warn(`[PDF→Image] PDF has ${pdfDocument.numPages} pages, converted only first ${maxPages} pages`);
|
|
233
|
+
}
|
|
234
|
+
logger.info(`[PDF→Image] ✅ Successfully converted ${images.length} page(s) to images`);
|
|
235
|
+
return images;
|
|
236
|
+
}
|
|
237
|
+
catch (error) {
|
|
238
|
+
logger.error(`[PDF→Image] ❌ Failed to convert PDF to images:`, error instanceof Error ? error.message : String(error));
|
|
239
|
+
throw new Error(`PDF to image conversion failed: ${error instanceof Error ? error.message : String(error)}`);
|
|
240
|
+
}
|
|
241
|
+
finally {
|
|
242
|
+
// Ensure pdfDocument is destroyed regardless of success or failure
|
|
243
|
+
if (pdfDocument) {
|
|
244
|
+
try {
|
|
245
|
+
pdfDocument.destroy();
|
|
246
|
+
logger.debug("[PDF→Image] PDF document resources cleaned up");
|
|
247
|
+
}
|
|
248
|
+
catch (destroyError) {
|
|
249
|
+
logger.warn("[PDF→Image] Error destroying PDF document:", destroyError instanceof Error
|
|
250
|
+
? destroyError.message
|
|
251
|
+
: String(destroyError));
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
}
|
|
198
256
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@juspay/neurolink",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.4.1",
|
|
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 9 major providers: OpenAI, Anthropic, Google AI, AWS Bedrock, Azure, Hugging Face, Ollama, and Mistral AI.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Juspay Technologies",
|
|
@@ -179,6 +179,7 @@
|
|
|
179
179
|
"@opentelemetry/sdk-trace-node": "^2.1.0",
|
|
180
180
|
"@opentelemetry/semantic-conventions": "^1.30.1",
|
|
181
181
|
"ai": "4.3.16",
|
|
182
|
+
"canvas": "^3.2.0",
|
|
182
183
|
"chalk": "^5.6.2",
|
|
183
184
|
"csv-parser": "^3.2.0",
|
|
184
185
|
"dotenv": "^16.6.1",
|
|
@@ -190,6 +191,7 @@
|
|
|
190
191
|
"ollama-ai-provider": "^1.2.0",
|
|
191
192
|
"ora": "^7.0.1",
|
|
192
193
|
"p-limit": "^6.2.0",
|
|
194
|
+
"pdfjs-dist": "^5.4.296",
|
|
193
195
|
"reconnecting-eventsource": "^1.6.4",
|
|
194
196
|
"redis": "^5.8.2",
|
|
195
197
|
"undici": "^7.5.0",
|
|
@@ -286,7 +288,8 @@
|
|
|
286
288
|
"esbuild",
|
|
287
289
|
"protobufjs",
|
|
288
290
|
"puppeteer",
|
|
289
|
-
"sqlite3"
|
|
291
|
+
"sqlite3",
|
|
292
|
+
"canvas"
|
|
290
293
|
],
|
|
291
294
|
"overrides": {
|
|
292
295
|
"esbuild@<=0.24.2": ">=0.25.0",
|