@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;