@alicloud/dianjin20240628 1.1.1 → 1.3.0
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/client.d.ts +1216 -251
- package/dist/client.js +1091 -66
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +2082 -459
package/dist/client.d.ts
CHANGED
|
@@ -4,6 +4,132 @@ import * as $Util from '@alicloud/tea-util';
|
|
|
4
4
|
import OpenApi, * as $OpenApi from '@alicloud/openapi-client';
|
|
5
5
|
import { Readable } from 'stream';
|
|
6
6
|
import * as $tea from '@alicloud/tea-typescript';
|
|
7
|
+
export declare class CreateFinReportSummaryTaskRequest extends $tea.Model {
|
|
8
|
+
/**
|
|
9
|
+
* @remarks
|
|
10
|
+
* This parameter is required.
|
|
11
|
+
*
|
|
12
|
+
* @example
|
|
13
|
+
* 123
|
|
14
|
+
*/
|
|
15
|
+
docId?: string;
|
|
16
|
+
/**
|
|
17
|
+
* @remarks
|
|
18
|
+
* This parameter is required.
|
|
19
|
+
*
|
|
20
|
+
* @example
|
|
21
|
+
* true
|
|
22
|
+
*/
|
|
23
|
+
enableTable?: boolean;
|
|
24
|
+
/**
|
|
25
|
+
* @example
|
|
26
|
+
* 10
|
|
27
|
+
*/
|
|
28
|
+
endPage?: number;
|
|
29
|
+
instruction?: string;
|
|
30
|
+
/**
|
|
31
|
+
* @remarks
|
|
32
|
+
* This parameter is required.
|
|
33
|
+
*
|
|
34
|
+
* @example
|
|
35
|
+
* 3akzl28vap
|
|
36
|
+
*/
|
|
37
|
+
libraryId?: string;
|
|
38
|
+
/**
|
|
39
|
+
* @remarks
|
|
40
|
+
* This parameter is required.
|
|
41
|
+
*
|
|
42
|
+
* @example
|
|
43
|
+
* qwen-max
|
|
44
|
+
*/
|
|
45
|
+
modelId?: string;
|
|
46
|
+
/**
|
|
47
|
+
* @example
|
|
48
|
+
* 1
|
|
49
|
+
*/
|
|
50
|
+
startPage?: number;
|
|
51
|
+
/**
|
|
52
|
+
* @example
|
|
53
|
+
* custom
|
|
54
|
+
*/
|
|
55
|
+
taskType?: string;
|
|
56
|
+
static names(): {
|
|
57
|
+
[key: string]: string;
|
|
58
|
+
};
|
|
59
|
+
static types(): {
|
|
60
|
+
[key: string]: any;
|
|
61
|
+
};
|
|
62
|
+
constructor(map?: {
|
|
63
|
+
[key: string]: any;
|
|
64
|
+
});
|
|
65
|
+
}
|
|
66
|
+
export declare class CreateFinReportSummaryTaskResponseBody extends $tea.Model {
|
|
67
|
+
/**
|
|
68
|
+
* @example
|
|
69
|
+
* null
|
|
70
|
+
*/
|
|
71
|
+
cost?: number;
|
|
72
|
+
/**
|
|
73
|
+
* @example
|
|
74
|
+
* 3284627354
|
|
75
|
+
*/
|
|
76
|
+
data?: string;
|
|
77
|
+
/**
|
|
78
|
+
* @example
|
|
79
|
+
* null
|
|
80
|
+
*/
|
|
81
|
+
dataType?: string;
|
|
82
|
+
/**
|
|
83
|
+
* @example
|
|
84
|
+
* 0
|
|
85
|
+
*/
|
|
86
|
+
errCode?: string;
|
|
87
|
+
/**
|
|
88
|
+
* @example
|
|
89
|
+
* ok
|
|
90
|
+
*/
|
|
91
|
+
message?: string;
|
|
92
|
+
/**
|
|
93
|
+
* @example
|
|
94
|
+
* 5E3FBAF1-17AF-53B7-AF0A-CDCEEB6DE658
|
|
95
|
+
*/
|
|
96
|
+
requestId?: string;
|
|
97
|
+
/**
|
|
98
|
+
* @example
|
|
99
|
+
* true
|
|
100
|
+
*/
|
|
101
|
+
success?: boolean;
|
|
102
|
+
/**
|
|
103
|
+
* @example
|
|
104
|
+
* 2024-04-24 11:54:34
|
|
105
|
+
*/
|
|
106
|
+
time?: string;
|
|
107
|
+
static names(): {
|
|
108
|
+
[key: string]: string;
|
|
109
|
+
};
|
|
110
|
+
static types(): {
|
|
111
|
+
[key: string]: any;
|
|
112
|
+
};
|
|
113
|
+
constructor(map?: {
|
|
114
|
+
[key: string]: any;
|
|
115
|
+
});
|
|
116
|
+
}
|
|
117
|
+
export declare class CreateFinReportSummaryTaskResponse extends $tea.Model {
|
|
118
|
+
headers?: {
|
|
119
|
+
[key: string]: string;
|
|
120
|
+
};
|
|
121
|
+
statusCode?: number;
|
|
122
|
+
body?: CreateFinReportSummaryTaskResponseBody;
|
|
123
|
+
static names(): {
|
|
124
|
+
[key: string]: string;
|
|
125
|
+
};
|
|
126
|
+
static types(): {
|
|
127
|
+
[key: string]: any;
|
|
128
|
+
};
|
|
129
|
+
constructor(map?: {
|
|
130
|
+
[key: string]: any;
|
|
131
|
+
});
|
|
132
|
+
}
|
|
7
133
|
export declare class CreateLibraryRequest extends $tea.Model {
|
|
8
134
|
/**
|
|
9
135
|
* @remarks
|
|
@@ -15,7 +141,450 @@ export declare class CreateLibraryRequest extends $tea.Model {
|
|
|
15
141
|
* @remarks
|
|
16
142
|
* This parameter is required.
|
|
17
143
|
*/
|
|
18
|
-
libraryName?: string;
|
|
144
|
+
libraryName?: string;
|
|
145
|
+
static names(): {
|
|
146
|
+
[key: string]: string;
|
|
147
|
+
};
|
|
148
|
+
static types(): {
|
|
149
|
+
[key: string]: any;
|
|
150
|
+
};
|
|
151
|
+
constructor(map?: {
|
|
152
|
+
[key: string]: any;
|
|
153
|
+
});
|
|
154
|
+
}
|
|
155
|
+
export declare class CreateLibraryResponseBody extends $tea.Model {
|
|
156
|
+
/**
|
|
157
|
+
* @example
|
|
158
|
+
* 300
|
|
159
|
+
*/
|
|
160
|
+
cost?: number;
|
|
161
|
+
/**
|
|
162
|
+
* @example
|
|
163
|
+
* a1b2c3
|
|
164
|
+
*/
|
|
165
|
+
data?: string;
|
|
166
|
+
/**
|
|
167
|
+
* @example
|
|
168
|
+
* null
|
|
169
|
+
*/
|
|
170
|
+
dataType?: string;
|
|
171
|
+
/**
|
|
172
|
+
* @example
|
|
173
|
+
* 0
|
|
174
|
+
*/
|
|
175
|
+
errCode?: string;
|
|
176
|
+
message?: string;
|
|
177
|
+
/**
|
|
178
|
+
* @example
|
|
179
|
+
* xxxx-xxxx-xxxx-xxxx
|
|
180
|
+
*/
|
|
181
|
+
requestId?: string;
|
|
182
|
+
/**
|
|
183
|
+
* @example
|
|
184
|
+
* true
|
|
185
|
+
*/
|
|
186
|
+
success?: boolean;
|
|
187
|
+
/**
|
|
188
|
+
* @example
|
|
189
|
+
* null
|
|
190
|
+
*/
|
|
191
|
+
time?: string;
|
|
192
|
+
static names(): {
|
|
193
|
+
[key: string]: string;
|
|
194
|
+
};
|
|
195
|
+
static types(): {
|
|
196
|
+
[key: string]: any;
|
|
197
|
+
};
|
|
198
|
+
constructor(map?: {
|
|
199
|
+
[key: string]: any;
|
|
200
|
+
});
|
|
201
|
+
}
|
|
202
|
+
export declare class CreateLibraryResponse extends $tea.Model {
|
|
203
|
+
headers?: {
|
|
204
|
+
[key: string]: string;
|
|
205
|
+
};
|
|
206
|
+
statusCode?: number;
|
|
207
|
+
body?: CreateLibraryResponseBody;
|
|
208
|
+
static names(): {
|
|
209
|
+
[key: string]: string;
|
|
210
|
+
};
|
|
211
|
+
static types(): {
|
|
212
|
+
[key: string]: any;
|
|
213
|
+
};
|
|
214
|
+
constructor(map?: {
|
|
215
|
+
[key: string]: any;
|
|
216
|
+
});
|
|
217
|
+
}
|
|
218
|
+
export declare class CreatePdfTranslateTaskRequest extends $tea.Model {
|
|
219
|
+
/**
|
|
220
|
+
* @remarks
|
|
221
|
+
* This parameter is required.
|
|
222
|
+
*
|
|
223
|
+
* @example
|
|
224
|
+
* 873648346573245
|
|
225
|
+
*/
|
|
226
|
+
docId?: string;
|
|
227
|
+
knowledge?: string;
|
|
228
|
+
/**
|
|
229
|
+
* @remarks
|
|
230
|
+
* This parameter is required.
|
|
231
|
+
*
|
|
232
|
+
* @example
|
|
233
|
+
* cjshcxxxx
|
|
234
|
+
*/
|
|
235
|
+
libraryId?: string;
|
|
236
|
+
/**
|
|
237
|
+
* @remarks
|
|
238
|
+
* This parameter is required.
|
|
239
|
+
*
|
|
240
|
+
* @example
|
|
241
|
+
* qwen-plus
|
|
242
|
+
*/
|
|
243
|
+
modelId?: string;
|
|
244
|
+
/**
|
|
245
|
+
* @example
|
|
246
|
+
* 中文
|
|
247
|
+
*/
|
|
248
|
+
translateTo?: string;
|
|
249
|
+
static names(): {
|
|
250
|
+
[key: string]: string;
|
|
251
|
+
};
|
|
252
|
+
static types(): {
|
|
253
|
+
[key: string]: any;
|
|
254
|
+
};
|
|
255
|
+
constructor(map?: {
|
|
256
|
+
[key: string]: any;
|
|
257
|
+
});
|
|
258
|
+
}
|
|
259
|
+
export declare class CreatePdfTranslateTaskResponseBody extends $tea.Model {
|
|
260
|
+
/**
|
|
261
|
+
* @example
|
|
262
|
+
* null
|
|
263
|
+
*/
|
|
264
|
+
cost?: number;
|
|
265
|
+
/**
|
|
266
|
+
* @example
|
|
267
|
+
* 3284627354
|
|
268
|
+
*/
|
|
269
|
+
data?: string;
|
|
270
|
+
/**
|
|
271
|
+
* @example
|
|
272
|
+
* null
|
|
273
|
+
*/
|
|
274
|
+
dataType?: string;
|
|
275
|
+
/**
|
|
276
|
+
* @example
|
|
277
|
+
* 0
|
|
278
|
+
*/
|
|
279
|
+
errCode?: string;
|
|
280
|
+
/**
|
|
281
|
+
* @example
|
|
282
|
+
* ok
|
|
283
|
+
*/
|
|
284
|
+
message?: string;
|
|
285
|
+
/**
|
|
286
|
+
* @example
|
|
287
|
+
* 5E3FBAF1-17AF-53B7-AF0A-CDCEEB6DE658
|
|
288
|
+
*/
|
|
289
|
+
requestId?: string;
|
|
290
|
+
/**
|
|
291
|
+
* @example
|
|
292
|
+
* true
|
|
293
|
+
*/
|
|
294
|
+
success?: boolean;
|
|
295
|
+
/**
|
|
296
|
+
* @example
|
|
297
|
+
* 2024-04-24 11:54:34
|
|
298
|
+
*/
|
|
299
|
+
time?: string;
|
|
300
|
+
static names(): {
|
|
301
|
+
[key: string]: string;
|
|
302
|
+
};
|
|
303
|
+
static types(): {
|
|
304
|
+
[key: string]: any;
|
|
305
|
+
};
|
|
306
|
+
constructor(map?: {
|
|
307
|
+
[key: string]: any;
|
|
308
|
+
});
|
|
309
|
+
}
|
|
310
|
+
export declare class CreatePdfTranslateTaskResponse extends $tea.Model {
|
|
311
|
+
headers?: {
|
|
312
|
+
[key: string]: string;
|
|
313
|
+
};
|
|
314
|
+
statusCode?: number;
|
|
315
|
+
body?: CreatePdfTranslateTaskResponseBody;
|
|
316
|
+
static names(): {
|
|
317
|
+
[key: string]: string;
|
|
318
|
+
};
|
|
319
|
+
static types(): {
|
|
320
|
+
[key: string]: any;
|
|
321
|
+
};
|
|
322
|
+
constructor(map?: {
|
|
323
|
+
[key: string]: any;
|
|
324
|
+
});
|
|
325
|
+
}
|
|
326
|
+
export declare class CreatePredefinedDocumentRequest extends $tea.Model {
|
|
327
|
+
chunks?: CreatePredefinedDocumentRequestChunks[];
|
|
328
|
+
/**
|
|
329
|
+
* @example
|
|
330
|
+
* a1b2c3
|
|
331
|
+
*/
|
|
332
|
+
libraryId?: string;
|
|
333
|
+
/**
|
|
334
|
+
* @example
|
|
335
|
+
* {"a": "1"}
|
|
336
|
+
*/
|
|
337
|
+
metadata?: {
|
|
338
|
+
[key: string]: any;
|
|
339
|
+
};
|
|
340
|
+
/**
|
|
341
|
+
* @example
|
|
342
|
+
* 测试文档
|
|
343
|
+
*/
|
|
344
|
+
title?: string;
|
|
345
|
+
static names(): {
|
|
346
|
+
[key: string]: string;
|
|
347
|
+
};
|
|
348
|
+
static types(): {
|
|
349
|
+
[key: string]: any;
|
|
350
|
+
};
|
|
351
|
+
constructor(map?: {
|
|
352
|
+
[key: string]: any;
|
|
353
|
+
});
|
|
354
|
+
}
|
|
355
|
+
export declare class CreatePredefinedDocumentResponseBody extends $tea.Model {
|
|
356
|
+
/**
|
|
357
|
+
* @example
|
|
358
|
+
* null
|
|
359
|
+
*/
|
|
360
|
+
cost?: number;
|
|
361
|
+
/**
|
|
362
|
+
* @example
|
|
363
|
+
* 1782981430906818562
|
|
364
|
+
*/
|
|
365
|
+
data?: string;
|
|
366
|
+
/**
|
|
367
|
+
* @example
|
|
368
|
+
* null
|
|
369
|
+
*/
|
|
370
|
+
dataType?: string;
|
|
371
|
+
/**
|
|
372
|
+
* @example
|
|
373
|
+
* 0
|
|
374
|
+
*/
|
|
375
|
+
errCode?: string;
|
|
376
|
+
/**
|
|
377
|
+
* @example
|
|
378
|
+
* ok
|
|
379
|
+
*/
|
|
380
|
+
message?: string;
|
|
381
|
+
/**
|
|
382
|
+
* @example
|
|
383
|
+
* 0a06dfe617018288881568684e2937
|
|
384
|
+
*/
|
|
385
|
+
requestId?: string;
|
|
386
|
+
/**
|
|
387
|
+
* @example
|
|
388
|
+
* true
|
|
389
|
+
*/
|
|
390
|
+
success?: boolean;
|
|
391
|
+
/**
|
|
392
|
+
* @example
|
|
393
|
+
* 2024-04-24 11:54:34
|
|
394
|
+
*/
|
|
395
|
+
time?: string;
|
|
396
|
+
static names(): {
|
|
397
|
+
[key: string]: string;
|
|
398
|
+
};
|
|
399
|
+
static types(): {
|
|
400
|
+
[key: string]: any;
|
|
401
|
+
};
|
|
402
|
+
constructor(map?: {
|
|
403
|
+
[key: string]: any;
|
|
404
|
+
});
|
|
405
|
+
}
|
|
406
|
+
export declare class CreatePredefinedDocumentResponse extends $tea.Model {
|
|
407
|
+
headers?: {
|
|
408
|
+
[key: string]: string;
|
|
409
|
+
};
|
|
410
|
+
statusCode?: number;
|
|
411
|
+
body?: CreatePredefinedDocumentResponseBody;
|
|
412
|
+
static names(): {
|
|
413
|
+
[key: string]: string;
|
|
414
|
+
};
|
|
415
|
+
static types(): {
|
|
416
|
+
[key: string]: any;
|
|
417
|
+
};
|
|
418
|
+
constructor(map?: {
|
|
419
|
+
[key: string]: any;
|
|
420
|
+
});
|
|
421
|
+
}
|
|
422
|
+
export declare class DeleteDocumentRequest extends $tea.Model {
|
|
423
|
+
/**
|
|
424
|
+
* @remarks
|
|
425
|
+
* This parameter is required.
|
|
426
|
+
*/
|
|
427
|
+
docIds?: string[];
|
|
428
|
+
/**
|
|
429
|
+
* @remarks
|
|
430
|
+
* This parameter is required.
|
|
431
|
+
*
|
|
432
|
+
* @example
|
|
433
|
+
* 3akzl28vap
|
|
434
|
+
*/
|
|
435
|
+
libraryId?: string;
|
|
436
|
+
static names(): {
|
|
437
|
+
[key: string]: string;
|
|
438
|
+
};
|
|
439
|
+
static types(): {
|
|
440
|
+
[key: string]: any;
|
|
441
|
+
};
|
|
442
|
+
constructor(map?: {
|
|
443
|
+
[key: string]: any;
|
|
444
|
+
});
|
|
445
|
+
}
|
|
446
|
+
export declare class DeleteDocumentResponseBody extends $tea.Model {
|
|
447
|
+
/**
|
|
448
|
+
* @example
|
|
449
|
+
* null
|
|
450
|
+
*/
|
|
451
|
+
cost?: number;
|
|
452
|
+
/**
|
|
453
|
+
* @example
|
|
454
|
+
* True
|
|
455
|
+
*/
|
|
456
|
+
data?: boolean;
|
|
457
|
+
/**
|
|
458
|
+
* @example
|
|
459
|
+
* null
|
|
460
|
+
*/
|
|
461
|
+
dataType?: string;
|
|
462
|
+
/**
|
|
463
|
+
* @example
|
|
464
|
+
* 0
|
|
465
|
+
*/
|
|
466
|
+
errCode?: string;
|
|
467
|
+
/**
|
|
468
|
+
* @example
|
|
469
|
+
* ok
|
|
470
|
+
*/
|
|
471
|
+
message?: string;
|
|
472
|
+
/**
|
|
473
|
+
* @example
|
|
474
|
+
* 67C7021A-D268-553D-8C15-A087B9604028
|
|
475
|
+
*/
|
|
476
|
+
requestId?: string;
|
|
477
|
+
/**
|
|
478
|
+
* @example
|
|
479
|
+
* true
|
|
480
|
+
*/
|
|
481
|
+
success?: boolean;
|
|
482
|
+
/**
|
|
483
|
+
* @example
|
|
484
|
+
* 2024-04-24 11:54:34
|
|
485
|
+
*/
|
|
486
|
+
time?: string;
|
|
487
|
+
static names(): {
|
|
488
|
+
[key: string]: string;
|
|
489
|
+
};
|
|
490
|
+
static types(): {
|
|
491
|
+
[key: string]: any;
|
|
492
|
+
};
|
|
493
|
+
constructor(map?: {
|
|
494
|
+
[key: string]: any;
|
|
495
|
+
});
|
|
496
|
+
}
|
|
497
|
+
export declare class DeleteDocumentResponse extends $tea.Model {
|
|
498
|
+
headers?: {
|
|
499
|
+
[key: string]: string;
|
|
500
|
+
};
|
|
501
|
+
statusCode?: number;
|
|
502
|
+
body?: DeleteDocumentResponseBody;
|
|
503
|
+
static names(): {
|
|
504
|
+
[key: string]: string;
|
|
505
|
+
};
|
|
506
|
+
static types(): {
|
|
507
|
+
[key: string]: any;
|
|
508
|
+
};
|
|
509
|
+
constructor(map?: {
|
|
510
|
+
[key: string]: any;
|
|
511
|
+
});
|
|
512
|
+
}
|
|
513
|
+
export declare class DeleteLibraryRequest extends $tea.Model {
|
|
514
|
+
/**
|
|
515
|
+
* @remarks
|
|
516
|
+
* This parameter is required.
|
|
517
|
+
*
|
|
518
|
+
* @example
|
|
519
|
+
* skdfefxxx
|
|
520
|
+
*/
|
|
521
|
+
libraryId?: string;
|
|
522
|
+
static names(): {
|
|
523
|
+
[key: string]: string;
|
|
524
|
+
};
|
|
525
|
+
static types(): {
|
|
526
|
+
[key: string]: any;
|
|
527
|
+
};
|
|
528
|
+
constructor(map?: {
|
|
529
|
+
[key: string]: any;
|
|
530
|
+
});
|
|
531
|
+
}
|
|
532
|
+
export declare class DeleteLibraryResponseBody extends $tea.Model {
|
|
533
|
+
/**
|
|
534
|
+
* @example
|
|
535
|
+
* 0
|
|
536
|
+
*/
|
|
537
|
+
errCode?: string;
|
|
538
|
+
/**
|
|
539
|
+
* @example
|
|
540
|
+
* ok
|
|
541
|
+
*/
|
|
542
|
+
message?: string;
|
|
543
|
+
/**
|
|
544
|
+
* @example
|
|
545
|
+
* 30F6AD44-F078-540D-B5A5-1E519C8E9E6D
|
|
546
|
+
*/
|
|
547
|
+
requestId?: string;
|
|
548
|
+
/**
|
|
549
|
+
* @example
|
|
550
|
+
* true
|
|
551
|
+
*/
|
|
552
|
+
success?: boolean;
|
|
553
|
+
static names(): {
|
|
554
|
+
[key: string]: string;
|
|
555
|
+
};
|
|
556
|
+
static types(): {
|
|
557
|
+
[key: string]: any;
|
|
558
|
+
};
|
|
559
|
+
constructor(map?: {
|
|
560
|
+
[key: string]: any;
|
|
561
|
+
});
|
|
562
|
+
}
|
|
563
|
+
export declare class DeleteLibraryResponse extends $tea.Model {
|
|
564
|
+
headers?: {
|
|
565
|
+
[key: string]: string;
|
|
566
|
+
};
|
|
567
|
+
statusCode?: number;
|
|
568
|
+
body?: DeleteLibraryResponseBody;
|
|
569
|
+
static names(): {
|
|
570
|
+
[key: string]: string;
|
|
571
|
+
};
|
|
572
|
+
static types(): {
|
|
573
|
+
[key: string]: any;
|
|
574
|
+
};
|
|
575
|
+
constructor(map?: {
|
|
576
|
+
[key: string]: any;
|
|
577
|
+
});
|
|
578
|
+
}
|
|
579
|
+
export declare class EvictTaskRequest extends $tea.Model {
|
|
580
|
+
/**
|
|
581
|
+
* @remarks
|
|
582
|
+
* This parameter is required.
|
|
583
|
+
*
|
|
584
|
+
* @example
|
|
585
|
+
* 17071319
|
|
586
|
+
*/
|
|
587
|
+
taskId?: string;
|
|
19
588
|
static names(): {
|
|
20
589
|
[key: string]: string;
|
|
21
590
|
};
|
|
@@ -26,15 +595,15 @@ export declare class CreateLibraryRequest extends $tea.Model {
|
|
|
26
595
|
[key: string]: any;
|
|
27
596
|
});
|
|
28
597
|
}
|
|
29
|
-
export declare class
|
|
598
|
+
export declare class EvictTaskResponseBody extends $tea.Model {
|
|
30
599
|
/**
|
|
31
600
|
* @example
|
|
32
|
-
*
|
|
601
|
+
* null
|
|
33
602
|
*/
|
|
34
603
|
cost?: number;
|
|
35
604
|
/**
|
|
36
605
|
* @example
|
|
37
|
-
*
|
|
606
|
+
* 17071319
|
|
38
607
|
*/
|
|
39
608
|
data?: string;
|
|
40
609
|
/**
|
|
@@ -50,7 +619,7 @@ export declare class CreateLibraryResponseBody extends $tea.Model {
|
|
|
50
619
|
message?: string;
|
|
51
620
|
/**
|
|
52
621
|
* @example
|
|
53
|
-
*
|
|
622
|
+
* 44BD277A-87F9-5310-8D63-3E6645F1DA85
|
|
54
623
|
*/
|
|
55
624
|
requestId?: string;
|
|
56
625
|
/**
|
|
@@ -60,7 +629,7 @@ export declare class CreateLibraryResponseBody extends $tea.Model {
|
|
|
60
629
|
success?: boolean;
|
|
61
630
|
/**
|
|
62
631
|
* @example
|
|
63
|
-
*
|
|
632
|
+
* 2024-04-24 11:54:34
|
|
64
633
|
*/
|
|
65
634
|
time?: string;
|
|
66
635
|
static names(): {
|
|
@@ -73,41 +642,12 @@ export declare class CreateLibraryResponseBody extends $tea.Model {
|
|
|
73
642
|
[key: string]: any;
|
|
74
643
|
});
|
|
75
644
|
}
|
|
76
|
-
export declare class
|
|
645
|
+
export declare class EvictTaskResponse extends $tea.Model {
|
|
77
646
|
headers?: {
|
|
78
647
|
[key: string]: string;
|
|
79
648
|
};
|
|
80
649
|
statusCode?: number;
|
|
81
|
-
body?:
|
|
82
|
-
static names(): {
|
|
83
|
-
[key: string]: string;
|
|
84
|
-
};
|
|
85
|
-
static types(): {
|
|
86
|
-
[key: string]: any;
|
|
87
|
-
};
|
|
88
|
-
constructor(map?: {
|
|
89
|
-
[key: string]: any;
|
|
90
|
-
});
|
|
91
|
-
}
|
|
92
|
-
export declare class CreatePredefinedDocumentRequest extends $tea.Model {
|
|
93
|
-
chunks?: CreatePredefinedDocumentRequestChunks[];
|
|
94
|
-
/**
|
|
95
|
-
* @example
|
|
96
|
-
* a1b2c3
|
|
97
|
-
*/
|
|
98
|
-
libraryId?: string;
|
|
99
|
-
/**
|
|
100
|
-
* @example
|
|
101
|
-
* {"a": "1"}
|
|
102
|
-
*/
|
|
103
|
-
metadata?: {
|
|
104
|
-
[key: string]: any;
|
|
105
|
-
};
|
|
106
|
-
/**
|
|
107
|
-
* @example
|
|
108
|
-
* 测试文档
|
|
109
|
-
*/
|
|
110
|
-
title?: string;
|
|
650
|
+
body?: EvictTaskResponseBody;
|
|
111
651
|
static names(): {
|
|
112
652
|
[key: string]: string;
|
|
113
653
|
};
|
|
@@ -118,17 +658,13 @@ export declare class CreatePredefinedDocumentRequest extends $tea.Model {
|
|
|
118
658
|
[key: string]: any;
|
|
119
659
|
});
|
|
120
660
|
}
|
|
121
|
-
export declare class
|
|
661
|
+
export declare class GetAppConfigResponseBody extends $tea.Model {
|
|
122
662
|
/**
|
|
123
663
|
* @example
|
|
124
664
|
* null
|
|
125
665
|
*/
|
|
126
666
|
cost?: number;
|
|
127
|
-
|
|
128
|
-
* @example
|
|
129
|
-
* 1782981430906818562
|
|
130
|
-
*/
|
|
131
|
-
data?: string;
|
|
667
|
+
data?: GetAppConfigResponseBodyData;
|
|
132
668
|
/**
|
|
133
669
|
* @example
|
|
134
670
|
* null
|
|
@@ -141,17 +677,17 @@ export declare class CreatePredefinedDocumentResponseBody extends $tea.Model {
|
|
|
141
677
|
errCode?: string;
|
|
142
678
|
/**
|
|
143
679
|
* @example
|
|
144
|
-
*
|
|
680
|
+
* None
|
|
145
681
|
*/
|
|
146
682
|
message?: string;
|
|
147
683
|
/**
|
|
148
684
|
* @example
|
|
149
|
-
*
|
|
685
|
+
* EF4B5C9B-3BC8-5171-A47B-4C5CF3DC3258
|
|
150
686
|
*/
|
|
151
687
|
requestId?: string;
|
|
152
688
|
/**
|
|
153
689
|
* @example
|
|
154
|
-
*
|
|
690
|
+
* True
|
|
155
691
|
*/
|
|
156
692
|
success?: boolean;
|
|
157
693
|
/**
|
|
@@ -169,12 +705,12 @@ export declare class CreatePredefinedDocumentResponseBody extends $tea.Model {
|
|
|
169
705
|
[key: string]: any;
|
|
170
706
|
});
|
|
171
707
|
}
|
|
172
|
-
export declare class
|
|
708
|
+
export declare class GetAppConfigResponse extends $tea.Model {
|
|
173
709
|
headers?: {
|
|
174
710
|
[key: string]: string;
|
|
175
711
|
};
|
|
176
712
|
statusCode?: number;
|
|
177
|
-
body?:
|
|
713
|
+
body?: GetAppConfigResponseBody;
|
|
178
714
|
static names(): {
|
|
179
715
|
[key: string]: string;
|
|
180
716
|
};
|
|
@@ -185,20 +721,49 @@ export declare class CreatePredefinedDocumentResponse extends $tea.Model {
|
|
|
185
721
|
[key: string]: any;
|
|
186
722
|
});
|
|
187
723
|
}
|
|
188
|
-
export declare class
|
|
724
|
+
export declare class GetDocumentChunkListRequest extends $tea.Model {
|
|
725
|
+
chunkIdList?: string[];
|
|
189
726
|
/**
|
|
190
727
|
* @remarks
|
|
191
728
|
* This parameter is required.
|
|
729
|
+
*
|
|
730
|
+
* @example
|
|
731
|
+
* 182364872346
|
|
192
732
|
*/
|
|
193
|
-
|
|
733
|
+
docId?: string;
|
|
194
734
|
/**
|
|
195
735
|
* @remarks
|
|
196
736
|
* This parameter is required.
|
|
197
737
|
*
|
|
198
738
|
* @example
|
|
199
|
-
*
|
|
739
|
+
* dsjgfdjgfxxx
|
|
200
740
|
*/
|
|
201
741
|
libraryId?: string;
|
|
742
|
+
/**
|
|
743
|
+
* @example
|
|
744
|
+
* desc
|
|
745
|
+
*/
|
|
746
|
+
order?: string;
|
|
747
|
+
/**
|
|
748
|
+
* @example
|
|
749
|
+
* gmtCreate
|
|
750
|
+
*/
|
|
751
|
+
orderBy?: string;
|
|
752
|
+
/**
|
|
753
|
+
* @example
|
|
754
|
+
* 1
|
|
755
|
+
*/
|
|
756
|
+
page?: number;
|
|
757
|
+
/**
|
|
758
|
+
* @example
|
|
759
|
+
* 10
|
|
760
|
+
*/
|
|
761
|
+
pageSize?: number;
|
|
762
|
+
/**
|
|
763
|
+
* @example
|
|
764
|
+
* test
|
|
765
|
+
*/
|
|
766
|
+
searchQuery?: string;
|
|
202
767
|
static names(): {
|
|
203
768
|
[key: string]: string;
|
|
204
769
|
};
|
|
@@ -209,17 +774,13 @@ export declare class DeleteDocumentRequest extends $tea.Model {
|
|
|
209
774
|
[key: string]: any;
|
|
210
775
|
});
|
|
211
776
|
}
|
|
212
|
-
export declare class
|
|
777
|
+
export declare class GetDocumentChunkListResponseBody extends $tea.Model {
|
|
213
778
|
/**
|
|
214
779
|
* @example
|
|
215
780
|
* null
|
|
216
781
|
*/
|
|
217
782
|
cost?: number;
|
|
218
|
-
|
|
219
|
-
* @example
|
|
220
|
-
* True
|
|
221
|
-
*/
|
|
222
|
-
data?: boolean;
|
|
783
|
+
data?: GetDocumentChunkListResponseBodyData;
|
|
223
784
|
/**
|
|
224
785
|
* @example
|
|
225
786
|
* null
|
|
@@ -237,7 +798,7 @@ export declare class DeleteDocumentResponseBody extends $tea.Model {
|
|
|
237
798
|
message?: string;
|
|
238
799
|
/**
|
|
239
800
|
* @example
|
|
240
|
-
*
|
|
801
|
+
* 2B8F6DC9-6FAF-576F-9095-CCD90FB2BDDF
|
|
241
802
|
*/
|
|
242
803
|
requestId?: string;
|
|
243
804
|
/**
|
|
@@ -260,12 +821,12 @@ export declare class DeleteDocumentResponseBody extends $tea.Model {
|
|
|
260
821
|
[key: string]: any;
|
|
261
822
|
});
|
|
262
823
|
}
|
|
263
|
-
export declare class
|
|
824
|
+
export declare class GetDocumentChunkListResponse extends $tea.Model {
|
|
264
825
|
headers?: {
|
|
265
826
|
[key: string]: string;
|
|
266
827
|
};
|
|
267
828
|
statusCode?: number;
|
|
268
|
-
body?:
|
|
829
|
+
body?: GetDocumentChunkListResponseBody;
|
|
269
830
|
static names(): {
|
|
270
831
|
[key: string]: string;
|
|
271
832
|
};
|
|
@@ -276,15 +837,26 @@ export declare class DeleteDocumentResponse extends $tea.Model {
|
|
|
276
837
|
[key: string]: any;
|
|
277
838
|
});
|
|
278
839
|
}
|
|
279
|
-
export declare class
|
|
840
|
+
export declare class GetDocumentListRequest extends $tea.Model {
|
|
280
841
|
/**
|
|
281
842
|
* @remarks
|
|
282
843
|
* This parameter is required.
|
|
283
844
|
*
|
|
284
845
|
* @example
|
|
285
|
-
*
|
|
846
|
+
* 3akzl28vap
|
|
286
847
|
*/
|
|
287
848
|
libraryId?: string;
|
|
849
|
+
/**
|
|
850
|
+
* @example
|
|
851
|
+
* 1
|
|
852
|
+
*/
|
|
853
|
+
page?: number;
|
|
854
|
+
/**
|
|
855
|
+
* @example
|
|
856
|
+
* 10
|
|
857
|
+
*/
|
|
858
|
+
pageSize?: number;
|
|
859
|
+
status?: string;
|
|
288
860
|
static names(): {
|
|
289
861
|
[key: string]: string;
|
|
290
862
|
};
|
|
@@ -295,7 +867,18 @@ export declare class DeleteLibraryRequest extends $tea.Model {
|
|
|
295
867
|
[key: string]: any;
|
|
296
868
|
});
|
|
297
869
|
}
|
|
298
|
-
export declare class
|
|
870
|
+
export declare class GetDocumentListResponseBody extends $tea.Model {
|
|
871
|
+
/**
|
|
872
|
+
* @example
|
|
873
|
+
* null
|
|
874
|
+
*/
|
|
875
|
+
cost?: number;
|
|
876
|
+
data?: GetDocumentListResponseBodyData;
|
|
877
|
+
/**
|
|
878
|
+
* @example
|
|
879
|
+
* null
|
|
880
|
+
*/
|
|
881
|
+
dataType?: string;
|
|
299
882
|
/**
|
|
300
883
|
* @example
|
|
301
884
|
* 0
|
|
@@ -308,7 +891,7 @@ export declare class DeleteLibraryResponseBody extends $tea.Model {
|
|
|
308
891
|
message?: string;
|
|
309
892
|
/**
|
|
310
893
|
* @example
|
|
311
|
-
*
|
|
894
|
+
* 5E3FBAF1-17AF-53B7-AF0A-CDCEEB6DE658
|
|
312
895
|
*/
|
|
313
896
|
requestId?: string;
|
|
314
897
|
/**
|
|
@@ -316,6 +899,11 @@ export declare class DeleteLibraryResponseBody extends $tea.Model {
|
|
|
316
899
|
* true
|
|
317
900
|
*/
|
|
318
901
|
success?: boolean;
|
|
902
|
+
/**
|
|
903
|
+
* @example
|
|
904
|
+
* 2024-04-24 11:54:34
|
|
905
|
+
*/
|
|
906
|
+
time?: string;
|
|
319
907
|
static names(): {
|
|
320
908
|
[key: string]: string;
|
|
321
909
|
};
|
|
@@ -326,12 +914,12 @@ export declare class DeleteLibraryResponseBody extends $tea.Model {
|
|
|
326
914
|
[key: string]: any;
|
|
327
915
|
});
|
|
328
916
|
}
|
|
329
|
-
export declare class
|
|
917
|
+
export declare class GetDocumentListResponse extends $tea.Model {
|
|
330
918
|
headers?: {
|
|
331
919
|
[key: string]: string;
|
|
332
920
|
};
|
|
333
921
|
statusCode?: number;
|
|
334
|
-
body?:
|
|
922
|
+
body?: GetDocumentListResponseBody;
|
|
335
923
|
static names(): {
|
|
336
924
|
[key: string]: string;
|
|
337
925
|
};
|
|
@@ -342,13 +930,36 @@ export declare class DeleteLibraryResponse extends $tea.Model {
|
|
|
342
930
|
[key: string]: any;
|
|
343
931
|
});
|
|
344
932
|
}
|
|
345
|
-
export declare class
|
|
933
|
+
export declare class GetDocumentUrlRequest extends $tea.Model {
|
|
934
|
+
/**
|
|
935
|
+
* @remarks
|
|
936
|
+
* This parameter is required.
|
|
937
|
+
*
|
|
938
|
+
* @example
|
|
939
|
+
* 12681367362
|
|
940
|
+
*/
|
|
941
|
+
documentId?: string;
|
|
942
|
+
static names(): {
|
|
943
|
+
[key: string]: string;
|
|
944
|
+
};
|
|
945
|
+
static types(): {
|
|
946
|
+
[key: string]: any;
|
|
947
|
+
};
|
|
948
|
+
constructor(map?: {
|
|
949
|
+
[key: string]: any;
|
|
950
|
+
});
|
|
951
|
+
}
|
|
952
|
+
export declare class GetDocumentUrlResponseBody extends $tea.Model {
|
|
346
953
|
/**
|
|
347
954
|
* @example
|
|
348
955
|
* null
|
|
349
956
|
*/
|
|
350
957
|
cost?: number;
|
|
351
|
-
|
|
958
|
+
/**
|
|
959
|
+
* @example
|
|
960
|
+
* https://path_to_file
|
|
961
|
+
*/
|
|
962
|
+
data?: string;
|
|
352
963
|
/**
|
|
353
964
|
* @example
|
|
354
965
|
* null
|
|
@@ -361,22 +972,22 @@ export declare class GetAppConfigResponseBody extends $tea.Model {
|
|
|
361
972
|
errCode?: string;
|
|
362
973
|
/**
|
|
363
974
|
* @example
|
|
364
|
-
*
|
|
975
|
+
* ok
|
|
365
976
|
*/
|
|
366
977
|
message?: string;
|
|
367
978
|
/**
|
|
368
979
|
* @example
|
|
369
|
-
*
|
|
980
|
+
* 66249B43-8C2B-5EE7-AE78-B382306621C6
|
|
370
981
|
*/
|
|
371
982
|
requestId?: string;
|
|
372
983
|
/**
|
|
373
984
|
* @example
|
|
374
|
-
*
|
|
985
|
+
* true
|
|
375
986
|
*/
|
|
376
987
|
success?: boolean;
|
|
377
988
|
/**
|
|
378
989
|
* @example
|
|
379
|
-
* 2024-
|
|
990
|
+
* 2024-01-01 00:00:00
|
|
380
991
|
*/
|
|
381
992
|
time?: string;
|
|
382
993
|
static names(): {
|
|
@@ -389,12 +1000,12 @@ export declare class GetAppConfigResponseBody extends $tea.Model {
|
|
|
389
1000
|
[key: string]: any;
|
|
390
1001
|
});
|
|
391
1002
|
}
|
|
392
|
-
export declare class
|
|
1003
|
+
export declare class GetDocumentUrlResponse extends $tea.Model {
|
|
393
1004
|
headers?: {
|
|
394
1005
|
[key: string]: string;
|
|
395
1006
|
};
|
|
396
1007
|
statusCode?: number;
|
|
397
|
-
body?:
|
|
1008
|
+
body?: GetDocumentUrlResponseBody;
|
|
398
1009
|
static names(): {
|
|
399
1010
|
[key: string]: string;
|
|
400
1011
|
};
|
|
@@ -405,34 +1016,18 @@ export declare class GetAppConfigResponse extends $tea.Model {
|
|
|
405
1016
|
[key: string]: any;
|
|
406
1017
|
});
|
|
407
1018
|
}
|
|
408
|
-
export declare class
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
* @remarks
|
|
412
|
-
* This parameter is required.
|
|
413
|
-
*
|
|
414
|
-
* @example
|
|
415
|
-
* 182364872346
|
|
416
|
-
*/
|
|
417
|
-
docId?: string;
|
|
1019
|
+
export declare class GetFilterDocumentListRequest extends $tea.Model {
|
|
1020
|
+
and?: GetFilterDocumentListRequestAnd[];
|
|
1021
|
+
docIdList?: string[];
|
|
418
1022
|
/**
|
|
419
1023
|
* @remarks
|
|
420
1024
|
* This parameter is required.
|
|
421
1025
|
*
|
|
422
1026
|
* @example
|
|
423
|
-
*
|
|
1027
|
+
* cjshcxxxx
|
|
424
1028
|
*/
|
|
425
1029
|
libraryId?: string;
|
|
426
|
-
|
|
427
|
-
* @example
|
|
428
|
-
* desc
|
|
429
|
-
*/
|
|
430
|
-
order?: string;
|
|
431
|
-
/**
|
|
432
|
-
* @example
|
|
433
|
-
* gmtCreate
|
|
434
|
-
*/
|
|
435
|
-
orderBy?: string;
|
|
1030
|
+
or?: GetFilterDocumentListRequestOr[];
|
|
436
1031
|
/**
|
|
437
1032
|
* @example
|
|
438
1033
|
* 1
|
|
@@ -443,11 +1038,7 @@ export declare class GetDocumentChunkListRequest extends $tea.Model {
|
|
|
443
1038
|
* 10
|
|
444
1039
|
*/
|
|
445
1040
|
pageSize?: number;
|
|
446
|
-
|
|
447
|
-
* @example
|
|
448
|
-
* test
|
|
449
|
-
*/
|
|
450
|
-
searchQuery?: string;
|
|
1041
|
+
status?: string[];
|
|
451
1042
|
static names(): {
|
|
452
1043
|
[key: string]: string;
|
|
453
1044
|
};
|
|
@@ -458,13 +1049,13 @@ export declare class GetDocumentChunkListRequest extends $tea.Model {
|
|
|
458
1049
|
[key: string]: any;
|
|
459
1050
|
});
|
|
460
1051
|
}
|
|
461
|
-
export declare class
|
|
1052
|
+
export declare class GetFilterDocumentListResponseBody extends $tea.Model {
|
|
462
1053
|
/**
|
|
463
1054
|
* @example
|
|
464
1055
|
* null
|
|
465
1056
|
*/
|
|
466
1057
|
cost?: number;
|
|
467
|
-
data?:
|
|
1058
|
+
data?: GetFilterDocumentListResponseBodyData;
|
|
468
1059
|
/**
|
|
469
1060
|
* @example
|
|
470
1061
|
* null
|
|
@@ -482,7 +1073,7 @@ export declare class GetDocumentChunkListResponseBody extends $tea.Model {
|
|
|
482
1073
|
message?: string;
|
|
483
1074
|
/**
|
|
484
1075
|
* @example
|
|
485
|
-
*
|
|
1076
|
+
* 7ADF010C-FD89-569D-A079-2D4D5247E943
|
|
486
1077
|
*/
|
|
487
1078
|
requestId?: string;
|
|
488
1079
|
/**
|
|
@@ -492,7 +1083,7 @@ export declare class GetDocumentChunkListResponseBody extends $tea.Model {
|
|
|
492
1083
|
success?: boolean;
|
|
493
1084
|
/**
|
|
494
1085
|
* @example
|
|
495
|
-
* 2024-
|
|
1086
|
+
* 2024-01-01 00:00:00
|
|
496
1087
|
*/
|
|
497
1088
|
time?: string;
|
|
498
1089
|
static names(): {
|
|
@@ -505,12 +1096,12 @@ export declare class GetDocumentChunkListResponseBody extends $tea.Model {
|
|
|
505
1096
|
[key: string]: any;
|
|
506
1097
|
});
|
|
507
1098
|
}
|
|
508
|
-
export declare class
|
|
1099
|
+
export declare class GetFilterDocumentListResponse extends $tea.Model {
|
|
509
1100
|
headers?: {
|
|
510
1101
|
[key: string]: string;
|
|
511
1102
|
};
|
|
512
1103
|
statusCode?: number;
|
|
513
|
-
body?:
|
|
1104
|
+
body?: GetFilterDocumentListResponseBody;
|
|
514
1105
|
static names(): {
|
|
515
1106
|
[key: string]: string;
|
|
516
1107
|
};
|
|
@@ -521,15 +1112,23 @@ export declare class GetDocumentChunkListResponse extends $tea.Model {
|
|
|
521
1112
|
[key: string]: any;
|
|
522
1113
|
});
|
|
523
1114
|
}
|
|
524
|
-
export declare class
|
|
1115
|
+
export declare class GetHistoryListByBizTypeRequest extends $tea.Model {
|
|
525
1116
|
/**
|
|
526
1117
|
* @remarks
|
|
527
1118
|
* This parameter is required.
|
|
528
1119
|
*
|
|
529
1120
|
* @example
|
|
530
|
-
*
|
|
1121
|
+
* GysYBsxx
|
|
531
1122
|
*/
|
|
532
|
-
|
|
1123
|
+
bizId?: string;
|
|
1124
|
+
/**
|
|
1125
|
+
* @remarks
|
|
1126
|
+
* This parameter is required.
|
|
1127
|
+
*
|
|
1128
|
+
* @example
|
|
1129
|
+
* LibraryChat
|
|
1130
|
+
*/
|
|
1131
|
+
bizType?: string;
|
|
533
1132
|
/**
|
|
534
1133
|
* @example
|
|
535
1134
|
* 1
|
|
@@ -540,7 +1139,6 @@ export declare class GetDocumentListRequest extends $tea.Model {
|
|
|
540
1139
|
* 10
|
|
541
1140
|
*/
|
|
542
1141
|
pageSize?: number;
|
|
543
|
-
status?: string;
|
|
544
1142
|
static names(): {
|
|
545
1143
|
[key: string]: string;
|
|
546
1144
|
};
|
|
@@ -551,13 +1149,13 @@ export declare class GetDocumentListRequest extends $tea.Model {
|
|
|
551
1149
|
[key: string]: any;
|
|
552
1150
|
});
|
|
553
1151
|
}
|
|
554
|
-
export declare class
|
|
1152
|
+
export declare class GetHistoryListByBizTypeResponseBody extends $tea.Model {
|
|
555
1153
|
/**
|
|
556
1154
|
* @example
|
|
557
1155
|
* null
|
|
558
1156
|
*/
|
|
559
1157
|
cost?: number;
|
|
560
|
-
data?:
|
|
1158
|
+
data?: GetHistoryListByBizTypeResponseBodyData;
|
|
561
1159
|
/**
|
|
562
1160
|
* @example
|
|
563
1161
|
* null
|
|
@@ -575,7 +1173,7 @@ export declare class GetDocumentListResponseBody extends $tea.Model {
|
|
|
575
1173
|
message?: string;
|
|
576
1174
|
/**
|
|
577
1175
|
* @example
|
|
578
|
-
*
|
|
1176
|
+
* 9DF9B3F3-9FFE-52CB-A8DC-F7BD5F842F0E
|
|
579
1177
|
*/
|
|
580
1178
|
requestId?: string;
|
|
581
1179
|
/**
|
|
@@ -585,7 +1183,7 @@ export declare class GetDocumentListResponseBody extends $tea.Model {
|
|
|
585
1183
|
success?: boolean;
|
|
586
1184
|
/**
|
|
587
1185
|
* @example
|
|
588
|
-
* 2024-
|
|
1186
|
+
* 2024-01-01 00:00:00
|
|
589
1187
|
*/
|
|
590
1188
|
time?: string;
|
|
591
1189
|
static names(): {
|
|
@@ -598,12 +1196,12 @@ export declare class GetDocumentListResponseBody extends $tea.Model {
|
|
|
598
1196
|
[key: string]: any;
|
|
599
1197
|
});
|
|
600
1198
|
}
|
|
601
|
-
export declare class
|
|
1199
|
+
export declare class GetHistoryListByBizTypeResponse extends $tea.Model {
|
|
602
1200
|
headers?: {
|
|
603
1201
|
[key: string]: string;
|
|
604
1202
|
};
|
|
605
1203
|
statusCode?: number;
|
|
606
|
-
body?:
|
|
1204
|
+
body?: GetHistoryListByBizTypeResponseBody;
|
|
607
1205
|
static names(): {
|
|
608
1206
|
[key: string]: string;
|
|
609
1207
|
};
|
|
@@ -614,15 +1212,15 @@ export declare class GetDocumentListResponse extends $tea.Model {
|
|
|
614
1212
|
[key: string]: any;
|
|
615
1213
|
});
|
|
616
1214
|
}
|
|
617
|
-
export declare class
|
|
1215
|
+
export declare class GetLibraryRequest extends $tea.Model {
|
|
618
1216
|
/**
|
|
619
1217
|
* @remarks
|
|
620
1218
|
* This parameter is required.
|
|
621
1219
|
*
|
|
622
1220
|
* @example
|
|
623
|
-
*
|
|
1221
|
+
* cjshcxxxx
|
|
624
1222
|
*/
|
|
625
|
-
|
|
1223
|
+
libraryId?: string;
|
|
626
1224
|
static names(): {
|
|
627
1225
|
[key: string]: string;
|
|
628
1226
|
};
|
|
@@ -633,17 +1231,13 @@ export declare class GetDocumentUrlRequest extends $tea.Model {
|
|
|
633
1231
|
[key: string]: any;
|
|
634
1232
|
});
|
|
635
1233
|
}
|
|
636
|
-
export declare class
|
|
1234
|
+
export declare class GetLibraryResponseBody extends $tea.Model {
|
|
637
1235
|
/**
|
|
638
1236
|
* @example
|
|
639
1237
|
* null
|
|
640
1238
|
*/
|
|
641
1239
|
cost?: number;
|
|
642
|
-
|
|
643
|
-
* @example
|
|
644
|
-
* https://path_to_file
|
|
645
|
-
*/
|
|
646
|
-
data?: string;
|
|
1240
|
+
data?: GetLibraryResponseBodyData;
|
|
647
1241
|
/**
|
|
648
1242
|
* @example
|
|
649
1243
|
* null
|
|
@@ -661,7 +1255,7 @@ export declare class GetDocumentUrlResponseBody extends $tea.Model {
|
|
|
661
1255
|
message?: string;
|
|
662
1256
|
/**
|
|
663
1257
|
* @example
|
|
664
|
-
*
|
|
1258
|
+
* 44BD277A-87F9-5310-8D63-3E6645F1DA85
|
|
665
1259
|
*/
|
|
666
1260
|
requestId?: string;
|
|
667
1261
|
/**
|
|
@@ -684,12 +1278,12 @@ export declare class GetDocumentUrlResponseBody extends $tea.Model {
|
|
|
684
1278
|
[key: string]: any;
|
|
685
1279
|
});
|
|
686
1280
|
}
|
|
687
|
-
export declare class
|
|
1281
|
+
export declare class GetLibraryResponse extends $tea.Model {
|
|
688
1282
|
headers?: {
|
|
689
1283
|
[key: string]: string;
|
|
690
1284
|
};
|
|
691
1285
|
statusCode?: number;
|
|
692
|
-
body?:
|
|
1286
|
+
body?: GetLibraryResponseBody;
|
|
693
1287
|
static names(): {
|
|
694
1288
|
[key: string]: string;
|
|
695
1289
|
};
|
|
@@ -700,18 +1294,7 @@ export declare class GetDocumentUrlResponse extends $tea.Model {
|
|
|
700
1294
|
[key: string]: any;
|
|
701
1295
|
});
|
|
702
1296
|
}
|
|
703
|
-
export declare class
|
|
704
|
-
and?: GetFilterDocumentListRequestAnd[];
|
|
705
|
-
docIdList?: string[];
|
|
706
|
-
/**
|
|
707
|
-
* @remarks
|
|
708
|
-
* This parameter is required.
|
|
709
|
-
*
|
|
710
|
-
* @example
|
|
711
|
-
* cjshcxxxx
|
|
712
|
-
*/
|
|
713
|
-
libraryId?: string;
|
|
714
|
-
or?: GetFilterDocumentListRequestOr[];
|
|
1297
|
+
export declare class GetLibraryListRequest extends $tea.Model {
|
|
715
1298
|
/**
|
|
716
1299
|
* @example
|
|
717
1300
|
* 1
|
|
@@ -722,7 +1305,7 @@ export declare class GetFilterDocumentListRequest extends $tea.Model {
|
|
|
722
1305
|
* 10
|
|
723
1306
|
*/
|
|
724
1307
|
pageSize?: number;
|
|
725
|
-
|
|
1308
|
+
query?: string;
|
|
726
1309
|
static names(): {
|
|
727
1310
|
[key: string]: string;
|
|
728
1311
|
};
|
|
@@ -733,13 +1316,13 @@ export declare class GetFilterDocumentListRequest extends $tea.Model {
|
|
|
733
1316
|
[key: string]: any;
|
|
734
1317
|
});
|
|
735
1318
|
}
|
|
736
|
-
export declare class
|
|
1319
|
+
export declare class GetLibraryListResponseBody extends $tea.Model {
|
|
737
1320
|
/**
|
|
738
1321
|
* @example
|
|
739
1322
|
* null
|
|
740
1323
|
*/
|
|
741
1324
|
cost?: number;
|
|
742
|
-
data?:
|
|
1325
|
+
data?: GetLibraryListResponseBodyData;
|
|
743
1326
|
/**
|
|
744
1327
|
* @example
|
|
745
1328
|
* null
|
|
@@ -757,7 +1340,7 @@ export declare class GetFilterDocumentListResponseBody extends $tea.Model {
|
|
|
757
1340
|
message?: string;
|
|
758
1341
|
/**
|
|
759
1342
|
* @example
|
|
760
|
-
*
|
|
1343
|
+
* 0a06dfe817156528535968405edce3
|
|
761
1344
|
*/
|
|
762
1345
|
requestId?: string;
|
|
763
1346
|
/**
|
|
@@ -780,12 +1363,12 @@ export declare class GetFilterDocumentListResponseBody extends $tea.Model {
|
|
|
780
1363
|
[key: string]: any;
|
|
781
1364
|
});
|
|
782
1365
|
}
|
|
783
|
-
export declare class
|
|
1366
|
+
export declare class GetLibraryListResponse extends $tea.Model {
|
|
784
1367
|
headers?: {
|
|
785
1368
|
[key: string]: string;
|
|
786
1369
|
};
|
|
787
1370
|
statusCode?: number;
|
|
788
|
-
body?:
|
|
1371
|
+
body?: GetLibraryListResponseBody;
|
|
789
1372
|
static names(): {
|
|
790
1373
|
[key: string]: string;
|
|
791
1374
|
};
|
|
@@ -796,33 +1379,23 @@ export declare class GetFilterDocumentListResponse extends $tea.Model {
|
|
|
796
1379
|
[key: string]: any;
|
|
797
1380
|
});
|
|
798
1381
|
}
|
|
799
|
-
export declare class
|
|
1382
|
+
export declare class GetParseResultRequest extends $tea.Model {
|
|
800
1383
|
/**
|
|
801
1384
|
* @remarks
|
|
802
1385
|
* This parameter is required.
|
|
803
1386
|
*
|
|
804
1387
|
* @example
|
|
805
|
-
*
|
|
1388
|
+
* 873648346573245
|
|
806
1389
|
*/
|
|
807
|
-
|
|
1390
|
+
docId?: string;
|
|
808
1391
|
/**
|
|
809
1392
|
* @remarks
|
|
810
1393
|
* This parameter is required.
|
|
811
1394
|
*
|
|
812
1395
|
* @example
|
|
813
|
-
*
|
|
814
|
-
*/
|
|
815
|
-
bizType?: string;
|
|
816
|
-
/**
|
|
817
|
-
* @example
|
|
818
|
-
* 1
|
|
819
|
-
*/
|
|
820
|
-
page?: number;
|
|
821
|
-
/**
|
|
822
|
-
* @example
|
|
823
|
-
* 10
|
|
1396
|
+
* sjdgdsfg
|
|
824
1397
|
*/
|
|
825
|
-
|
|
1398
|
+
libraryId?: string;
|
|
826
1399
|
static names(): {
|
|
827
1400
|
[key: string]: string;
|
|
828
1401
|
};
|
|
@@ -833,13 +1406,13 @@ export declare class GetHistoryListByBizTypeRequest extends $tea.Model {
|
|
|
833
1406
|
[key: string]: any;
|
|
834
1407
|
});
|
|
835
1408
|
}
|
|
836
|
-
export declare class
|
|
1409
|
+
export declare class GetParseResultResponseBody extends $tea.Model {
|
|
837
1410
|
/**
|
|
838
1411
|
* @example
|
|
839
1412
|
* null
|
|
840
1413
|
*/
|
|
841
1414
|
cost?: number;
|
|
842
|
-
data?:
|
|
1415
|
+
data?: GetParseResultResponseBodyData;
|
|
843
1416
|
/**
|
|
844
1417
|
* @example
|
|
845
1418
|
* null
|
|
@@ -857,7 +1430,7 @@ export declare class GetHistoryListByBizTypeResponseBody extends $tea.Model {
|
|
|
857
1430
|
message?: string;
|
|
858
1431
|
/**
|
|
859
1432
|
* @example
|
|
860
|
-
*
|
|
1433
|
+
* 0abb793617204049360065953ec6dd
|
|
861
1434
|
*/
|
|
862
1435
|
requestId?: string;
|
|
863
1436
|
/**
|
|
@@ -867,7 +1440,7 @@ export declare class GetHistoryListByBizTypeResponseBody extends $tea.Model {
|
|
|
867
1440
|
success?: boolean;
|
|
868
1441
|
/**
|
|
869
1442
|
* @example
|
|
870
|
-
* 2024-
|
|
1443
|
+
* 2024-04-24 11:54:34
|
|
871
1444
|
*/
|
|
872
1445
|
time?: string;
|
|
873
1446
|
static names(): {
|
|
@@ -880,12 +1453,12 @@ export declare class GetHistoryListByBizTypeResponseBody extends $tea.Model {
|
|
|
880
1453
|
[key: string]: any;
|
|
881
1454
|
});
|
|
882
1455
|
}
|
|
883
|
-
export declare class
|
|
1456
|
+
export declare class GetParseResultResponse extends $tea.Model {
|
|
884
1457
|
headers?: {
|
|
885
1458
|
[key: string]: string;
|
|
886
1459
|
};
|
|
887
1460
|
statusCode?: number;
|
|
888
|
-
body?:
|
|
1461
|
+
body?: GetParseResultResponseBody;
|
|
889
1462
|
static names(): {
|
|
890
1463
|
[key: string]: string;
|
|
891
1464
|
};
|
|
@@ -896,15 +1469,15 @@ export declare class GetHistoryListByBizTypeResponse extends $tea.Model {
|
|
|
896
1469
|
[key: string]: any;
|
|
897
1470
|
});
|
|
898
1471
|
}
|
|
899
|
-
export declare class
|
|
1472
|
+
export declare class GetSummaryTaskResultRequest extends $tea.Model {
|
|
900
1473
|
/**
|
|
901
1474
|
* @remarks
|
|
902
1475
|
* This parameter is required.
|
|
903
1476
|
*
|
|
904
1477
|
* @example
|
|
905
|
-
*
|
|
1478
|
+
* 17071319
|
|
906
1479
|
*/
|
|
907
|
-
|
|
1480
|
+
taskId?: string;
|
|
908
1481
|
static names(): {
|
|
909
1482
|
[key: string]: string;
|
|
910
1483
|
};
|
|
@@ -915,13 +1488,13 @@ export declare class GetLibraryRequest extends $tea.Model {
|
|
|
915
1488
|
[key: string]: any;
|
|
916
1489
|
});
|
|
917
1490
|
}
|
|
918
|
-
export declare class
|
|
1491
|
+
export declare class GetSummaryTaskResultResponseBody extends $tea.Model {
|
|
919
1492
|
/**
|
|
920
1493
|
* @example
|
|
921
1494
|
* null
|
|
922
1495
|
*/
|
|
923
1496
|
cost?: number;
|
|
924
|
-
data?:
|
|
1497
|
+
data?: GetSummaryTaskResultResponseBodyData;
|
|
925
1498
|
/**
|
|
926
1499
|
* @example
|
|
927
1500
|
* null
|
|
@@ -939,7 +1512,7 @@ export declare class GetLibraryResponseBody extends $tea.Model {
|
|
|
939
1512
|
message?: string;
|
|
940
1513
|
/**
|
|
941
1514
|
* @example
|
|
942
|
-
*
|
|
1515
|
+
* 0bc13a9517168617617186457e401f
|
|
943
1516
|
*/
|
|
944
1517
|
requestId?: string;
|
|
945
1518
|
/**
|
|
@@ -949,7 +1522,7 @@ export declare class GetLibraryResponseBody extends $tea.Model {
|
|
|
949
1522
|
success?: boolean;
|
|
950
1523
|
/**
|
|
951
1524
|
* @example
|
|
952
|
-
* 2024-
|
|
1525
|
+
* 2024-04-24 11:54:34
|
|
953
1526
|
*/
|
|
954
1527
|
time?: string;
|
|
955
1528
|
static names(): {
|
|
@@ -962,12 +1535,12 @@ export declare class GetLibraryResponseBody extends $tea.Model {
|
|
|
962
1535
|
[key: string]: any;
|
|
963
1536
|
});
|
|
964
1537
|
}
|
|
965
|
-
export declare class
|
|
1538
|
+
export declare class GetSummaryTaskResultResponse extends $tea.Model {
|
|
966
1539
|
headers?: {
|
|
967
1540
|
[key: string]: string;
|
|
968
1541
|
};
|
|
969
1542
|
statusCode?: number;
|
|
970
|
-
body?:
|
|
1543
|
+
body?: GetSummaryTaskResultResponseBody;
|
|
971
1544
|
static names(): {
|
|
972
1545
|
[key: string]: string;
|
|
973
1546
|
};
|
|
@@ -978,18 +1551,15 @@ export declare class GetLibraryResponse extends $tea.Model {
|
|
|
978
1551
|
[key: string]: any;
|
|
979
1552
|
});
|
|
980
1553
|
}
|
|
981
|
-
export declare class
|
|
982
|
-
/**
|
|
983
|
-
* @example
|
|
984
|
-
* 1
|
|
985
|
-
*/
|
|
986
|
-
page?: number;
|
|
1554
|
+
export declare class GetTaskResultRequest extends $tea.Model {
|
|
987
1555
|
/**
|
|
1556
|
+
* @remarks
|
|
1557
|
+
* This parameter is required.
|
|
1558
|
+
*
|
|
988
1559
|
* @example
|
|
989
|
-
*
|
|
1560
|
+
* 17071319
|
|
990
1561
|
*/
|
|
991
|
-
|
|
992
|
-
query?: string;
|
|
1562
|
+
taskId?: string;
|
|
993
1563
|
static names(): {
|
|
994
1564
|
[key: string]: string;
|
|
995
1565
|
};
|
|
@@ -1000,13 +1570,21 @@ export declare class GetLibraryListRequest extends $tea.Model {
|
|
|
1000
1570
|
[key: string]: any;
|
|
1001
1571
|
});
|
|
1002
1572
|
}
|
|
1003
|
-
export declare class
|
|
1573
|
+
export declare class GetTaskResultResponseBody extends $tea.Model {
|
|
1004
1574
|
/**
|
|
1005
1575
|
* @example
|
|
1006
1576
|
* null
|
|
1007
1577
|
*/
|
|
1008
1578
|
cost?: number;
|
|
1009
|
-
|
|
1579
|
+
/**
|
|
1580
|
+
* @example
|
|
1581
|
+
* {
|
|
1582
|
+
* "file_url": "https://finllmworks.oss-cn-zhangjiakou.aliyuncs.com/render_pdf/5336180997111160501.pdf"
|
|
1583
|
+
* }
|
|
1584
|
+
*/
|
|
1585
|
+
data?: {
|
|
1586
|
+
[key: string]: any;
|
|
1587
|
+
};
|
|
1010
1588
|
/**
|
|
1011
1589
|
* @example
|
|
1012
1590
|
* null
|
|
@@ -1024,7 +1602,7 @@ export declare class GetLibraryListResponseBody extends $tea.Model {
|
|
|
1024
1602
|
message?: string;
|
|
1025
1603
|
/**
|
|
1026
1604
|
* @example
|
|
1027
|
-
*
|
|
1605
|
+
* 9D5D6BB5-BEAE-53C8-A70A-7275CC1F856C
|
|
1028
1606
|
*/
|
|
1029
1607
|
requestId?: string;
|
|
1030
1608
|
/**
|
|
@@ -1034,7 +1612,7 @@ export declare class GetLibraryListResponseBody extends $tea.Model {
|
|
|
1034
1612
|
success?: boolean;
|
|
1035
1613
|
/**
|
|
1036
1614
|
* @example
|
|
1037
|
-
* 2024-
|
|
1615
|
+
* 2024-04-24 11:54:34
|
|
1038
1616
|
*/
|
|
1039
1617
|
time?: string;
|
|
1040
1618
|
static names(): {
|
|
@@ -1047,12 +1625,12 @@ export declare class GetLibraryListResponseBody extends $tea.Model {
|
|
|
1047
1625
|
[key: string]: any;
|
|
1048
1626
|
});
|
|
1049
1627
|
}
|
|
1050
|
-
export declare class
|
|
1628
|
+
export declare class GetTaskResultResponse extends $tea.Model {
|
|
1051
1629
|
headers?: {
|
|
1052
1630
|
[key: string]: string;
|
|
1053
1631
|
};
|
|
1054
1632
|
statusCode?: number;
|
|
1055
|
-
body?:
|
|
1633
|
+
body?: GetTaskResultResponseBody;
|
|
1056
1634
|
static names(): {
|
|
1057
1635
|
[key: string]: string;
|
|
1058
1636
|
};
|
|
@@ -1063,23 +1641,12 @@ export declare class GetLibraryListResponse extends $tea.Model {
|
|
|
1063
1641
|
[key: string]: any;
|
|
1064
1642
|
});
|
|
1065
1643
|
}
|
|
1066
|
-
export declare class
|
|
1067
|
-
/**
|
|
1068
|
-
* @remarks
|
|
1069
|
-
* This parameter is required.
|
|
1070
|
-
*
|
|
1071
|
-
* @example
|
|
1072
|
-
* 873648346573245
|
|
1073
|
-
*/
|
|
1074
|
-
docId?: string;
|
|
1644
|
+
export declare class GetTaskStatusRequest extends $tea.Model {
|
|
1075
1645
|
/**
|
|
1076
1646
|
* @remarks
|
|
1077
1647
|
* This parameter is required.
|
|
1078
|
-
*
|
|
1079
|
-
* @example
|
|
1080
|
-
* sjdgdsfg
|
|
1081
1648
|
*/
|
|
1082
|
-
|
|
1649
|
+
taskId?: string;
|
|
1083
1650
|
static names(): {
|
|
1084
1651
|
[key: string]: string;
|
|
1085
1652
|
};
|
|
@@ -1090,42 +1657,14 @@ export declare class GetParseResultRequest extends $tea.Model {
|
|
|
1090
1657
|
[key: string]: any;
|
|
1091
1658
|
});
|
|
1092
1659
|
}
|
|
1093
|
-
export declare class
|
|
1094
|
-
/**
|
|
1095
|
-
* @example
|
|
1096
|
-
* null
|
|
1097
|
-
*/
|
|
1660
|
+
export declare class GetTaskStatusResponseBody extends $tea.Model {
|
|
1098
1661
|
cost?: number;
|
|
1099
|
-
data?:
|
|
1100
|
-
/**
|
|
1101
|
-
* @example
|
|
1102
|
-
* null
|
|
1103
|
-
*/
|
|
1662
|
+
data?: string;
|
|
1104
1663
|
dataType?: string;
|
|
1105
|
-
/**
|
|
1106
|
-
* @example
|
|
1107
|
-
* 0
|
|
1108
|
-
*/
|
|
1109
1664
|
errCode?: string;
|
|
1110
|
-
/**
|
|
1111
|
-
* @example
|
|
1112
|
-
* ok
|
|
1113
|
-
*/
|
|
1114
1665
|
message?: string;
|
|
1115
|
-
/**
|
|
1116
|
-
* @example
|
|
1117
|
-
* 0abb793617204049360065953ec6dd
|
|
1118
|
-
*/
|
|
1119
1666
|
requestId?: string;
|
|
1120
|
-
/**
|
|
1121
|
-
* @example
|
|
1122
|
-
* true
|
|
1123
|
-
*/
|
|
1124
1667
|
success?: boolean;
|
|
1125
|
-
/**
|
|
1126
|
-
* @example
|
|
1127
|
-
* 2024-04-24 11:54:34
|
|
1128
|
-
*/
|
|
1129
1668
|
time?: string;
|
|
1130
1669
|
static names(): {
|
|
1131
1670
|
[key: string]: string;
|
|
@@ -1137,12 +1676,12 @@ export declare class GetParseResultResponseBody extends $tea.Model {
|
|
|
1137
1676
|
[key: string]: any;
|
|
1138
1677
|
});
|
|
1139
1678
|
}
|
|
1140
|
-
export declare class
|
|
1679
|
+
export declare class GetTaskStatusResponse extends $tea.Model {
|
|
1141
1680
|
headers?: {
|
|
1142
1681
|
[key: string]: string;
|
|
1143
1682
|
};
|
|
1144
1683
|
statusCode?: number;
|
|
1145
|
-
body?:
|
|
1684
|
+
body?: GetTaskStatusResponseBody;
|
|
1146
1685
|
static names(): {
|
|
1147
1686
|
[key: string]: string;
|
|
1148
1687
|
};
|
|
@@ -1409,23 +1948,128 @@ export declare class ReIndexResponse extends $tea.Model {
|
|
|
1409
1948
|
[key: string]: any;
|
|
1410
1949
|
});
|
|
1411
1950
|
}
|
|
1412
|
-
export declare class RecallDocumentRequest extends $tea.Model {
|
|
1413
|
-
filters?: RecallDocumentRequestFilters[];
|
|
1951
|
+
export declare class RecallDocumentRequest extends $tea.Model {
|
|
1952
|
+
filters?: RecallDocumentRequestFilters[];
|
|
1953
|
+
/**
|
|
1954
|
+
* @remarks
|
|
1955
|
+
* This parameter is required.
|
|
1956
|
+
*/
|
|
1957
|
+
query?: string;
|
|
1958
|
+
/**
|
|
1959
|
+
* @example
|
|
1960
|
+
* false
|
|
1961
|
+
*/
|
|
1962
|
+
rearrangement?: boolean;
|
|
1963
|
+
/**
|
|
1964
|
+
* @example
|
|
1965
|
+
* 10
|
|
1966
|
+
*/
|
|
1967
|
+
topK?: number;
|
|
1968
|
+
static names(): {
|
|
1969
|
+
[key: string]: string;
|
|
1970
|
+
};
|
|
1971
|
+
static types(): {
|
|
1972
|
+
[key: string]: any;
|
|
1973
|
+
};
|
|
1974
|
+
constructor(map?: {
|
|
1975
|
+
[key: string]: any;
|
|
1976
|
+
});
|
|
1977
|
+
}
|
|
1978
|
+
export declare class RecallDocumentResponseBody extends $tea.Model {
|
|
1979
|
+
/**
|
|
1980
|
+
* @example
|
|
1981
|
+
* 0
|
|
1982
|
+
*/
|
|
1983
|
+
cost?: number;
|
|
1984
|
+
data?: RecallDocumentResponseBodyData;
|
|
1985
|
+
/**
|
|
1986
|
+
* @example
|
|
1987
|
+
* null
|
|
1988
|
+
*/
|
|
1989
|
+
dataType?: string;
|
|
1990
|
+
/**
|
|
1991
|
+
* @example
|
|
1992
|
+
* 0
|
|
1993
|
+
*/
|
|
1994
|
+
errCode?: string;
|
|
1995
|
+
/**
|
|
1996
|
+
* @example
|
|
1997
|
+
* ok
|
|
1998
|
+
*/
|
|
1999
|
+
message?: string;
|
|
2000
|
+
/**
|
|
2001
|
+
* @example
|
|
2002
|
+
* 0bc13a9517168617617186457e401f
|
|
2003
|
+
*/
|
|
2004
|
+
requestId?: string;
|
|
2005
|
+
/**
|
|
2006
|
+
* @example
|
|
2007
|
+
* true
|
|
2008
|
+
*/
|
|
2009
|
+
success?: boolean;
|
|
2010
|
+
/**
|
|
2011
|
+
* @example
|
|
2012
|
+
* 2024-04-24 11:54:34
|
|
2013
|
+
*/
|
|
2014
|
+
time?: string;
|
|
2015
|
+
static names(): {
|
|
2016
|
+
[key: string]: string;
|
|
2017
|
+
};
|
|
2018
|
+
static types(): {
|
|
2019
|
+
[key: string]: any;
|
|
2020
|
+
};
|
|
2021
|
+
constructor(map?: {
|
|
2022
|
+
[key: string]: any;
|
|
2023
|
+
});
|
|
2024
|
+
}
|
|
2025
|
+
export declare class RecallDocumentResponse extends $tea.Model {
|
|
2026
|
+
headers?: {
|
|
2027
|
+
[key: string]: string;
|
|
2028
|
+
};
|
|
2029
|
+
statusCode?: number;
|
|
2030
|
+
body?: RecallDocumentResponseBody;
|
|
2031
|
+
static names(): {
|
|
2032
|
+
[key: string]: string;
|
|
2033
|
+
};
|
|
2034
|
+
static types(): {
|
|
2035
|
+
[key: string]: any;
|
|
2036
|
+
};
|
|
2037
|
+
constructor(map?: {
|
|
2038
|
+
[key: string]: any;
|
|
2039
|
+
});
|
|
2040
|
+
}
|
|
2041
|
+
export declare class RecognizeIntentionRequest extends $tea.Model {
|
|
2042
|
+
/**
|
|
2043
|
+
* @example
|
|
2044
|
+
* false
|
|
2045
|
+
*/
|
|
2046
|
+
analysis?: boolean;
|
|
2047
|
+
/**
|
|
2048
|
+
* @remarks
|
|
2049
|
+
* This parameter is required.
|
|
2050
|
+
*
|
|
2051
|
+
* @example
|
|
2052
|
+
* common
|
|
2053
|
+
*/
|
|
2054
|
+
bizType?: string;
|
|
1414
2055
|
/**
|
|
1415
2056
|
* @remarks
|
|
1416
2057
|
* This parameter is required.
|
|
1417
2058
|
*/
|
|
1418
|
-
|
|
2059
|
+
conversation?: string;
|
|
2060
|
+
globalIntentionList?: RecognizeIntentionRequestGlobalIntentionList[];
|
|
2061
|
+
hierarchicalIntentionList?: RecognizeIntentionRequestHierarchicalIntentionList[];
|
|
2062
|
+
intentionList?: RecognizeIntentionRequestIntentionList[];
|
|
1419
2063
|
/**
|
|
1420
2064
|
* @example
|
|
1421
|
-
*
|
|
2065
|
+
* common
|
|
1422
2066
|
*/
|
|
1423
|
-
|
|
2067
|
+
opType?: string;
|
|
1424
2068
|
/**
|
|
1425
2069
|
* @example
|
|
1426
|
-
*
|
|
2070
|
+
* false
|
|
1427
2071
|
*/
|
|
1428
|
-
|
|
2072
|
+
recommend?: boolean;
|
|
1429
2073
|
static names(): {
|
|
1430
2074
|
[key: string]: string;
|
|
1431
2075
|
};
|
|
@@ -1436,13 +2080,13 @@ export declare class RecallDocumentRequest extends $tea.Model {
|
|
|
1436
2080
|
[key: string]: any;
|
|
1437
2081
|
});
|
|
1438
2082
|
}
|
|
1439
|
-
export declare class
|
|
2083
|
+
export declare class RecognizeIntentionResponseBody extends $tea.Model {
|
|
1440
2084
|
/**
|
|
1441
2085
|
* @example
|
|
1442
|
-
*
|
|
2086
|
+
* null
|
|
1443
2087
|
*/
|
|
1444
2088
|
cost?: number;
|
|
1445
|
-
data?:
|
|
2089
|
+
data?: RecognizeIntentionResponseBodyData;
|
|
1446
2090
|
/**
|
|
1447
2091
|
* @example
|
|
1448
2092
|
* null
|
|
@@ -1460,7 +2104,7 @@ export declare class RecallDocumentResponseBody extends $tea.Model {
|
|
|
1460
2104
|
message?: string;
|
|
1461
2105
|
/**
|
|
1462
2106
|
* @example
|
|
1463
|
-
*
|
|
2107
|
+
* 003D019A-1BB3-53EC-A0D2-CE76DA5D73B1
|
|
1464
2108
|
*/
|
|
1465
2109
|
requestId?: string;
|
|
1466
2110
|
/**
|
|
@@ -1483,12 +2127,12 @@ export declare class RecallDocumentResponseBody extends $tea.Model {
|
|
|
1483
2127
|
[key: string]: any;
|
|
1484
2128
|
});
|
|
1485
2129
|
}
|
|
1486
|
-
export declare class
|
|
2130
|
+
export declare class RecognizeIntentionResponse extends $tea.Model {
|
|
1487
2131
|
headers?: {
|
|
1488
2132
|
[key: string]: string;
|
|
1489
2133
|
};
|
|
1490
2134
|
statusCode?: number;
|
|
1491
|
-
body?:
|
|
2135
|
+
body?: RecognizeIntentionResponseBody;
|
|
1492
2136
|
static names(): {
|
|
1493
2137
|
[key: string]: string;
|
|
1494
2138
|
};
|
|
@@ -3454,6 +4098,127 @@ export declare class GetParseResultResponseBodyData extends $tea.Model {
|
|
|
3454
4098
|
[key: string]: any;
|
|
3455
4099
|
});
|
|
3456
4100
|
}
|
|
4101
|
+
export declare class GetSummaryTaskResultResponseBodyDataChoicesMessage extends $tea.Model {
|
|
4102
|
+
content?: string;
|
|
4103
|
+
/**
|
|
4104
|
+
* @example
|
|
4105
|
+
* assistant
|
|
4106
|
+
*/
|
|
4107
|
+
role?: string;
|
|
4108
|
+
toolCalls?: {
|
|
4109
|
+
[key: string]: any;
|
|
4110
|
+
}[];
|
|
4111
|
+
static names(): {
|
|
4112
|
+
[key: string]: string;
|
|
4113
|
+
};
|
|
4114
|
+
static types(): {
|
|
4115
|
+
[key: string]: any;
|
|
4116
|
+
};
|
|
4117
|
+
constructor(map?: {
|
|
4118
|
+
[key: string]: any;
|
|
4119
|
+
});
|
|
4120
|
+
}
|
|
4121
|
+
export declare class GetSummaryTaskResultResponseBodyDataChoices extends $tea.Model {
|
|
4122
|
+
/**
|
|
4123
|
+
* @example
|
|
4124
|
+
* stop
|
|
4125
|
+
*/
|
|
4126
|
+
finishReason?: string;
|
|
4127
|
+
/**
|
|
4128
|
+
* @example
|
|
4129
|
+
* 0
|
|
4130
|
+
*/
|
|
4131
|
+
index?: number;
|
|
4132
|
+
message?: GetSummaryTaskResultResponseBodyDataChoicesMessage;
|
|
4133
|
+
static names(): {
|
|
4134
|
+
[key: string]: string;
|
|
4135
|
+
};
|
|
4136
|
+
static types(): {
|
|
4137
|
+
[key: string]: any;
|
|
4138
|
+
};
|
|
4139
|
+
constructor(map?: {
|
|
4140
|
+
[key: string]: any;
|
|
4141
|
+
});
|
|
4142
|
+
}
|
|
4143
|
+
export declare class GetSummaryTaskResultResponseBodyDataUsage extends $tea.Model {
|
|
4144
|
+
/**
|
|
4145
|
+
* @example
|
|
4146
|
+
* 0
|
|
4147
|
+
*/
|
|
4148
|
+
imageCount?: number;
|
|
4149
|
+
/**
|
|
4150
|
+
* @example
|
|
4151
|
+
* 0
|
|
4152
|
+
*/
|
|
4153
|
+
imageTokens?: number;
|
|
4154
|
+
/**
|
|
4155
|
+
* @example
|
|
4156
|
+
* 100
|
|
4157
|
+
*/
|
|
4158
|
+
inputTokens?: number;
|
|
4159
|
+
/**
|
|
4160
|
+
* @example
|
|
4161
|
+
* 200
|
|
4162
|
+
*/
|
|
4163
|
+
outputTokens?: number;
|
|
4164
|
+
/**
|
|
4165
|
+
* @example
|
|
4166
|
+
* 300
|
|
4167
|
+
*/
|
|
4168
|
+
totalTokens?: number;
|
|
4169
|
+
static names(): {
|
|
4170
|
+
[key: string]: string;
|
|
4171
|
+
};
|
|
4172
|
+
static types(): {
|
|
4173
|
+
[key: string]: any;
|
|
4174
|
+
};
|
|
4175
|
+
constructor(map?: {
|
|
4176
|
+
[key: string]: any;
|
|
4177
|
+
});
|
|
4178
|
+
}
|
|
4179
|
+
export declare class GetSummaryTaskResultResponseBodyData extends $tea.Model {
|
|
4180
|
+
choices?: GetSummaryTaskResultResponseBodyDataChoices[];
|
|
4181
|
+
/**
|
|
4182
|
+
* @example
|
|
4183
|
+
* 1726285125915
|
|
4184
|
+
*/
|
|
4185
|
+
created?: number;
|
|
4186
|
+
/**
|
|
4187
|
+
* @example
|
|
4188
|
+
* 1202
|
|
4189
|
+
*/
|
|
4190
|
+
id?: string;
|
|
4191
|
+
/**
|
|
4192
|
+
* @example
|
|
4193
|
+
* qwen-max
|
|
4194
|
+
*/
|
|
4195
|
+
modelId?: string;
|
|
4196
|
+
/**
|
|
4197
|
+
* @example
|
|
4198
|
+
* 0bc13a9517168617617186457e401f
|
|
4199
|
+
*/
|
|
4200
|
+
requestId?: string;
|
|
4201
|
+
/**
|
|
4202
|
+
* @example
|
|
4203
|
+
* 2024-04-24 11:54:34
|
|
4204
|
+
*/
|
|
4205
|
+
time?: string;
|
|
4206
|
+
/**
|
|
4207
|
+
* @example
|
|
4208
|
+
* 300
|
|
4209
|
+
*/
|
|
4210
|
+
totalTokens?: number;
|
|
4211
|
+
usage?: GetSummaryTaskResultResponseBodyDataUsage;
|
|
4212
|
+
static names(): {
|
|
4213
|
+
[key: string]: string;
|
|
4214
|
+
};
|
|
4215
|
+
static types(): {
|
|
4216
|
+
[key: string]: any;
|
|
4217
|
+
};
|
|
4218
|
+
constructor(map?: {
|
|
4219
|
+
[key: string]: any;
|
|
4220
|
+
});
|
|
4221
|
+
}
|
|
3457
4222
|
export declare class PreviewDocumentResponseBodyData extends $tea.Model {
|
|
3458
4223
|
/**
|
|
3459
4224
|
* @example
|
|
@@ -4004,6 +4769,80 @@ export declare class RecallDocumentResponseBodyData extends $tea.Model {
|
|
|
4004
4769
|
[key: string]: any;
|
|
4005
4770
|
});
|
|
4006
4771
|
}
|
|
4772
|
+
export declare class RecognizeIntentionRequestGlobalIntentionList extends $tea.Model {
|
|
4773
|
+
description?: string;
|
|
4774
|
+
intention?: string;
|
|
4775
|
+
/**
|
|
4776
|
+
* @example
|
|
4777
|
+
* 1810566978021232640
|
|
4778
|
+
*/
|
|
4779
|
+
intentionCode?: string;
|
|
4780
|
+
static names(): {
|
|
4781
|
+
[key: string]: string;
|
|
4782
|
+
};
|
|
4783
|
+
static types(): {
|
|
4784
|
+
[key: string]: any;
|
|
4785
|
+
};
|
|
4786
|
+
constructor(map?: {
|
|
4787
|
+
[key: string]: any;
|
|
4788
|
+
});
|
|
4789
|
+
}
|
|
4790
|
+
export declare class RecognizeIntentionRequestHierarchicalIntentionList extends $tea.Model {
|
|
4791
|
+
description?: string;
|
|
4792
|
+
intention?: string;
|
|
4793
|
+
/**
|
|
4794
|
+
* @example
|
|
4795
|
+
* 1810929291010150400
|
|
4796
|
+
*/
|
|
4797
|
+
intentionCode?: string;
|
|
4798
|
+
static names(): {
|
|
4799
|
+
[key: string]: string;
|
|
4800
|
+
};
|
|
4801
|
+
static types(): {
|
|
4802
|
+
[key: string]: any;
|
|
4803
|
+
};
|
|
4804
|
+
constructor(map?: {
|
|
4805
|
+
[key: string]: any;
|
|
4806
|
+
});
|
|
4807
|
+
}
|
|
4808
|
+
export declare class RecognizeIntentionRequestIntentionList extends $tea.Model {
|
|
4809
|
+
description?: string;
|
|
4810
|
+
intention?: string;
|
|
4811
|
+
/**
|
|
4812
|
+
* @example
|
|
4813
|
+
* 1808766224000262144
|
|
4814
|
+
*/
|
|
4815
|
+
intentionCode?: string;
|
|
4816
|
+
static names(): {
|
|
4817
|
+
[key: string]: string;
|
|
4818
|
+
};
|
|
4819
|
+
static types(): {
|
|
4820
|
+
[key: string]: any;
|
|
4821
|
+
};
|
|
4822
|
+
constructor(map?: {
|
|
4823
|
+
[key: string]: any;
|
|
4824
|
+
});
|
|
4825
|
+
}
|
|
4826
|
+
export declare class RecognizeIntentionResponseBodyData extends $tea.Model {
|
|
4827
|
+
analysisProcess?: string;
|
|
4828
|
+
/**
|
|
4829
|
+
* @example
|
|
4830
|
+
* 1
|
|
4831
|
+
*/
|
|
4832
|
+
intentionCode?: string;
|
|
4833
|
+
intentionName?: string;
|
|
4834
|
+
recommendIntention?: string;
|
|
4835
|
+
recommendScript?: string;
|
|
4836
|
+
static names(): {
|
|
4837
|
+
[key: string]: string;
|
|
4838
|
+
};
|
|
4839
|
+
static types(): {
|
|
4840
|
+
[key: string]: any;
|
|
4841
|
+
};
|
|
4842
|
+
constructor(map?: {
|
|
4843
|
+
[key: string]: any;
|
|
4844
|
+
});
|
|
4845
|
+
}
|
|
4007
4846
|
export declare class RunChatResultGenerationRequestMessages extends $tea.Model {
|
|
4008
4847
|
content?: string;
|
|
4009
4848
|
/**
|
|
@@ -4521,6 +5360,24 @@ export default class Client extends OpenApi {
|
|
|
4521
5360
|
getEndpoint(productId: string, regionId: string, endpointRule: string, network: string, suffix: string, endpointMap: {
|
|
4522
5361
|
[key: string]: string;
|
|
4523
5362
|
}, endpoint: string): string;
|
|
5363
|
+
/**
|
|
5364
|
+
* 创建财报总结任务
|
|
5365
|
+
*
|
|
5366
|
+
* @param request - CreateFinReportSummaryTaskRequest
|
|
5367
|
+
* @param headers - map
|
|
5368
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
5369
|
+
* @returns CreateFinReportSummaryTaskResponse
|
|
5370
|
+
*/
|
|
5371
|
+
createFinReportSummaryTaskWithOptions(workspaceId: string, request: CreateFinReportSummaryTaskRequest, headers: {
|
|
5372
|
+
[key: string]: string;
|
|
5373
|
+
}, runtime: $Util.RuntimeOptions): Promise<CreateFinReportSummaryTaskResponse>;
|
|
5374
|
+
/**
|
|
5375
|
+
* 创建财报总结任务
|
|
5376
|
+
*
|
|
5377
|
+
* @param request - CreateFinReportSummaryTaskRequest
|
|
5378
|
+
* @returns CreateFinReportSummaryTaskResponse
|
|
5379
|
+
*/
|
|
5380
|
+
createFinReportSummaryTask(workspaceId: string, request: CreateFinReportSummaryTaskRequest): Promise<CreateFinReportSummaryTaskResponse>;
|
|
4524
5381
|
/**
|
|
4525
5382
|
* 创建文档库
|
|
4526
5383
|
*
|
|
@@ -4539,6 +5396,24 @@ export default class Client extends OpenApi {
|
|
|
4539
5396
|
* @returns CreateLibraryResponse
|
|
4540
5397
|
*/
|
|
4541
5398
|
createLibrary(workspaceId: string, request: CreateLibraryRequest): Promise<CreateLibraryResponse>;
|
|
5399
|
+
/**
|
|
5400
|
+
* 创建PDF翻译任务
|
|
5401
|
+
*
|
|
5402
|
+
* @param request - CreatePdfTranslateTaskRequest
|
|
5403
|
+
* @param headers - map
|
|
5404
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
5405
|
+
* @returns CreatePdfTranslateTaskResponse
|
|
5406
|
+
*/
|
|
5407
|
+
createPdfTranslateTaskWithOptions(workspaceId: string, request: CreatePdfTranslateTaskRequest, headers: {
|
|
5408
|
+
[key: string]: string;
|
|
5409
|
+
}, runtime: $Util.RuntimeOptions): Promise<CreatePdfTranslateTaskResponse>;
|
|
5410
|
+
/**
|
|
5411
|
+
* 创建PDF翻译任务
|
|
5412
|
+
*
|
|
5413
|
+
* @param request - CreatePdfTranslateTaskRequest
|
|
5414
|
+
* @returns CreatePdfTranslateTaskResponse
|
|
5415
|
+
*/
|
|
5416
|
+
createPdfTranslateTask(workspaceId: string, request: CreatePdfTranslateTaskRequest): Promise<CreatePdfTranslateTaskResponse>;
|
|
4542
5417
|
/**
|
|
4543
5418
|
* 创建预定义文档
|
|
4544
5419
|
*
|
|
@@ -4593,6 +5468,24 @@ export default class Client extends OpenApi {
|
|
|
4593
5468
|
* @returns DeleteLibraryResponse
|
|
4594
5469
|
*/
|
|
4595
5470
|
deleteLibrary(workspaceId: string, request: DeleteLibraryRequest): Promise<DeleteLibraryResponse>;
|
|
5471
|
+
/**
|
|
5472
|
+
* 中断任务
|
|
5473
|
+
*
|
|
5474
|
+
* @param request - EvictTaskRequest
|
|
5475
|
+
* @param headers - map
|
|
5476
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
5477
|
+
* @returns EvictTaskResponse
|
|
5478
|
+
*/
|
|
5479
|
+
evictTaskWithOptions(workspaceId: string, request: EvictTaskRequest, headers: {
|
|
5480
|
+
[key: string]: string;
|
|
5481
|
+
}, runtime: $Util.RuntimeOptions): Promise<EvictTaskResponse>;
|
|
5482
|
+
/**
|
|
5483
|
+
* 中断任务
|
|
5484
|
+
*
|
|
5485
|
+
* @param request - EvictTaskRequest
|
|
5486
|
+
* @returns EvictTaskResponse
|
|
5487
|
+
*/
|
|
5488
|
+
evictTask(workspaceId: string, request: EvictTaskRequest): Promise<EvictTaskResponse>;
|
|
4596
5489
|
/**
|
|
4597
5490
|
* 获取app配置
|
|
4598
5491
|
*
|
|
@@ -4752,6 +5645,60 @@ export default class Client extends OpenApi {
|
|
|
4752
5645
|
* @returns GetParseResultResponse
|
|
4753
5646
|
*/
|
|
4754
5647
|
getParseResult(workspaceId: string, request: GetParseResultRequest): Promise<GetParseResultResponse>;
|
|
5648
|
+
/**
|
|
5649
|
+
* 获取财报总结任务结果
|
|
5650
|
+
*
|
|
5651
|
+
* @param request - GetSummaryTaskResultRequest
|
|
5652
|
+
* @param headers - map
|
|
5653
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
5654
|
+
* @returns GetSummaryTaskResultResponse
|
|
5655
|
+
*/
|
|
5656
|
+
getSummaryTaskResultWithOptions(workspaceId: string, request: GetSummaryTaskResultRequest, headers: {
|
|
5657
|
+
[key: string]: string;
|
|
5658
|
+
}, runtime: $Util.RuntimeOptions): Promise<GetSummaryTaskResultResponse>;
|
|
5659
|
+
/**
|
|
5660
|
+
* 获取财报总结任务结果
|
|
5661
|
+
*
|
|
5662
|
+
* @param request - GetSummaryTaskResultRequest
|
|
5663
|
+
* @returns GetSummaryTaskResultResponse
|
|
5664
|
+
*/
|
|
5665
|
+
getSummaryTaskResult(workspaceId: string, request: GetSummaryTaskResultRequest): Promise<GetSummaryTaskResultResponse>;
|
|
5666
|
+
/**
|
|
5667
|
+
* 获取异步任务结果
|
|
5668
|
+
*
|
|
5669
|
+
* @param request - GetTaskResultRequest
|
|
5670
|
+
* @param headers - map
|
|
5671
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
5672
|
+
* @returns GetTaskResultResponse
|
|
5673
|
+
*/
|
|
5674
|
+
getTaskResultWithOptions(workspaceId: string, request: GetTaskResultRequest, headers: {
|
|
5675
|
+
[key: string]: string;
|
|
5676
|
+
}, runtime: $Util.RuntimeOptions): Promise<GetTaskResultResponse>;
|
|
5677
|
+
/**
|
|
5678
|
+
* 获取异步任务结果
|
|
5679
|
+
*
|
|
5680
|
+
* @param request - GetTaskResultRequest
|
|
5681
|
+
* @returns GetTaskResultResponse
|
|
5682
|
+
*/
|
|
5683
|
+
getTaskResult(workspaceId: string, request: GetTaskResultRequest): Promise<GetTaskResultResponse>;
|
|
5684
|
+
/**
|
|
5685
|
+
* 获取财报总结任务结果
|
|
5686
|
+
*
|
|
5687
|
+
* @param request - GetTaskStatusRequest
|
|
5688
|
+
* @param headers - map
|
|
5689
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
5690
|
+
* @returns GetTaskStatusResponse
|
|
5691
|
+
*/
|
|
5692
|
+
getTaskStatusWithOptions(workspaceId: string, request: GetTaskStatusRequest, headers: {
|
|
5693
|
+
[key: string]: string;
|
|
5694
|
+
}, runtime: $Util.RuntimeOptions): Promise<GetTaskStatusResponse>;
|
|
5695
|
+
/**
|
|
5696
|
+
* 获取财报总结任务结果
|
|
5697
|
+
*
|
|
5698
|
+
* @param request - GetTaskStatusRequest
|
|
5699
|
+
* @returns GetTaskStatusResponse
|
|
5700
|
+
*/
|
|
5701
|
+
getTaskStatus(workspaceId: string, request: GetTaskStatusRequest): Promise<GetTaskStatusResponse>;
|
|
4755
5702
|
/**
|
|
4756
5703
|
* 插件调试接口
|
|
4757
5704
|
*
|
|
@@ -4807,7 +5754,7 @@ export default class Client extends OpenApi {
|
|
|
4807
5754
|
*/
|
|
4808
5755
|
reIndex(workspaceId: string, request: ReIndexRequest): Promise<ReIndexResponse>;
|
|
4809
5756
|
/**
|
|
4810
|
-
*
|
|
5757
|
+
* 文档召回。
|
|
4811
5758
|
*
|
|
4812
5759
|
* @param request - RecallDocumentRequest
|
|
4813
5760
|
* @param headers - map
|
|
@@ -4818,12 +5765,30 @@ export default class Client extends OpenApi {
|
|
|
4818
5765
|
[key: string]: string;
|
|
4819
5766
|
}, runtime: $Util.RuntimeOptions): Promise<RecallDocumentResponse>;
|
|
4820
5767
|
/**
|
|
4821
|
-
*
|
|
5768
|
+
* 文档召回。
|
|
4822
5769
|
*
|
|
4823
5770
|
* @param request - RecallDocumentRequest
|
|
4824
5771
|
* @returns RecallDocumentResponse
|
|
4825
5772
|
*/
|
|
4826
5773
|
recallDocument(workspaceId: string, request: RecallDocumentRequest): Promise<RecallDocumentResponse>;
|
|
5774
|
+
/**
|
|
5775
|
+
* 意图识别
|
|
5776
|
+
*
|
|
5777
|
+
* @param request - RecognizeIntentionRequest
|
|
5778
|
+
* @param headers - map
|
|
5779
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
5780
|
+
* @returns RecognizeIntentionResponse
|
|
5781
|
+
*/
|
|
5782
|
+
recognizeIntentionWithOptions(workspaceId: string, request: RecognizeIntentionRequest, headers: {
|
|
5783
|
+
[key: string]: string;
|
|
5784
|
+
}, runtime: $Util.RuntimeOptions): Promise<RecognizeIntentionResponse>;
|
|
5785
|
+
/**
|
|
5786
|
+
* 意图识别
|
|
5787
|
+
*
|
|
5788
|
+
* @param request - RecognizeIntentionRequest
|
|
5789
|
+
* @returns RecognizeIntentionResponse
|
|
5790
|
+
*/
|
|
5791
|
+
recognizeIntention(workspaceId: string, request: RecognizeIntentionRequest): Promise<RecognizeIntentionResponse>;
|
|
4827
5792
|
/**
|
|
4828
5793
|
* 获取生成式对话结果
|
|
4829
5794
|
*
|