@juspay/neurolink 8.9.0 → 8.10.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.
@@ -34,6 +34,7 @@ export type GenerateOptions = {
34
34
  images?: Array<Buffer | string | ImageWithAltText>;
35
35
  csvFiles?: Array<Buffer | string>;
36
36
  pdfFiles?: Array<Buffer | string>;
37
+ videoFiles?: Array<Buffer | string>;
37
38
  files?: Array<Buffer | string>;
38
39
  content?: Content[];
39
40
  };
@@ -45,6 +46,12 @@ export type GenerateOptions = {
45
46
  formatStyle?: "raw" | "markdown" | "json";
46
47
  includeHeaders?: boolean;
47
48
  };
49
+ videoOptions?: {
50
+ frames?: number;
51
+ quality?: number;
52
+ format?: "jpeg" | "png";
53
+ transcribeAudio?: boolean;
54
+ };
48
55
  provider?: AIProviderName | string;
49
56
  model?: string;
50
57
  region?: string;
@@ -145,6 +145,7 @@ export type StreamOptions = {
145
145
  images?: Array<Buffer | string | ImageWithAltText>;
146
146
  csvFiles?: Array<Buffer | string>;
147
147
  pdfFiles?: Array<Buffer | string>;
148
+ videoFiles?: Array<Buffer | string>;
148
149
  files?: Array<Buffer | string>;
149
150
  content?: Content[];
150
151
  };
@@ -161,6 +162,12 @@ export type StreamOptions = {
161
162
  formatStyle?: "raw" | "markdown" | "json";
162
163
  includeHeaders?: boolean;
163
164
  };
165
+ videoOptions?: {
166
+ frames?: number;
167
+ quality?: number;
168
+ format?: "jpeg" | "png";
169
+ transcribeAudio?: boolean;
170
+ };
164
171
  provider?: AIProviderName | string;
165
172
  model?: string;
166
173
  region?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juspay/neurolink",
3
- "version": "8.9.0",
3
+ "version": "8.10.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",
@@ -38,6 +38,7 @@
38
38
  "modelServer": "node scripts/modelServer.js",
39
39
  "lint": "prettier --check . && eslint .",
40
40
  "format": "prettier --write .",
41
+ "format:check": "prettier --check .",
41
42
  "format:staged": "node scripts/format-staged.cjs",
42
43
  "changeset": "changeset",
43
44
  "changeset:version": "changeset version && git add --all",