@retab/node 1.0.68 → 1.0.70

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/dist/types.d.ts CHANGED
@@ -54,27 +54,249 @@ export declare const ZDocumentExtractRequest: z.ZodObject<{
54
54
  image_resolution_dpi: z.ZodDefault<z.ZodNumber>;
55
55
  model: z.ZodString;
56
56
  temperature: z.ZodDefault<z.ZodNumber>;
57
- reasoning_effort: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"minimal">, z.ZodLiteral<"low">, z.ZodLiteral<"medium">, z.ZodLiteral<"high">]>>>>;
57
+ reasoning_effort: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"minimal">, z.ZodLiteral<"low">, z.ZodLiteral<"medium">, z.ZodLiteral<"high">, z.ZodLiteral<"xhigh">]>>>>;
58
58
  n_consensus: z.ZodDefault<z.ZodNumber>;
59
59
  seed: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
60
60
  store: z.ZodDefault<z.ZodBoolean>;
61
- modality: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"text">, z.ZodLiteral<"image">, z.ZodLiteral<"native">]>>;
62
61
  parallel_ocr_keys: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodString>>>;
62
+ web_search: z.ZodDefault<z.ZodBoolean>;
63
63
  extraction_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
64
+ additional_messages: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodLazy<z.ZodObject<{
65
+ role: z.ZodUnion<[z.ZodLiteral<"user">, z.ZodLiteral<"system">, z.ZodLiteral<"assistant">, z.ZodLiteral<"developer">, z.ZodLiteral<"tool">]>;
66
+ content: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodUnion<[z.ZodLazy<z.ZodObject<{
67
+ text: z.ZodString;
68
+ type: z.ZodLiteral<"text">;
69
+ }, "strip", z.ZodTypeAny, {
70
+ type: "text";
71
+ text: string;
72
+ }, {
73
+ type: "text";
74
+ text: string;
75
+ }>>, z.ZodLazy<z.ZodObject<{
76
+ image_url: z.ZodLazy<z.ZodObject<{
77
+ url: z.ZodString;
78
+ detail: z.ZodUnion<[z.ZodLiteral<"auto">, z.ZodLiteral<"low">, z.ZodLiteral<"high">]>;
79
+ }, "strip", z.ZodTypeAny, {
80
+ url: string;
81
+ detail: "auto" | "low" | "high";
82
+ }, {
83
+ url: string;
84
+ detail: "auto" | "low" | "high";
85
+ }>>;
86
+ type: z.ZodLiteral<"image_url">;
87
+ }, "strip", z.ZodTypeAny, {
88
+ type: "image_url";
89
+ image_url: {
90
+ url: string;
91
+ detail: "auto" | "low" | "high";
92
+ };
93
+ }, {
94
+ type: "image_url";
95
+ image_url: {
96
+ url: string;
97
+ detail: "auto" | "low" | "high";
98
+ };
99
+ }>>, z.ZodLazy<z.ZodObject<{
100
+ input_audio: z.ZodLazy<z.ZodObject<{
101
+ data: z.ZodString;
102
+ format: z.ZodUnion<[z.ZodLiteral<"wav">, z.ZodLiteral<"mp3">]>;
103
+ }, "strip", z.ZodTypeAny, {
104
+ data: string;
105
+ format: "wav" | "mp3";
106
+ }, {
107
+ data: string;
108
+ format: "wav" | "mp3";
109
+ }>>;
110
+ type: z.ZodLiteral<"input_audio">;
111
+ }, "strip", z.ZodTypeAny, {
112
+ type: "input_audio";
113
+ input_audio: {
114
+ data: string;
115
+ format: "wav" | "mp3";
116
+ };
117
+ }, {
118
+ type: "input_audio";
119
+ input_audio: {
120
+ data: string;
121
+ format: "wav" | "mp3";
122
+ };
123
+ }>>, z.ZodLazy<z.ZodObject<{
124
+ file: z.ZodLazy<z.ZodObject<{
125
+ file_data: z.ZodString;
126
+ file_id: z.ZodString;
127
+ filename: z.ZodString;
128
+ }, "strip", z.ZodTypeAny, {
129
+ filename: string;
130
+ file_data: string;
131
+ file_id: string;
132
+ }, {
133
+ filename: string;
134
+ file_data: string;
135
+ file_id: string;
136
+ }>>;
137
+ type: z.ZodLiteral<"file">;
138
+ }, "strip", z.ZodTypeAny, {
139
+ type: "file";
140
+ file: {
141
+ filename: string;
142
+ file_data: string;
143
+ file_id: string;
144
+ };
145
+ }, {
146
+ type: "file";
147
+ file: {
148
+ filename: string;
149
+ file_data: string;
150
+ file_id: string;
151
+ };
152
+ }>>]>, "many">]>>>;
153
+ tool_call_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
154
+ tool_calls: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodLazy<z.ZodObject<{
155
+ id: z.ZodString;
156
+ function: z.ZodLazy<z.ZodObject<{
157
+ arguments: z.ZodString;
158
+ name: z.ZodString;
159
+ }, "strip", z.ZodTypeAny, {
160
+ arguments: string;
161
+ name: string;
162
+ }, {
163
+ arguments: string;
164
+ name: string;
165
+ }>>;
166
+ type: z.ZodLiteral<"function">;
167
+ }, "strip", z.ZodTypeAny, {
168
+ function: {
169
+ arguments: string;
170
+ name: string;
171
+ };
172
+ type: "function";
173
+ id: string;
174
+ }, {
175
+ function: {
176
+ arguments: string;
177
+ name: string;
178
+ };
179
+ type: "function";
180
+ id: string;
181
+ }>>, "many">>>;
182
+ }, "strip", z.ZodTypeAny, {
183
+ role: "user" | "system" | "assistant" | "developer" | "tool";
184
+ content?: string | ({
185
+ type: "text";
186
+ text: string;
187
+ } | {
188
+ type: "image_url";
189
+ image_url: {
190
+ url: string;
191
+ detail: "auto" | "low" | "high";
192
+ };
193
+ } | {
194
+ type: "input_audio";
195
+ input_audio: {
196
+ data: string;
197
+ format: "wav" | "mp3";
198
+ };
199
+ } | {
200
+ type: "file";
201
+ file: {
202
+ filename: string;
203
+ file_data: string;
204
+ file_id: string;
205
+ };
206
+ })[] | null | undefined;
207
+ tool_call_id?: string | null | undefined;
208
+ tool_calls?: {
209
+ function: {
210
+ arguments: string;
211
+ name: string;
212
+ };
213
+ type: "function";
214
+ id: string;
215
+ }[] | null | undefined;
216
+ }, {
217
+ role: "user" | "system" | "assistant" | "developer" | "tool";
218
+ content?: string | ({
219
+ type: "text";
220
+ text: string;
221
+ } | {
222
+ type: "image_url";
223
+ image_url: {
224
+ url: string;
225
+ detail: "auto" | "low" | "high";
226
+ };
227
+ } | {
228
+ type: "input_audio";
229
+ input_audio: {
230
+ data: string;
231
+ format: "wav" | "mp3";
232
+ };
233
+ } | {
234
+ type: "file";
235
+ file: {
236
+ filename: string;
237
+ file_data: string;
238
+ file_id: string;
239
+ };
240
+ })[] | null | undefined;
241
+ tool_call_id?: string | null | undefined;
242
+ tool_calls?: {
243
+ function: {
244
+ arguments: string;
245
+ name: string;
246
+ };
247
+ type: "function";
248
+ id: string;
249
+ }[] | null | undefined;
250
+ }>>, "many">>>;
64
251
  }, "strip", z.ZodTypeAny, {
65
252
  metadata: Record<string, string>;
66
253
  json_schema: Record<string, any>;
67
254
  model: string;
68
255
  temperature: number;
69
- reasoning_effort: "low" | "high" | "none" | "minimal" | "medium" | null;
256
+ reasoning_effort: "low" | "high" | "none" | "minimal" | "medium" | "xhigh" | null;
70
257
  image_resolution_dpi: number;
71
258
  n_consensus: number;
72
- modality: "text" | "image" | "native";
259
+ web_search: boolean;
73
260
  store: boolean;
74
261
  parallel_ocr_keys?: Record<string, string> | null | undefined;
75
262
  extraction_id?: string | null | undefined;
76
263
  document?: any;
77
264
  seed?: number | null | undefined;
265
+ additional_messages?: {
266
+ role: "user" | "system" | "assistant" | "developer" | "tool";
267
+ content?: string | ({
268
+ type: "text";
269
+ text: string;
270
+ } | {
271
+ type: "image_url";
272
+ image_url: {
273
+ url: string;
274
+ detail: "auto" | "low" | "high";
275
+ };
276
+ } | {
277
+ type: "input_audio";
278
+ input_audio: {
279
+ data: string;
280
+ format: "wav" | "mp3";
281
+ };
282
+ } | {
283
+ type: "file";
284
+ file: {
285
+ filename: string;
286
+ file_data: string;
287
+ file_id: string;
288
+ };
289
+ })[] | null | undefined;
290
+ tool_call_id?: string | null | undefined;
291
+ tool_calls?: {
292
+ function: {
293
+ arguments: string;
294
+ name: string;
295
+ };
296
+ type: "function";
297
+ id: string;
298
+ }[] | null | undefined;
299
+ }[] | null | undefined;
78
300
  }, {
79
301
  json_schema: string | Record<string, any> | z.ZodType<unknown, z.ZodTypeDef, unknown>;
80
302
  model: string;
@@ -84,14 +306,49 @@ export declare const ZDocumentExtractRequest: z.ZodObject<{
84
306
  };
85
307
  metadata?: Record<string, string> | undefined;
86
308
  temperature?: number | undefined;
87
- reasoning_effort?: "low" | "high" | "none" | "minimal" | "medium" | null | undefined;
309
+ reasoning_effort?: "low" | "high" | "none" | "minimal" | "medium" | "xhigh" | null | undefined;
88
310
  image_resolution_dpi?: number | undefined;
89
311
  n_consensus?: number | undefined;
90
- modality?: "text" | "image" | "native" | undefined;
91
312
  parallel_ocr_keys?: Record<string, string> | null | undefined;
313
+ web_search?: boolean | undefined;
92
314
  extraction_id?: string | null | undefined;
93
315
  seed?: number | null | undefined;
94
316
  store?: boolean | undefined;
317
+ additional_messages?: {
318
+ role: "user" | "system" | "assistant" | "developer" | "tool";
319
+ content?: string | ({
320
+ type: "text";
321
+ text: string;
322
+ } | {
323
+ type: "image_url";
324
+ image_url: {
325
+ url: string;
326
+ detail: "auto" | "low" | "high";
327
+ };
328
+ } | {
329
+ type: "input_audio";
330
+ input_audio: {
331
+ data: string;
332
+ format: "wav" | "mp3";
333
+ };
334
+ } | {
335
+ type: "file";
336
+ file: {
337
+ filename: string;
338
+ file_data: string;
339
+ file_id: string;
340
+ };
341
+ })[] | null | undefined;
342
+ tool_call_id?: string | null | undefined;
343
+ tool_calls?: {
344
+ function: {
345
+ arguments: string;
346
+ name: string;
347
+ };
348
+ type: "function";
349
+ id: string;
350
+ }[] | null | undefined;
351
+ }[] | null | undefined;
95
352
  }>;
