tencentcloud-sdk-nodejs-lke 4.0.835
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/LICENSE +201 -0
- package/README.md +147 -0
- package/index.d.ts +2 -0
- package/index.js +6 -0
- package/package.json +47 -0
- package/prettier.config.js +38 -0
- package/products.md +247 -0
- package/src/index.ts +1 -0
- package/src/services/index.ts +1 -0
- package/src/services/lke/index.ts +5 -0
- package/src/services/lke/v20231130/index.ts +6 -0
- package/src/services/lke/v20231130/lke_client.ts +973 -0
- package/src/services/lke/v20231130/lke_models.ts +4560 -0
- package/tencentcloud/index.d.ts +1 -0
- package/tencentcloud/index.js +4 -0
- package/tencentcloud/services/index.d.ts +1 -0
- package/tencentcloud/services/index.js +4 -0
- package/tencentcloud/services/lke/index.d.ts +6 -0
- package/tencentcloud/services/lke/index.js +7 -0
- package/tencentcloud/services/lke/v20231130/index.d.ts +6 -0
- package/tencentcloud/services/lke/v20231130/index.js +9 -0
- package/tencentcloud/services/lke/v20231130/lke_client.d.ts +309 -0
- package/tencentcloud/services/lke/v20231130/lke_client.js +481 -0
- package/tencentcloud/services/lke/v20231130/lke_models.d.ts +4351 -0
- package/tencentcloud/services/lke/v20231130/lke_models.js +18 -0
- package/tsconfig.json +33 -0
- package/typings/index.d.ts +2 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./services";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { lke } from "./lke";
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.v20231130 = void 0;
|
|
4
|
+
const Models = require("./lke_models");
|
|
5
|
+
const lke_client_1 = require("./lke_client");
|
|
6
|
+
exports.v20231130 = {
|
|
7
|
+
Client: lke_client_1.Client,
|
|
8
|
+
Models: Models,
|
|
9
|
+
};
|
|
@@ -0,0 +1,309 @@
|
|
|
1
|
+
import * as TencentCloudCommon from "tencentcloud-sdk-nodejs-common";
|
|
2
|
+
import { ModifyQAAttrRangeResponse, GetWsTokenResponse, CheckAttributeLabelExistRequest, DescribeQAResponse, GetAppKnowledgeCountRequest, ResetSessionResponse, ListSelectDocResponse, DescribeReleaseInfoRequest, DeleteDocRequest, DescribeAppResponse, UploadAttributeLabelResponse, ListUnsatisfiedReplyResponse, ExportAttributeLabelResponse, ExportQAListResponse, GetAppSecretResponse, CreateQACateResponse, ModifyDocAttrRangeResponse, GetMsgRecordResponse, DescribeUnsatisfiedReplyContextRequest, ListAppRequest, ModifyQAAttrRangeRequest, ListRejectedQuestionResponse, ModifyDocResponse, CreateCorpResponse, ListQARequest, ListUnsatisfiedReplyRequest, DeleteQARequest, ParseDocRequest, ListReleaseRequest, ListModelRequest, ModifyAppResponse, ListDocResponse, ModifyQARequest, GetDocPreviewRequest, ListRejectedQuestionPreviewResponse, DescribeCorpRequest, ListAppCategoryResponse, CreateAppResponse, DescribeAttributeLabelRequest, CreateQARequest, CreateCorpRequest, RetryDocParseRequest, QueryRewriteResponse, DeleteAttributeLabelRequest, DescribeRobotBizIDByAppKeyResponse, DescribeDocResponse, CreateReleaseRequest, CheckAttributeLabelReferRequest, ModifyQACateRequest, ModifyAttributeLabelRequest, VerifyQARequest, ResetSessionRequest, GetAppSecretRequest, DeleteQACateResponse, QueryParseDocResultResponse, ListReleaseDocPreviewResponse, GenerateQAResponse, GetTaskStatusResponse, DescribeDocRequest, RetryDocAuditRequest, SaveDocRequest, ModifyQACateResponse, DescribeAttributeLabelResponse, ModifyAttributeLabelResponse, ListQACateResponse, RetryDocParseResponse, CreateRejectedQuestionResponse, GetEmbeddingResponse, ExportUnsatisfiedReplyRequest, GroupQAResponse, RetryReleaseRequest, CreateAppRequest, DescribeReleaseRequest, ListAppCategoryRequest, ListReleaseConfigPreviewRequest, ListReleaseQAPreviewResponse, ModifyRejectedQuestionResponse, ListReleaseDocPreviewRequest, DescribeUnsatisfiedReplyContextResponse, ExportUnsatisfiedReplyResponse, RateMsgRecordResponse, DescribeReferResponse, ListDocRequest, GetEmbeddingRequest, GroupQARequest, IsTransferIntentResponse, DescribeQARequest, DescribeAppRequest, ListQAResponse, IgnoreUnsatisfiedReplyRequest, DescribeReleaseResponse, RateMsgRecordRequest, RetryDocAuditResponse, RetryReleaseResponse, SaveDocResponse, DeleteRejectedQuestionResponse, CreateAttributeLabelRequest, ListAppResponse, QueryParseDocResultRequest, ListRejectedQuestionPreviewRequest, ListReleaseConfigPreviewResponse, DeleteRejectedQuestionRequest, ExportQAListRequest, GetDocPreviewResponse, CreateReleaseResponse, QueryRewriteRequest, ModifyAppRequest, DeleteAttributeLabelResponse, DeleteQACateRequest, GenerateQARequest, GetWsTokenRequest, ModifyDocRequest, DeleteAppResponse, ListAttributeLabelRequest, DeleteDocResponse, UploadAttributeLabelRequest, ExportAttributeLabelRequest, GetAppKnowledgeCountResponse, CreateAttributeLabelResponse, CreateQAResponse, StopDocParseResponse, ParseDocResponse, ListQACateRequest, ListReleaseQAPreviewRequest, DescribeReleaseInfoResponse, IsTransferIntentRequest, DescribeReferRequest, DeleteAppRequest, VerifyQAResponse, DescribeStorageCredentialRequest, DescribeCorpResponse, ListReleaseResponse, ListModelResponse, ListAttributeLabelResponse, ModifyQAResponse, DeleteQAResponse, GetMsgRecordRequest, DescribeStorageCredentialResponse, CheckAttributeLabelExistResponse, GetTaskStatusRequest, CheckAttributeLabelReferResponse, ModifyDocAttrRangeRequest, CreateQACateRequest, DescribeRobotBizIDByAppKeyRequest, CreateRejectedQuestionRequest, ListRejectedQuestionRequest, ModifyRejectedQuestionRequest, IgnoreUnsatisfiedReplyResponse, StopDocParseRequest, ListSelectDocRequest } from "./lke_models";
|
|
3
|
+
/**
|
|
4
|
+
* lke client
|
|
5
|
+
* @class
|
|
6
|
+
*/
|
|
7
|
+
export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
8
|
+
constructor(clientConfig: TencentCloudCommon.ClientConfig);
|
|
9
|
+
/**
|
|
10
|
+
* 文档列表
|
|
11
|
+
*/
|
|
12
|
+
ListDoc(req: ListDocRequest, cb?: (error: string, rep: ListDocResponse) => void): Promise<ListDocResponse>;
|
|
13
|
+
/**
|
|
14
|
+
* 查询不满意回复列表
|
|
15
|
+
*/
|
|
16
|
+
ListUnsatisfiedReply(req: ListUnsatisfiedReplyRequest, cb?: (error: string, rep: ListUnsatisfiedReplyResponse) => void): Promise<ListUnsatisfiedReplyResponse>;
|
|
17
|
+
/**
|
|
18
|
+
* 删除属性标签
|
|
19
|
+
*/
|
|
20
|
+
DeleteAttributeLabel(req: DeleteAttributeLabelRequest, cb?: (error: string, rep: DeleteAttributeLabelResponse) => void): Promise<DeleteAttributeLabelResponse>;
|
|
21
|
+
/**
|
|
22
|
+
* 保存文档
|
|
23
|
+
*/
|
|
24
|
+
SaveDoc(req: SaveDocRequest, cb?: (error: string, rep: SaveDocResponse) => void): Promise<SaveDocResponse>;
|
|
25
|
+
/**
|
|
26
|
+
* 创建拒答问题
|
|
27
|
+
*/
|
|
28
|
+
CreateRejectedQuestion(req: CreateRejectedQuestionRequest, cb?: (error: string, rep: CreateRejectedQuestionResponse) => void): Promise<CreateRejectedQuestionResponse>;
|
|
29
|
+
/**
|
|
30
|
+
* 检查属性下的标签名是否存在
|
|
31
|
+
*/
|
|
32
|
+
CheckAttributeLabelExist(req: CheckAttributeLabelExistRequest, cb?: (error: string, rep: CheckAttributeLabelExistResponse) => void): Promise<CheckAttributeLabelExistResponse>;
|
|
33
|
+
/**
|
|
34
|
+
* 批量修改问答适用范围
|
|
35
|
+
*/
|
|
36
|
+
ModifyQAAttrRange(req: ModifyQAAttrRangeRequest, cb?: (error: string, rep: ModifyQAAttrRangeResponse) => void): Promise<ModifyQAAttrRangeResponse>;
|
|
37
|
+
/**
|
|
38
|
+
* 文档详情
|
|
39
|
+
*/
|
|
40
|
+
DescribeDoc(req: DescribeDocRequest, cb?: (error: string, rep: DescribeDocResponse) => void): Promise<DescribeDocResponse>;
|
|
41
|
+
/**
|
|
42
|
+
* 删除拒答问题
|
|
43
|
+
*/
|
|
44
|
+
DeleteRejectedQuestion(req: DeleteRejectedQuestionRequest, cb?: (error: string, rep: DeleteRejectedQuestionResponse) => void): Promise<DeleteRejectedQuestionResponse>;
|
|
45
|
+
/**
|
|
46
|
+
* 获取账户信息
|
|
47
|
+
*/
|
|
48
|
+
ListSelectDoc(req: ListSelectDocRequest, cb?: (error: string, rep: ListSelectDocResponse) => void): Promise<ListSelectDocResponse>;
|
|
49
|
+
/**
|
|
50
|
+
* 多轮改写
|
|
51
|
+
*/
|
|
52
|
+
QueryRewrite(req: QueryRewriteRequest, cb?: (error: string, rep: QueryRewriteResponse) => void): Promise<QueryRewriteResponse>;
|
|
53
|
+
/**
|
|
54
|
+
* 更新问答
|
|
55
|
+
*/
|
|
56
|
+
ModifyQA(req: ModifyQARequest, cb?: (error: string, rep: ModifyQAResponse) => void): Promise<ModifyQAResponse>;
|
|
57
|
+
/**
|
|
58
|
+
* 批量修改文档适用范围
|
|
59
|
+
*/
|
|
60
|
+
ModifyDocAttrRange(req: ModifyDocAttrRangeRequest, cb?: (error: string, rep: ModifyDocAttrRangeResponse) => void): Promise<ModifyDocAttrRangeResponse>;
|
|
61
|
+
/**
|
|
62
|
+
* 获取文件上传临时密钥
|
|
63
|
+
*/
|
|
64
|
+
DescribeStorageCredential(req: DescribeStorageCredentialRequest, cb?: (error: string, rep: DescribeStorageCredentialResponse) => void): Promise<DescribeStorageCredentialResponse>;
|
|
65
|
+
/**
|
|
66
|
+
* 创建发布
|
|
67
|
+
*/
|
|
68
|
+
CreateRelease(req: CreateReleaseRequest, cb?: (error: string, rep: CreateReleaseResponse) => void): Promise<CreateReleaseResponse>;
|
|
69
|
+
/**
|
|
70
|
+
* 获取特征向量
|
|
71
|
+
*/
|
|
72
|
+
GetEmbedding(req: GetEmbeddingRequest, cb?: (error: string, rep: GetEmbeddingResponse) => void): Promise<GetEmbeddingResponse>;
|
|
73
|
+
/**
|
|
74
|
+
* 文档解析重试
|
|
75
|
+
*/
|
|
76
|
+
RetryDocAudit(req: RetryDocAuditRequest, cb?: (error: string, rep: RetryDocAuditResponse) => void): Promise<RetryDocAuditResponse>;
|
|
77
|
+
/**
|
|
78
|
+
* 获取应用密钥
|
|
79
|
+
*/
|
|
80
|
+
GetAppSecret(req: GetAppSecretRequest, cb?: (error: string, rep: GetAppSecretResponse) => void): Promise<GetAppSecretResponse>;
|
|
81
|
+
/**
|
|
82
|
+
* 编辑属性标签
|
|
83
|
+
*/
|
|
84
|
+
ModifyAttributeLabel(req: ModifyAttributeLabelRequest, cb?: (error: string, rep: ModifyAttributeLabelResponse) => void): Promise<ModifyAttributeLabelResponse>;
|
|
85
|
+
/**
|
|
86
|
+
* 发布列表
|
|
87
|
+
*/
|
|
88
|
+
ListRelease(req: ListReleaseRequest, cb?: (error: string, rep: ListReleaseResponse) => void): Promise<ListReleaseResponse>;
|
|
89
|
+
/**
|
|
90
|
+
* 是否意图转人工
|
|
91
|
+
*/
|
|
92
|
+
RateMsgRecord(req: RateMsgRecordRequest, cb?: (error: string, rep: RateMsgRecordResponse) => void): Promise<RateMsgRecordResponse>;
|
|
93
|
+
/**
|
|
94
|
+
* 问答列表
|
|
95
|
+
*/
|
|
96
|
+
ListQA(req: ListQARequest, cb?: (error: string, rep: ListQAResponse) => void): Promise<ListQAResponse>;
|
|
97
|
+
/**
|
|
98
|
+
* 删除问答
|
|
99
|
+
*/
|
|
100
|
+
DeleteQA(req: DeleteQARequest, cb?: (error: string, rep: DeleteQAResponse) => void): Promise<DeleteQAResponse>;
|
|
101
|
+
/**
|
|
102
|
+
* 通过appKey获取机器人业务ID
|
|
103
|
+
*/
|
|
104
|
+
DescribeRobotBizIDByAppKey(req: DescribeRobotBizIDByAppKeyRequest, cb?: (error: string, rep: DescribeRobotBizIDByAppKeyResponse) => void): Promise<DescribeRobotBizIDByAppKeyResponse>;
|
|
105
|
+
/**
|
|
106
|
+
* 文档列表
|
|
107
|
+
*/
|
|
108
|
+
ListReleaseQAPreview(req: ListReleaseQAPreviewRequest, cb?: (error: string, rep: ListReleaseQAPreviewResponse) => void): Promise<ListReleaseQAPreviewResponse>;
|
|
109
|
+
/**
|
|
110
|
+
* 导出QA列表
|
|
111
|
+
*/
|
|
112
|
+
ExportQAList(req: ExportQAListRequest, cb?: (error: string, rep: ExportQAListResponse) => void): Promise<ExportQAListResponse>;
|
|
113
|
+
/**
|
|
114
|
+
* 更新QA分类
|
|
115
|
+
*/
|
|
116
|
+
ModifyQACate(req: ModifyQACateRequest, cb?: (error: string, rep: ModifyQACateResponse) => void): Promise<ModifyQACateResponse>;
|
|
117
|
+
/**
|
|
118
|
+
* 删除应用
|
|
119
|
+
*/
|
|
120
|
+
DeleteApp(req: DeleteAppRequest, cb?: (error: string, rep: DeleteAppResponse) => void): Promise<DeleteAppResponse>;
|
|
121
|
+
/**
|
|
122
|
+
* 修改应用请求结构体
|
|
123
|
+
*/
|
|
124
|
+
ModifyApp(req: ModifyAppRequest, cb?: (error: string, rep: ModifyAppResponse) => void): Promise<ModifyAppResponse>;
|
|
125
|
+
/**
|
|
126
|
+
* 终止文档解析
|
|
127
|
+
*/
|
|
128
|
+
StopDocParse(req: StopDocParseRequest, cb?: (error: string, rep: StopDocParseResponse) => void): Promise<StopDocParseResponse>;
|
|
129
|
+
/**
|
|
130
|
+
* 修改拒答问题
|
|
131
|
+
*/
|
|
132
|
+
ModifyRejectedQuestion(req: ModifyRejectedQuestionRequest, cb?: (error: string, rep: ModifyRejectedQuestionResponse) => void): Promise<ModifyRejectedQuestionResponse>;
|
|
133
|
+
/**
|
|
134
|
+
* 检查属性标签引用
|
|
135
|
+
*/
|
|
136
|
+
CheckAttributeLabelRefer(req: CheckAttributeLabelReferRequest, cb?: (error: string, rep: CheckAttributeLabelReferResponse) => void): Promise<CheckAttributeLabelReferResponse>;
|
|
137
|
+
/**
|
|
138
|
+
* 企业详情
|
|
139
|
+
*/
|
|
140
|
+
DescribeCorp(req?: DescribeCorpRequest, cb?: (error: string, rep: DescribeCorpResponse) => void): Promise<DescribeCorpResponse>;
|
|
141
|
+
/**
|
|
142
|
+
* 创建属性
|
|
143
|
+
*/
|
|
144
|
+
CreateAttributeLabel(req: CreateAttributeLabelRequest, cb?: (error: string, rep: CreateAttributeLabelResponse) => void): Promise<CreateAttributeLabelResponse>;
|
|
145
|
+
/**
|
|
146
|
+
* 获取不满意回复上下文
|
|
147
|
+
*/
|
|
148
|
+
DescribeUnsatisfiedReplyContext(req: DescribeUnsatisfiedReplyContextRequest, cb?: (error: string, rep: DescribeUnsatisfiedReplyContextResponse) => void): Promise<DescribeUnsatisfiedReplyContextResponse>;
|
|
149
|
+
/**
|
|
150
|
+
* 上传导入属性标签
|
|
151
|
+
*/
|
|
152
|
+
UploadAttributeLabel(req: UploadAttributeLabelRequest, cb?: (error: string, rep: UploadAttributeLabelResponse) => void): Promise<UploadAttributeLabelResponse>;
|
|
153
|
+
/**
|
|
154
|
+
* 获取企业下应用列表
|
|
155
|
+
*/
|
|
156
|
+
ListApp(req: ListAppRequest, cb?: (error: string, rep: ListAppResponse) => void): Promise<ListAppResponse>;
|
|
157
|
+
/**
|
|
158
|
+
* 获取文档预览信息
|
|
159
|
+
*/
|
|
160
|
+
GetDocPreview(req: GetDocPreviewRequest, cb?: (error: string, rep: GetDocPreviewResponse) => void): Promise<GetDocPreviewResponse>;
|
|
161
|
+
/**
|
|
162
|
+
* 发布文档预览
|
|
163
|
+
*/
|
|
164
|
+
ListReleaseDocPreview(req: ListReleaseDocPreviewRequest, cb?: (error: string, rep: ListReleaseDocPreviewResponse) => void): Promise<ListReleaseDocPreviewResponse>;
|
|
165
|
+
/**
|
|
166
|
+
* 创建企业
|
|
167
|
+
*/
|
|
168
|
+
CreateCorp(req: CreateCorpRequest, cb?: (error: string, rep: CreateCorpResponse) => void): Promise<CreateCorpResponse>;
|
|
169
|
+
/**
|
|
170
|
+
* 查询属性标签详情
|
|
171
|
+
*/
|
|
172
|
+
DescribeAttributeLabel(req: DescribeAttributeLabelRequest, cb?: (error: string, rep: DescribeAttributeLabelResponse) => void): Promise<DescribeAttributeLabelResponse>;
|
|
173
|
+
/**
|
|
174
|
+
* 发布详情
|
|
175
|
+
*/
|
|
176
|
+
DescribeRelease(req: DescribeReleaseRequest, cb?: (error: string, rep: DescribeReleaseResponse) => void): Promise<DescribeReleaseResponse>;
|
|
177
|
+
/**
|
|
178
|
+
* 问答详情
|
|
179
|
+
*/
|
|
180
|
+
DescribeQA(req: DescribeQARequest, cb?: (error: string, rep: DescribeQAResponse) => void): Promise<DescribeQAResponse>;
|
|
181
|
+
/**
|
|
182
|
+
* 文档解析重试
|
|
183
|
+
*/
|
|
184
|
+
RetryDocParse(req: RetryDocParseRequest, cb?: (error: string, rep: RetryDocParseResponse) => void): Promise<RetryDocParseResponse>;
|
|
185
|
+
/**
|
|
186
|
+
* 拉取发布按钮状态、最后发布时间
|
|
187
|
+
*/
|
|
188
|
+
DescribeReleaseInfo(req: DescribeReleaseInfoRequest, cb?: (error: string, rep: DescribeReleaseInfoResponse) => void): Promise<DescribeReleaseInfoResponse>;
|
|
189
|
+
/**
|
|
190
|
+
* 录入问答
|
|
191
|
+
*/
|
|
192
|
+
CreateQA(req: CreateQARequest, cb?: (error: string, rep: CreateQAResponse) => void): Promise<CreateQAResponse>;
|
|
193
|
+
/**
|
|
194
|
+
* 查询文件解析结果
|
|
195
|
+
*/
|
|
196
|
+
QueryParseDocResult(req: QueryParseDocResultRequest, cb?: (error: string, rep: QueryParseDocResultResponse) => void): Promise<QueryParseDocResultResponse>;
|
|
197
|
+
/**
|
|
198
|
+
* 查询属性标签列表
|
|
199
|
+
*/
|
|
200
|
+
ListAttributeLabel(req: ListAttributeLabelRequest, cb?: (error: string, rep: ListAttributeLabelResponse) => void): Promise<ListAttributeLabelResponse>;
|
|
201
|
+
/**
|
|
202
|
+
* 获取QA分类
|
|
203
|
+
*/
|
|
204
|
+
ListQACate(req: ListQACateRequest, cb?: (error: string, rep: ListQACateResponse) => void): Promise<ListQACateResponse>;
|
|
205
|
+
/**
|
|
206
|
+
* 获取模型列表
|
|
207
|
+
*/
|
|
208
|
+
GetAppKnowledgeCount(req: GetAppKnowledgeCountRequest, cb?: (error: string, rep: GetAppKnowledgeCountResponse) => void): Promise<GetAppKnowledgeCountResponse>;
|
|
209
|
+
/**
|
|
210
|
+
* 文档生成问答
|
|
211
|
+
*/
|
|
212
|
+
GenerateQA(req: GenerateQARequest, cb?: (error: string, rep: GenerateQAResponse) => void): Promise<GenerateQAResponse>;
|
|
213
|
+
/**
|
|
214
|
+
* 应用类型列表
|
|
215
|
+
*/
|
|
216
|
+
ListAppCategory(req?: ListAppCategoryRequest, cb?: (error: string, rep: ListAppCategoryResponse) => void): Promise<ListAppCategoryResponse>;
|
|
217
|
+
/**
|
|
218
|
+
* 获取企业下应用详情
|
|
219
|
+
*/
|
|
220
|
+
DescribeApp(req: DescribeAppRequest, cb?: (error: string, rep: DescribeAppResponse) => void): Promise<DescribeAppResponse>;
|
|
221
|
+
/**
|
|
222
|
+
* 创建只是引擎应用,包括:知识管理应用、知识摘要应用、标签提取应用。
|
|
223
|
+
*/
|
|
224
|
+
CreateApp(req: CreateAppRequest, cb?: (error: string, rep: CreateAppResponse) => void): Promise<CreateAppResponse>;
|
|
225
|
+
/**
|
|
226
|
+
* 是否意图转人工
|
|
227
|
+
*/
|
|
228
|
+
IsTransferIntent(req: IsTransferIntentRequest, cb?: (error: string, rep: IsTransferIntentResponse) => void): Promise<IsTransferIntentResponse>;
|
|
229
|
+
/**
|
|
230
|
+
* 发布拒答问题预览
|
|
231
|
+
*/
|
|
232
|
+
ListRejectedQuestionPreview(req: ListRejectedQuestionPreviewRequest, cb?: (error: string, rep: ListRejectedQuestionPreviewResponse) => void): Promise<ListRejectedQuestionPreviewResponse>;
|
|
233
|
+
/**
|
|
234
|
+
* 获取推荐问题
|
|
235
|
+
*/
|
|
236
|
+
GetMsgRecord(req: GetMsgRecordRequest, cb?: (error: string, rep: GetMsgRecordResponse) => void): Promise<GetMsgRecordResponse>;
|
|
237
|
+
/**
|
|
238
|
+
* 修改文档
|
|
239
|
+
*/
|
|
240
|
+
ModifyDoc(req: ModifyDocRequest, cb?: (error: string, rep: ModifyDocResponse) => void): Promise<ModifyDocResponse>;
|
|
241
|
+
/**
|
|
242
|
+
* 解析拆分文件
|
|
243
|
+
*/
|
|
244
|
+
ParseDoc(req: ParseDocRequest, cb?: (error: string, rep: ParseDocResponse) => void): Promise<ParseDocResponse>;
|
|
245
|
+
/**
|
|
246
|
+
* 获取ws token
|
|
247
|
+
*/
|
|
248
|
+
GetWsToken(req: GetWsTokenRequest, cb?: (error: string, rep: GetWsTokenResponse) => void): Promise<GetWsTokenResponse>;
|
|
249
|
+
/**
|
|
250
|
+
* 创建企业
|
|
251
|
+
*/
|
|
252
|
+
DeleteDoc(req: DeleteDocRequest, cb?: (error: string, rep: DeleteDocResponse) => void): Promise<DeleteDocResponse>;
|
|
253
|
+
/**
|
|
254
|
+
* 获取模型列表
|
|
255
|
+
*/
|
|
256
|
+
ListModel(req: ListModelRequest, cb?: (error: string, rep: ListModelResponse) => void): Promise<ListModelResponse>;
|
|
257
|
+
/**
|
|
258
|
+
* 校验问答
|
|
259
|
+
*/
|
|
260
|
+
VerifyQA(req: VerifyQARequest, cb?: (error: string, rep: VerifyQAResponse) => void): Promise<VerifyQAResponse>;
|
|
261
|
+
/**
|
|
262
|
+
* QA分组
|
|
263
|
+
*/
|
|
264
|
+
GroupQA(req: GroupQARequest, cb?: (error: string, rep: GroupQAResponse) => void): Promise<GroupQAResponse>;
|
|
265
|
+
/**
|
|
266
|
+
* 获取拒答问题
|
|
267
|
+
*/
|
|
268
|
+
ListRejectedQuestion(req: ListRejectedQuestionRequest, cb?: (error: string, rep: ListRejectedQuestionResponse) => void): Promise<ListRejectedQuestionResponse>;
|
|
269
|
+
/**
|
|
270
|
+
* 发布配置项预览
|
|
271
|
+
*/
|
|
272
|
+
ListReleaseConfigPreview(req: ListReleaseConfigPreviewRequest, cb?: (error: string, rep: ListReleaseConfigPreviewResponse) => void): Promise<ListReleaseConfigPreviewResponse>;
|
|
273
|
+
/**
|
|
274
|
+
* 获取任务状态
|
|
275
|
+
*/
|
|
276
|
+
GetTaskStatus(req: GetTaskStatusRequest, cb?: (error: string, rep: GetTaskStatusResponse) => void): Promise<GetTaskStatusResponse>;
|
|
277
|
+
/**
|
|
278
|
+
* 分类删除
|
|
279
|
+
*/
|
|
280
|
+
DeleteQACate(req: DeleteQACateRequest, cb?: (error: string, rep: DeleteQACateResponse) => void): Promise<DeleteQACateResponse>;
|
|
281
|
+
/**
|
|
282
|
+
* 创建QA分类
|
|
283
|
+
*/
|
|
284
|
+
CreateQACate(req: CreateQACateRequest, cb?: (error: string, rep: CreateQACateResponse) => void): Promise<CreateQACateResponse>;
|
|
285
|
+
/**
|
|
286
|
+
* 导出不满意回复
|
|
287
|
+
*/
|
|
288
|
+
ExportUnsatisfiedReply(req: ExportUnsatisfiedReplyRequest, cb?: (error: string, rep: ExportUnsatisfiedReplyResponse) => void): Promise<ExportUnsatisfiedReplyResponse>;
|
|
289
|
+
/**
|
|
290
|
+
* 重置会话
|
|
291
|
+
*/
|
|
292
|
+
ResetSession(req: ResetSessionRequest, cb?: (error: string, rep: ResetSessionResponse) => void): Promise<ResetSessionResponse>;
|
|
293
|
+
/**
|
|
294
|
+
* 导出属性标签
|
|
295
|
+
*/
|
|
296
|
+
ExportAttributeLabel(req: ExportAttributeLabelRequest, cb?: (error: string, rep: ExportAttributeLabelResponse) => void): Promise<ExportAttributeLabelResponse>;
|
|
297
|
+
/**
|
|
298
|
+
* 发布暂停后重试
|
|
299
|
+
*/
|
|
300
|
+
RetryRelease(req: RetryReleaseRequest, cb?: (error: string, rep: RetryReleaseResponse) => void): Promise<RetryReleaseResponse>;
|
|
301
|
+
/**
|
|
302
|
+
* 获取来源详情列表
|
|
303
|
+
*/
|
|
304
|
+
DescribeRefer(req: DescribeReferRequest, cb?: (error: string, rep: DescribeReferResponse) => void): Promise<DescribeReferResponse>;
|
|
305
|
+
/**
|
|
306
|
+
* 忽略不满意回复
|
|
307
|
+
*/
|
|
308
|
+
IgnoreUnsatisfiedReply(req: IgnoreUnsatisfiedReplyRequest, cb?: (error: string, rep: IgnoreUnsatisfiedReplyResponse) => void): Promise<IgnoreUnsatisfiedReplyResponse>;
|
|
309
|
+
}
|