@alicloud/dianjin20240628 1.3.0 → 1.4.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 +758 -30
- package/dist/client.js +626 -4
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1281 -138
package/dist/client.d.ts
CHANGED
|
@@ -4,6 +4,103 @@ 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 CreateDocsSummaryTaskRequest extends $tea.Model {
|
|
8
|
+
/**
|
|
9
|
+
* @remarks
|
|
10
|
+
* This parameter is required.
|
|
11
|
+
*/
|
|
12
|
+
docInfos?: CreateDocsSummaryTaskRequestDocInfos[];
|
|
13
|
+
/**
|
|
14
|
+
* @example
|
|
15
|
+
* true
|
|
16
|
+
*/
|
|
17
|
+
enableTable?: boolean;
|
|
18
|
+
instruction?: string;
|
|
19
|
+
/**
|
|
20
|
+
* @remarks
|
|
21
|
+
* This parameter is required.
|
|
22
|
+
*
|
|
23
|
+
* @example
|
|
24
|
+
* qwen-plus
|
|
25
|
+
*/
|
|
26
|
+
modelId?: string;
|
|
27
|
+
static names(): {
|
|
28
|
+
[key: string]: string;
|
|
29
|
+
};
|
|
30
|
+
static types(): {
|
|
31
|
+
[key: string]: any;
|
|
32
|
+
};
|
|
33
|
+
constructor(map?: {
|
|
34
|
+
[key: string]: any;
|
|
35
|
+
});
|
|
36
|
+
}
|
|
37
|
+
export declare class CreateDocsSummaryTaskResponseBody extends $tea.Model {
|
|
38
|
+
/**
|
|
39
|
+
* @example
|
|
40
|
+
* null
|
|
41
|
+
*/
|
|
42
|
+
cost?: number;
|
|
43
|
+
/**
|
|
44
|
+
* @example
|
|
45
|
+
* 765675376
|
|
46
|
+
*/
|
|
47
|
+
data?: string;
|
|
48
|
+
/**
|
|
49
|
+
* @example
|
|
50
|
+
* null
|
|
51
|
+
*/
|
|
52
|
+
dataType?: string;
|
|
53
|
+
/**
|
|
54
|
+
* @example
|
|
55
|
+
* 0
|
|
56
|
+
*/
|
|
57
|
+
errCode?: string;
|
|
58
|
+
/**
|
|
59
|
+
* @example
|
|
60
|
+
* ok
|
|
61
|
+
*/
|
|
62
|
+
message?: string;
|
|
63
|
+
/**
|
|
64
|
+
* @example
|
|
65
|
+
* 32FFC91D-0A9F-585A-B84F-8A54C5187035
|
|
66
|
+
*/
|
|
67
|
+
requestId?: string;
|
|
68
|
+
/**
|
|
69
|
+
* @example
|
|
70
|
+
* true
|
|
71
|
+
*/
|
|
72
|
+
success?: boolean;
|
|
73
|
+
/**
|
|
74
|
+
* @example
|
|
75
|
+
* 2024-01-01 00:00:00
|
|
76
|
+
*/
|
|
77
|
+
time?: string;
|
|
78
|
+
static names(): {
|
|
79
|
+
[key: string]: string;
|
|
80
|
+
};
|
|
81
|
+
static types(): {
|
|
82
|
+
[key: string]: any;
|
|
83
|
+
};
|
|
84
|
+
constructor(map?: {
|
|
85
|
+
[key: string]: any;
|
|
86
|
+
});
|
|
87
|
+
}
|
|
88
|
+
export declare class CreateDocsSummaryTaskResponse extends $tea.Model {
|
|
89
|
+
headers?: {
|
|
90
|
+
[key: string]: string;
|
|
91
|
+
};
|
|
92
|
+
statusCode?: number;
|
|
93
|
+
body?: CreateDocsSummaryTaskResponseBody;
|
|
94
|
+
static names(): {
|
|
95
|
+
[key: string]: string;
|
|
96
|
+
};
|
|
97
|
+
static types(): {
|
|
98
|
+
[key: string]: any;
|
|
99
|
+
};
|
|
100
|
+
constructor(map?: {
|
|
101
|
+
[key: string]: any;
|
|
102
|
+
});
|
|
103
|
+
}
|
|
7
104
|
export declare class CreateFinReportSummaryTaskRequest extends $tea.Model {
|
|
8
105
|
/**
|
|
9
106
|
* @remarks
|
|
@@ -419,6 +516,113 @@ export declare class CreatePredefinedDocumentResponse extends $tea.Model {
|
|
|
419
516
|
[key: string]: any;
|
|
420
517
|
});
|
|
421
518
|
}
|
|
519
|
+
export declare class CreateQualityCheckTaskRequest extends $tea.Model {
|
|
520
|
+
/**
|
|
521
|
+
* @remarks
|
|
522
|
+
* This parameter is required.
|
|
523
|
+
*/
|
|
524
|
+
conversationList?: CreateQualityCheckTaskRequestConversationList;
|
|
525
|
+
/**
|
|
526
|
+
* @remarks
|
|
527
|
+
* This parameter is required.
|
|
528
|
+
*
|
|
529
|
+
* @example
|
|
530
|
+
* 2024-09-27 11:23:20
|
|
531
|
+
*/
|
|
532
|
+
gmtService?: string;
|
|
533
|
+
metaData?: {
|
|
534
|
+
[key: string]: string;
|
|
535
|
+
};
|
|
536
|
+
qualityGroup?: string[];
|
|
537
|
+
/**
|
|
538
|
+
* @remarks
|
|
539
|
+
* This parameter is required.
|
|
540
|
+
*
|
|
541
|
+
* @example
|
|
542
|
+
* 0FC6636E-380A-5369-AE01-D1C15BB9B254
|
|
543
|
+
*/
|
|
544
|
+
requestId?: string;
|
|
545
|
+
/**
|
|
546
|
+
* @remarks
|
|
547
|
+
* This parameter is required.
|
|
548
|
+
*
|
|
549
|
+
* @example
|
|
550
|
+
* 0
|
|
551
|
+
*/
|
|
552
|
+
type?: string;
|
|
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 CreateQualityCheckTaskResponseBody extends $tea.Model {
|
|
564
|
+
/**
|
|
565
|
+
* @example
|
|
566
|
+
* null
|
|
567
|
+
*/
|
|
568
|
+
cost?: number;
|
|
569
|
+
data?: CreateQualityCheckTaskResponseBodyData;
|
|
570
|
+
/**
|
|
571
|
+
* @example
|
|
572
|
+
* null
|
|
573
|
+
*/
|
|
574
|
+
dataType?: string;
|
|
575
|
+
/**
|
|
576
|
+
* @example
|
|
577
|
+
* 0
|
|
578
|
+
*/
|
|
579
|
+
errCode?: string;
|
|
580
|
+
/**
|
|
581
|
+
* @example
|
|
582
|
+
* ok
|
|
583
|
+
*/
|
|
584
|
+
message?: string;
|
|
585
|
+
/**
|
|
586
|
+
* @example
|
|
587
|
+
* EF4B5C9B-3BC8-5171-A47B-4C5CF3DC3258
|
|
588
|
+
*/
|
|
589
|
+
requestId?: string;
|
|
590
|
+
/**
|
|
591
|
+
* @example
|
|
592
|
+
* true
|
|
593
|
+
*/
|
|
594
|
+
success?: boolean;
|
|
595
|
+
/**
|
|
596
|
+
* @example
|
|
597
|
+
* 2024-04-24 11:54:34
|
|
598
|
+
*/
|
|
599
|
+
time?: string;
|
|
600
|
+
static names(): {
|
|
601
|
+
[key: string]: string;
|
|
602
|
+
};
|
|
603
|
+
static types(): {
|
|
604
|
+
[key: string]: any;
|
|
605
|
+
};
|
|
606
|
+
constructor(map?: {
|
|
607
|
+
[key: string]: any;
|
|
608
|
+
});
|
|
609
|
+
}
|
|
610
|
+
export declare class CreateQualityCheckTaskResponse extends $tea.Model {
|
|
611
|
+
headers?: {
|
|
612
|
+
[key: string]: string;
|
|
613
|
+
};
|
|
614
|
+
statusCode?: number;
|
|
615
|
+
body?: CreateQualityCheckTaskResponseBody;
|
|
616
|
+
static names(): {
|
|
617
|
+
[key: string]: string;
|
|
618
|
+
};
|
|
619
|
+
static types(): {
|
|
620
|
+
[key: string]: any;
|
|
621
|
+
};
|
|
622
|
+
constructor(map?: {
|
|
623
|
+
[key: string]: any;
|
|
624
|
+
});
|
|
625
|
+
}
|
|
422
626
|
export declare class DeleteDocumentRequest extends $tea.Model {
|
|
423
627
|
/**
|
|
424
628
|
* @remarks
|
|
@@ -1469,6 +1673,88 @@ export declare class GetParseResultResponse extends $tea.Model {
|
|
|
1469
1673
|
[key: string]: any;
|
|
1470
1674
|
});
|
|
1471
1675
|
}
|
|
1676
|
+
export declare class GetQualityCheckTaskResultRequest extends $tea.Model {
|
|
1677
|
+
/**
|
|
1678
|
+
* @remarks
|
|
1679
|
+
* This parameter is required.
|
|
1680
|
+
*
|
|
1681
|
+
* @example
|
|
1682
|
+
* 17071319
|
|
1683
|
+
*/
|
|
1684
|
+
taskId?: string;
|
|
1685
|
+
static names(): {
|
|
1686
|
+
[key: string]: string;
|
|
1687
|
+
};
|
|
1688
|
+
static types(): {
|
|
1689
|
+
[key: string]: any;
|
|
1690
|
+
};
|
|
1691
|
+
constructor(map?: {
|
|
1692
|
+
[key: string]: any;
|
|
1693
|
+
});
|
|
1694
|
+
}
|
|
1695
|
+
export declare class GetQualityCheckTaskResultResponseBody extends $tea.Model {
|
|
1696
|
+
/**
|
|
1697
|
+
* @example
|
|
1698
|
+
* null
|
|
1699
|
+
*/
|
|
1700
|
+
cost?: number;
|
|
1701
|
+
data?: GetQualityCheckTaskResultResponseBodyData;
|
|
1702
|
+
/**
|
|
1703
|
+
* @example
|
|
1704
|
+
* null
|
|
1705
|
+
*/
|
|
1706
|
+
dataType?: string;
|
|
1707
|
+
/**
|
|
1708
|
+
* @example
|
|
1709
|
+
* 0
|
|
1710
|
+
*/
|
|
1711
|
+
errCode?: string;
|
|
1712
|
+
/**
|
|
1713
|
+
* @example
|
|
1714
|
+
* ok
|
|
1715
|
+
*/
|
|
1716
|
+
message?: string;
|
|
1717
|
+
/**
|
|
1718
|
+
* @example
|
|
1719
|
+
* 67C7021A-D268-553D-8C15-A087B9604028
|
|
1720
|
+
*/
|
|
1721
|
+
requestId?: string;
|
|
1722
|
+
/**
|
|
1723
|
+
* @example
|
|
1724
|
+
* true
|
|
1725
|
+
*/
|
|
1726
|
+
success?: boolean;
|
|
1727
|
+
/**
|
|
1728
|
+
* @example
|
|
1729
|
+
* 2024-01-01 00:00:00
|
|
1730
|
+
*/
|
|
1731
|
+
time?: string;
|
|
1732
|
+
static names(): {
|
|
1733
|
+
[key: string]: string;
|
|
1734
|
+
};
|
|
1735
|
+
static types(): {
|
|
1736
|
+
[key: string]: any;
|
|
1737
|
+
};
|
|
1738
|
+
constructor(map?: {
|
|
1739
|
+
[key: string]: any;
|
|
1740
|
+
});
|
|
1741
|
+
}
|
|
1742
|
+
export declare class GetQualityCheckTaskResultResponse extends $tea.Model {
|
|
1743
|
+
headers?: {
|
|
1744
|
+
[key: string]: string;
|
|
1745
|
+
};
|
|
1746
|
+
statusCode?: number;
|
|
1747
|
+
body?: GetQualityCheckTaskResultResponseBody;
|
|
1748
|
+
static names(): {
|
|
1749
|
+
[key: string]: string;
|
|
1750
|
+
};
|
|
1751
|
+
static types(): {
|
|
1752
|
+
[key: string]: any;
|
|
1753
|
+
};
|
|
1754
|
+
constructor(map?: {
|
|
1755
|
+
[key: string]: any;
|
|
1756
|
+
});
|
|
1757
|
+
}
|
|
1472
1758
|
export declare class GetSummaryTaskResultRequest extends $tea.Model {
|
|
1473
1759
|
/**
|
|
1474
1760
|
* @remarks
|
|
@@ -2733,6 +3019,43 @@ export declare class UploadDocumentResponse extends $tea.Model {
|
|
|
2733
3019
|
[key: string]: any;
|
|
2734
3020
|
});
|
|
2735
3021
|
}
|
|
3022
|
+
export declare class CreateDocsSummaryTaskRequestDocInfos extends $tea.Model {
|
|
3023
|
+
/**
|
|
3024
|
+
* @remarks
|
|
3025
|
+
* This parameter is required.
|
|
3026
|
+
*
|
|
3027
|
+
* @example
|
|
3028
|
+
* 198386463432
|
|
3029
|
+
*/
|
|
3030
|
+
docId?: string;
|
|
3031
|
+
/**
|
|
3032
|
+
* @example
|
|
3033
|
+
* 2
|
|
3034
|
+
*/
|
|
3035
|
+
endPage?: number;
|
|
3036
|
+
/**
|
|
3037
|
+
* @remarks
|
|
3038
|
+
* This parameter is required.
|
|
3039
|
+
*
|
|
3040
|
+
* @example
|
|
3041
|
+
* rdxrmo6amk
|
|
3042
|
+
*/
|
|
3043
|
+
libraryId?: string;
|
|
3044
|
+
/**
|
|
3045
|
+
* @example
|
|
3046
|
+
* 1
|
|
3047
|
+
*/
|
|
3048
|
+
startPage?: number;
|
|
3049
|
+
static names(): {
|
|
3050
|
+
[key: string]: string;
|
|
3051
|
+
};
|
|
3052
|
+
static types(): {
|
|
3053
|
+
[key: string]: any;
|
|
3054
|
+
};
|
|
3055
|
+
constructor(map?: {
|
|
3056
|
+
[key: string]: any;
|
|
3057
|
+
});
|
|
3058
|
+
}
|
|
2736
3059
|
export declare class CreateLibraryRequestIndexSettingChunkStrategy extends $tea.Model {
|
|
2737
3060
|
/**
|
|
2738
3061
|
* @example
|
|
@@ -2941,27 +3264,122 @@ export declare class CreateLibraryRequestIndexSettingVectorIndexSetting extends
|
|
|
2941
3264
|
rankThreshold?: number;
|
|
2942
3265
|
/**
|
|
2943
3266
|
* @example
|
|
2944
|
-
* 50
|
|
3267
|
+
* 50
|
|
3268
|
+
*/
|
|
3269
|
+
topK?: number;
|
|
3270
|
+
static names(): {
|
|
3271
|
+
[key: string]: string;
|
|
3272
|
+
};
|
|
3273
|
+
static types(): {
|
|
3274
|
+
[key: string]: any;
|
|
3275
|
+
};
|
|
3276
|
+
constructor(map?: {
|
|
3277
|
+
[key: string]: any;
|
|
3278
|
+
});
|
|
3279
|
+
}
|
|
3280
|
+
export declare class CreateLibraryRequestIndexSetting extends $tea.Model {
|
|
3281
|
+
chunkStrategy?: CreateLibraryRequestIndexSettingChunkStrategy;
|
|
3282
|
+
modelConfig?: CreateLibraryRequestIndexSettingModelConfig;
|
|
3283
|
+
promptRoleStyle?: string;
|
|
3284
|
+
queryEnhancer?: CreateLibraryRequestIndexSettingQueryEnhancer;
|
|
3285
|
+
recallStrategy?: CreateLibraryRequestIndexSettingRecallStrategy;
|
|
3286
|
+
textIndexSetting?: CreateLibraryRequestIndexSettingTextIndexSetting;
|
|
3287
|
+
vectorIndexSetting?: CreateLibraryRequestIndexSettingVectorIndexSetting;
|
|
3288
|
+
static names(): {
|
|
3289
|
+
[key: string]: string;
|
|
3290
|
+
};
|
|
3291
|
+
static types(): {
|
|
3292
|
+
[key: string]: any;
|
|
3293
|
+
};
|
|
3294
|
+
constructor(map?: {
|
|
3295
|
+
[key: string]: any;
|
|
3296
|
+
});
|
|
3297
|
+
}
|
|
3298
|
+
export declare class CreatePredefinedDocumentRequestChunks extends $tea.Model {
|
|
3299
|
+
/**
|
|
3300
|
+
* @example
|
|
3301
|
+
* {"a": "1"}
|
|
3302
|
+
*/
|
|
3303
|
+
chunkMeta?: {
|
|
3304
|
+
[key: string]: any;
|
|
3305
|
+
};
|
|
3306
|
+
/**
|
|
3307
|
+
* @example
|
|
3308
|
+
* 1
|
|
3309
|
+
*/
|
|
3310
|
+
chunkOrder?: number;
|
|
3311
|
+
/**
|
|
3312
|
+
* @example
|
|
3313
|
+
* 这是一段测试文本
|
|
3314
|
+
*/
|
|
3315
|
+
chunkText?: string;
|
|
3316
|
+
/**
|
|
3317
|
+
* @example
|
|
3318
|
+
* text
|
|
3319
|
+
*/
|
|
3320
|
+
chunkType?: string;
|
|
3321
|
+
static names(): {
|
|
3322
|
+
[key: string]: string;
|
|
3323
|
+
};
|
|
3324
|
+
static types(): {
|
|
3325
|
+
[key: string]: any;
|
|
3326
|
+
};
|
|
3327
|
+
constructor(map?: {
|
|
3328
|
+
[key: string]: any;
|
|
3329
|
+
});
|
|
3330
|
+
}
|
|
3331
|
+
export declare class CreateQualityCheckTaskRequestConversationListDialogueList extends $tea.Model {
|
|
3332
|
+
/**
|
|
3333
|
+
* @example
|
|
3334
|
+
* 0
|
|
3335
|
+
*/
|
|
3336
|
+
begin?: number;
|
|
3337
|
+
/**
|
|
3338
|
+
* @example
|
|
3339
|
+
* 2024-05-23 14:57:50
|
|
3340
|
+
*/
|
|
3341
|
+
beginTime?: string;
|
|
3342
|
+
/**
|
|
3343
|
+
* @remarks
|
|
3344
|
+
* This parameter is required.
|
|
3345
|
+
*/
|
|
3346
|
+
content?: string;
|
|
3347
|
+
/**
|
|
3348
|
+
* @example
|
|
3349
|
+
* 2348234
|
|
3350
|
+
*/
|
|
3351
|
+
customerId?: string;
|
|
3352
|
+
/**
|
|
3353
|
+
* @example
|
|
3354
|
+
* 23874627346
|
|
3355
|
+
*/
|
|
3356
|
+
customerServiceId?: string;
|
|
3357
|
+
/**
|
|
3358
|
+
* @example
|
|
3359
|
+
* 0
|
|
3360
|
+
*/
|
|
3361
|
+
customerServiceType?: string;
|
|
3362
|
+
/**
|
|
3363
|
+
* @example
|
|
3364
|
+
* 0
|
|
3365
|
+
*/
|
|
3366
|
+
end?: number;
|
|
3367
|
+
/**
|
|
3368
|
+
* @remarks
|
|
3369
|
+
* This parameter is required.
|
|
3370
|
+
*
|
|
3371
|
+
* @example
|
|
3372
|
+
* 1
|
|
3373
|
+
*/
|
|
3374
|
+
role?: string;
|
|
3375
|
+
/**
|
|
3376
|
+
* @remarks
|
|
3377
|
+
* This parameter is required.
|
|
3378
|
+
*
|
|
3379
|
+
* @example
|
|
3380
|
+
* TEXT
|
|
2945
3381
|
*/
|
|
2946
|
-
|
|
2947
|
-
static names(): {
|
|
2948
|
-
[key: string]: string;
|
|
2949
|
-
};
|
|
2950
|
-
static types(): {
|
|
2951
|
-
[key: string]: any;
|
|
2952
|
-
};
|
|
2953
|
-
constructor(map?: {
|
|
2954
|
-
[key: string]: any;
|
|
2955
|
-
});
|
|
2956
|
-
}
|
|
2957
|
-
export declare class CreateLibraryRequestIndexSetting extends $tea.Model {
|
|
2958
|
-
chunkStrategy?: CreateLibraryRequestIndexSettingChunkStrategy;
|
|
2959
|
-
modelConfig?: CreateLibraryRequestIndexSettingModelConfig;
|
|
2960
|
-
promptRoleStyle?: string;
|
|
2961
|
-
queryEnhancer?: CreateLibraryRequestIndexSettingQueryEnhancer;
|
|
2962
|
-
recallStrategy?: CreateLibraryRequestIndexSettingRecallStrategy;
|
|
2963
|
-
textIndexSetting?: CreateLibraryRequestIndexSettingTextIndexSetting;
|
|
2964
|
-
vectorIndexSetting?: CreateLibraryRequestIndexSettingVectorIndexSetting;
|
|
3382
|
+
type?: string;
|
|
2965
3383
|
static names(): {
|
|
2966
3384
|
[key: string]: string;
|
|
2967
3385
|
};
|
|
@@ -2972,29 +3390,53 @@ export declare class CreateLibraryRequestIndexSetting extends $tea.Model {
|
|
|
2972
3390
|
[key: string]: any;
|
|
2973
3391
|
});
|
|
2974
3392
|
}
|
|
2975
|
-
export declare class
|
|
3393
|
+
export declare class CreateQualityCheckTaskRequestConversationList extends $tea.Model {
|
|
2976
3394
|
/**
|
|
2977
3395
|
* @example
|
|
2978
|
-
*
|
|
3396
|
+
* 1
|
|
2979
3397
|
*/
|
|
2980
|
-
|
|
2981
|
-
[key: string]: any;
|
|
2982
|
-
};
|
|
3398
|
+
callType?: string;
|
|
2983
3399
|
/**
|
|
2984
3400
|
* @example
|
|
2985
3401
|
* 1
|
|
2986
3402
|
*/
|
|
2987
|
-
|
|
3403
|
+
customerId?: string;
|
|
3404
|
+
customerName?: string;
|
|
2988
3405
|
/**
|
|
2989
3406
|
* @example
|
|
2990
|
-
*
|
|
3407
|
+
* xxx
|
|
2991
3408
|
*/
|
|
2992
|
-
|
|
3409
|
+
customerServiceId?: string;
|
|
3410
|
+
customerServiceName?: string;
|
|
3411
|
+
/**
|
|
3412
|
+
* @remarks
|
|
3413
|
+
* This parameter is required.
|
|
3414
|
+
*/
|
|
3415
|
+
dialogueList?: CreateQualityCheckTaskRequestConversationListDialogueList[];
|
|
2993
3416
|
/**
|
|
2994
3417
|
* @example
|
|
2995
|
-
*
|
|
3418
|
+
* 2024-09-27 11:23:20
|
|
2996
3419
|
*/
|
|
2997
|
-
|
|
3420
|
+
gmtService?: string;
|
|
3421
|
+
static names(): {
|
|
3422
|
+
[key: string]: string;
|
|
3423
|
+
};
|
|
3424
|
+
static types(): {
|
|
3425
|
+
[key: string]: any;
|
|
3426
|
+
};
|
|
3427
|
+
constructor(map?: {
|
|
3428
|
+
[key: string]: any;
|
|
3429
|
+
});
|
|
3430
|
+
}
|
|
3431
|
+
export declare class CreateQualityCheckTaskResponseBodyData extends $tea.Model {
|
|
3432
|
+
/**
|
|
3433
|
+
* @remarks
|
|
3434
|
+
* taskId
|
|
3435
|
+
*
|
|
3436
|
+
* @example
|
|
3437
|
+
* 172373500521
|
|
3438
|
+
*/
|
|
3439
|
+
taskId?: string;
|
|
2998
3440
|
static names(): {
|
|
2999
3441
|
[key: string]: string;
|
|
3000
3442
|
};
|
|
@@ -4098,6 +4540,238 @@ export declare class GetParseResultResponseBodyData extends $tea.Model {
|
|
|
4098
4540
|
[key: string]: any;
|
|
4099
4541
|
});
|
|
4100
4542
|
}
|
|
4543
|
+
export declare class GetQualityCheckTaskResultResponseBodyDataConversationListDialogueList extends $tea.Model {
|
|
4544
|
+
/**
|
|
4545
|
+
* @example
|
|
4546
|
+
* 0
|
|
4547
|
+
*/
|
|
4548
|
+
begin?: number;
|
|
4549
|
+
/**
|
|
4550
|
+
* @example
|
|
4551
|
+
* 2024-09-27 11:23:20
|
|
4552
|
+
*/
|
|
4553
|
+
beginTime?: string;
|
|
4554
|
+
content?: string;
|
|
4555
|
+
/**
|
|
4556
|
+
* @example
|
|
4557
|
+
* null
|
|
4558
|
+
*/
|
|
4559
|
+
customerId?: string;
|
|
4560
|
+
customerServiceId?: string;
|
|
4561
|
+
/**
|
|
4562
|
+
* @example
|
|
4563
|
+
* 0
|
|
4564
|
+
*/
|
|
4565
|
+
customerServiceType?: string;
|
|
4566
|
+
/**
|
|
4567
|
+
* @example
|
|
4568
|
+
* 0
|
|
4569
|
+
*/
|
|
4570
|
+
end?: number;
|
|
4571
|
+
/**
|
|
4572
|
+
* @example
|
|
4573
|
+
* 1
|
|
4574
|
+
*/
|
|
4575
|
+
id?: number;
|
|
4576
|
+
/**
|
|
4577
|
+
* @example
|
|
4578
|
+
* 0
|
|
4579
|
+
*/
|
|
4580
|
+
role?: string;
|
|
4581
|
+
/**
|
|
4582
|
+
* @example
|
|
4583
|
+
* TEXT
|
|
4584
|
+
*/
|
|
4585
|
+
type?: string;
|
|
4586
|
+
static names(): {
|
|
4587
|
+
[key: string]: string;
|
|
4588
|
+
};
|
|
4589
|
+
static types(): {
|
|
4590
|
+
[key: string]: any;
|
|
4591
|
+
};
|
|
4592
|
+
constructor(map?: {
|
|
4593
|
+
[key: string]: any;
|
|
4594
|
+
});
|
|
4595
|
+
}
|
|
4596
|
+
export declare class GetQualityCheckTaskResultResponseBodyDataConversationList extends $tea.Model {
|
|
4597
|
+
/**
|
|
4598
|
+
* @example
|
|
4599
|
+
* 1
|
|
4600
|
+
*/
|
|
4601
|
+
callType?: string;
|
|
4602
|
+
/**
|
|
4603
|
+
* @example
|
|
4604
|
+
* 234234
|
|
4605
|
+
*/
|
|
4606
|
+
customerId?: string;
|
|
4607
|
+
customerName?: string;
|
|
4608
|
+
/**
|
|
4609
|
+
* @example
|
|
4610
|
+
* 23984763826
|
|
4611
|
+
*/
|
|
4612
|
+
customerServiceId?: string;
|
|
4613
|
+
customerServiceName?: string;
|
|
4614
|
+
dialogueList?: GetQualityCheckTaskResultResponseBodyDataConversationListDialogueList[];
|
|
4615
|
+
/**
|
|
4616
|
+
* @example
|
|
4617
|
+
* 2024-09-27 11:23:20
|
|
4618
|
+
*/
|
|
4619
|
+
gmtService?: string;
|
|
4620
|
+
static names(): {
|
|
4621
|
+
[key: string]: string;
|
|
4622
|
+
};
|
|
4623
|
+
static types(): {
|
|
4624
|
+
[key: string]: any;
|
|
4625
|
+
};
|
|
4626
|
+
constructor(map?: {
|
|
4627
|
+
[key: string]: any;
|
|
4628
|
+
});
|
|
4629
|
+
}
|
|
4630
|
+
export declare class GetQualityCheckTaskResultResponseBodyDataQualityCheckListOriginDialogue extends $tea.Model {
|
|
4631
|
+
/**
|
|
4632
|
+
* @example
|
|
4633
|
+
* 0
|
|
4634
|
+
*/
|
|
4635
|
+
begin?: number;
|
|
4636
|
+
/**
|
|
4637
|
+
* @example
|
|
4638
|
+
* 2024-05-23 14:57:50
|
|
4639
|
+
*/
|
|
4640
|
+
beginTime?: string;
|
|
4641
|
+
content?: string;
|
|
4642
|
+
/**
|
|
4643
|
+
* @example
|
|
4644
|
+
* xxx
|
|
4645
|
+
*/
|
|
4646
|
+
customerId?: string;
|
|
4647
|
+
/**
|
|
4648
|
+
* @example
|
|
4649
|
+
* 23876432
|
|
4650
|
+
*/
|
|
4651
|
+
customerServiceId?: string;
|
|
4652
|
+
/**
|
|
4653
|
+
* @example
|
|
4654
|
+
* 0
|
|
4655
|
+
*/
|
|
4656
|
+
customerServiceType?: string;
|
|
4657
|
+
/**
|
|
4658
|
+
* @example
|
|
4659
|
+
* 0
|
|
4660
|
+
*/
|
|
4661
|
+
end?: number;
|
|
4662
|
+
/**
|
|
4663
|
+
* @example
|
|
4664
|
+
* 1
|
|
4665
|
+
*/
|
|
4666
|
+
id?: number;
|
|
4667
|
+
/**
|
|
4668
|
+
* @example
|
|
4669
|
+
* 0
|
|
4670
|
+
*/
|
|
4671
|
+
role?: string;
|
|
4672
|
+
/**
|
|
4673
|
+
* @example
|
|
4674
|
+
* TEXT
|
|
4675
|
+
*/
|
|
4676
|
+
type?: string;
|
|
4677
|
+
static names(): {
|
|
4678
|
+
[key: string]: string;
|
|
4679
|
+
};
|
|
4680
|
+
static types(): {
|
|
4681
|
+
[key: string]: any;
|
|
4682
|
+
};
|
|
4683
|
+
constructor(map?: {
|
|
4684
|
+
[key: string]: any;
|
|
4685
|
+
});
|
|
4686
|
+
}
|
|
4687
|
+
export declare class GetQualityCheckTaskResultResponseBodyDataQualityCheckList extends $tea.Model {
|
|
4688
|
+
checkExplanation?: string;
|
|
4689
|
+
/**
|
|
4690
|
+
* @example
|
|
4691
|
+
* PASSED
|
|
4692
|
+
*/
|
|
4693
|
+
checkPassed?: string;
|
|
4694
|
+
checkProcess?: string;
|
|
4695
|
+
/**
|
|
4696
|
+
* @example
|
|
4697
|
+
* HIT
|
|
4698
|
+
*/
|
|
4699
|
+
checked?: string;
|
|
4700
|
+
/**
|
|
4701
|
+
* @example
|
|
4702
|
+
* 2024-05-23 14:57:50
|
|
4703
|
+
*/
|
|
4704
|
+
gmtEnd?: string;
|
|
4705
|
+
/**
|
|
4706
|
+
* @example
|
|
4707
|
+
* 2024-05-23 14:57:50
|
|
4708
|
+
*/
|
|
4709
|
+
gmtStart?: string;
|
|
4710
|
+
/**
|
|
4711
|
+
* @example
|
|
4712
|
+
* 0
|
|
4713
|
+
*/
|
|
4714
|
+
mode?: string;
|
|
4715
|
+
originDialogue?: GetQualityCheckTaskResultResponseBodyDataQualityCheckListOriginDialogue[];
|
|
4716
|
+
/**
|
|
4717
|
+
* @example
|
|
4718
|
+
* warning_customers
|
|
4719
|
+
*/
|
|
4720
|
+
qualityGroupId?: string;
|
|
4721
|
+
ruleDescription?: string;
|
|
4722
|
+
/**
|
|
4723
|
+
* @example
|
|
4724
|
+
* wcm_start
|
|
4725
|
+
*/
|
|
4726
|
+
ruleId?: string;
|
|
4727
|
+
static names(): {
|
|
4728
|
+
[key: string]: string;
|
|
4729
|
+
};
|
|
4730
|
+
static types(): {
|
|
4731
|
+
[key: string]: any;
|
|
4732
|
+
};
|
|
4733
|
+
constructor(map?: {
|
|
4734
|
+
[key: string]: any;
|
|
4735
|
+
});
|
|
4736
|
+
}
|
|
4737
|
+
export declare class GetQualityCheckTaskResultResponseBodyData extends $tea.Model {
|
|
4738
|
+
conversationList?: GetQualityCheckTaskResultResponseBodyDataConversationList;
|
|
4739
|
+
/**
|
|
4740
|
+
* @example
|
|
4741
|
+
* 2024-09-27 11:23:20
|
|
4742
|
+
*/
|
|
4743
|
+
gmtCreate?: string;
|
|
4744
|
+
/**
|
|
4745
|
+
* @example
|
|
4746
|
+
* 2024-09-27 11:23:20
|
|
4747
|
+
*/
|
|
4748
|
+
gmtEnd?: string;
|
|
4749
|
+
/**
|
|
4750
|
+
* @example
|
|
4751
|
+
* 2024-09-27 11:23:20
|
|
4752
|
+
*/
|
|
4753
|
+
gmtStart?: string;
|
|
4754
|
+
qualityCheckList?: GetQualityCheckTaskResultResponseBodyDataQualityCheckList[];
|
|
4755
|
+
/**
|
|
4756
|
+
* @example
|
|
4757
|
+
* INIT
|
|
4758
|
+
*/
|
|
4759
|
+
status?: string;
|
|
4760
|
+
/**
|
|
4761
|
+
* @example
|
|
4762
|
+
* 1703557101831
|
|
4763
|
+
*/
|
|
4764
|
+
taskId?: string;
|
|
4765
|
+
static names(): {
|
|
4766
|
+
[key: string]: string;
|
|
4767
|
+
};
|
|
4768
|
+
static types(): {
|
|
4769
|
+
[key: string]: any;
|
|
4770
|
+
};
|
|
4771
|
+
constructor(map?: {
|
|
4772
|
+
[key: string]: any;
|
|
4773
|
+
});
|
|
4774
|
+
}
|
|
4101
4775
|
export declare class GetSummaryTaskResultResponseBodyDataChoicesMessage extends $tea.Model {
|
|
4102
4776
|
content?: string;
|
|
4103
4777
|
/**
|
|
@@ -5360,6 +6034,24 @@ export default class Client extends OpenApi {
|
|
|
5360
6034
|
getEndpoint(productId: string, regionId: string, endpointRule: string, network: string, suffix: string, endpointMap: {
|
|
5361
6035
|
[key: string]: string;
|
|
5362
6036
|
}, endpoint: string): string;
|
|
6037
|
+
/**
|
|
6038
|
+
* 创建财报总结任务
|
|
6039
|
+
*
|
|
6040
|
+
* @param request - CreateDocsSummaryTaskRequest
|
|
6041
|
+
* @param headers - map
|
|
6042
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
6043
|
+
* @returns CreateDocsSummaryTaskResponse
|
|
6044
|
+
*/
|
|
6045
|
+
createDocsSummaryTaskWithOptions(workspaceId: string, request: CreateDocsSummaryTaskRequest, headers: {
|
|
6046
|
+
[key: string]: string;
|
|
6047
|
+
}, runtime: $Util.RuntimeOptions): Promise<CreateDocsSummaryTaskResponse>;
|
|
6048
|
+
/**
|
|
6049
|
+
* 创建财报总结任务
|
|
6050
|
+
*
|
|
6051
|
+
* @param request - CreateDocsSummaryTaskRequest
|
|
6052
|
+
* @returns CreateDocsSummaryTaskResponse
|
|
6053
|
+
*/
|
|
6054
|
+
createDocsSummaryTask(workspaceId: string, request: CreateDocsSummaryTaskRequest): Promise<CreateDocsSummaryTaskResponse>;
|
|
5363
6055
|
/**
|
|
5364
6056
|
* 创建财报总结任务
|
|
5365
6057
|
*
|
|
@@ -5432,6 +6124,24 @@ export default class Client extends OpenApi {
|
|
|
5432
6124
|
* @returns CreatePredefinedDocumentResponse
|
|
5433
6125
|
*/
|
|
5434
6126
|
createPredefinedDocument(workspaceId: string, request: CreatePredefinedDocumentRequest): Promise<CreatePredefinedDocumentResponse>;
|
|
6127
|
+
/**
|
|
6128
|
+
* 创建财报总结的任务
|
|
6129
|
+
*
|
|
6130
|
+
* @param request - CreateQualityCheckTaskRequest
|
|
6131
|
+
* @param headers - map
|
|
6132
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
6133
|
+
* @returns CreateQualityCheckTaskResponse
|
|
6134
|
+
*/
|
|
6135
|
+
createQualityCheckTaskWithOptions(workspaceId: string, request: CreateQualityCheckTaskRequest, headers: {
|
|
6136
|
+
[key: string]: string;
|
|
6137
|
+
}, runtime: $Util.RuntimeOptions): Promise<CreateQualityCheckTaskResponse>;
|
|
6138
|
+
/**
|
|
6139
|
+
* 创建财报总结的任务
|
|
6140
|
+
*
|
|
6141
|
+
* @param request - CreateQualityCheckTaskRequest
|
|
6142
|
+
* @returns CreateQualityCheckTaskResponse
|
|
6143
|
+
*/
|
|
6144
|
+
createQualityCheckTask(workspaceId: string, request: CreateQualityCheckTaskRequest): Promise<CreateQualityCheckTaskResponse>;
|
|
5435
6145
|
/**
|
|
5436
6146
|
* 删除文档
|
|
5437
6147
|
*
|
|
@@ -5645,6 +6355,24 @@ export default class Client extends OpenApi {
|
|
|
5645
6355
|
* @returns GetParseResultResponse
|
|
5646
6356
|
*/
|
|
5647
6357
|
getParseResult(workspaceId: string, request: GetParseResultRequest): Promise<GetParseResultResponse>;
|
|
6358
|
+
/**
|
|
6359
|
+
* 获取异步任务的结果
|
|
6360
|
+
*
|
|
6361
|
+
* @param request - GetQualityCheckTaskResultRequest
|
|
6362
|
+
* @param headers - map
|
|
6363
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
6364
|
+
* @returns GetQualityCheckTaskResultResponse
|
|
6365
|
+
*/
|
|
6366
|
+
getQualityCheckTaskResultWithOptions(workspaceId: string, request: GetQualityCheckTaskResultRequest, headers: {
|
|
6367
|
+
[key: string]: string;
|
|
6368
|
+
}, runtime: $Util.RuntimeOptions): Promise<GetQualityCheckTaskResultResponse>;
|
|
6369
|
+
/**
|
|
6370
|
+
* 获取异步任务的结果
|
|
6371
|
+
*
|
|
6372
|
+
* @param request - GetQualityCheckTaskResultRequest
|
|
6373
|
+
* @returns GetQualityCheckTaskResultResponse
|
|
6374
|
+
*/
|
|
6375
|
+
getQualityCheckTaskResult(workspaceId: string, request: GetQualityCheckTaskResultRequest): Promise<GetQualityCheckTaskResultResponse>;
|
|
5648
6376
|
/**
|
|
5649
6377
|
* 获取财报总结任务结果
|
|
5650
6378
|
*
|