96
353
  export type DocumentExtractRequest = z.input<typeof ZDocumentExtractRequest>;
97
354
  export declare const ZParseRequest: z.ZodObject<{
@@ -203,7 +460,7 @@ export declare const ZGenerateSchemaRequest: z.ZodObject<{
203
460
  }>, "many">;
204
461
  model: z.ZodDefault<z.ZodString>;
205
462
  temperature: z.ZodDefault<z.ZodNumber>;
206
- reasoning_effort: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"minimal">, z.ZodLiteral<"low">, z.ZodLiteral<"medium">, z.ZodLiteral<"high">]>>>>;
463
+ reasoning_effort: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"minimal">, z.ZodLiteral<"low">, z.ZodLiteral<"medium">, z.ZodLiteral<"high">, z.ZodLiteral<"xhigh">]>>>>;
207
464
  instructions: z.ZodOptional<z.ZodNullable<z.ZodString>>;
208
465
  image_resolution_dpi: z.ZodDefault<z.ZodNumber>;
209
466
  stream: z.ZodDefault<z.ZodBoolean>;
@@ -211,7 +468,7 @@ export declare const ZGenerateSchemaRequest: z.ZodObject<{
211
468
  stream: boolean;
212
469
  model: string;
213
470
  temperature: number;
214
- reasoning_effort: "low" | "high" | "none" | "minimal" | "medium" | null;
471
+ reasoning_effort: "low" | "high" | "none" | "minimal" | "medium" | "xhigh" | null;
215
472
  image_resolution_dpi: number;
216
473
  documents: any[];
217
474
  instructions?: string | null | undefined;
@@ -223,7 +480,7 @@ export declare const ZGenerateSchemaRequest: z.ZodObject<{
223
480
  stream?: boolean | undefined;
224
481
  model?: string | undefined;
225
482
  temperature?: number | undefined;
226
- reasoning_effort?: "low" | "high" | "none" | "minimal" | "medium" | null | undefined;
483
+ reasoning_effort?: "low" | "high" | "none" | "minimal" | "medium" | "xhigh" | null | undefined;
227
484
  image_resolution_dpi?: number | undefined;
228
485
  instructions?: string | null | undefined;
229
486
  }>;
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@retab/node",
3
- "version": "1.0.68",
3
+ "version": "1.0.70",
4
4
  "description": "Retab official Node.js library",
5
5
  "main": "dist/index.js",
6
6
  "exports": {