tencentcloud-sdk-nodejs-adp 4.1.306 → 4.1.310
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.
|
@@ -28,18 +28,6 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
28
28
|
constructor(clientConfig) {
|
|
29
29
|
super("adp.tencentcloudapi.com", "2026-05-20", clientConfig);
|
|
30
30
|
}
|
|
31
|
-
/**
|
|
32
|
-
* 修改Agent配置信息
|
|
33
|
-
*/
|
|
34
|
-
async ModifyAgent(req, cb) {
|
|
35
|
-
return this.request("ModifyAgent", req, cb);
|
|
36
|
-
}
|
|
37
|
-
/**
|
|
38
|
-
* 查询应用的消息记录分类树,返回分类及子分类、各分类下记录数量与操作权限
|
|
39
|
-
*/
|
|
40
|
-
async DescribeMsgRecordCategoryList(req, cb) {
|
|
41
|
-
return this.request("DescribeMsgRecordCategoryList", req, cb);
|
|
42
|
-
}
|
|
43
31
|
/**
|
|
44
32
|
* DeleteAppTrigger
|
|
45
33
|
*/
|
|
@@ -47,136 +35,143 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
47
35
|
return this.request("DeleteAppTrigger", req, cb);
|
|
48
36
|
}
|
|
49
37
|
/**
|
|
50
|
-
*
|
|
38
|
+
* 修改会话信息
|
|
51
39
|
*/
|
|
52
|
-
async
|
|
53
|
-
return this.request("
|
|
40
|
+
async ModifyConversation(req, cb) {
|
|
41
|
+
return this.request("ModifyConversation", req, cb);
|
|
54
42
|
}
|
|
55
43
|
/**
|
|
56
|
-
*
|
|
44
|
+
* 查询skill详情
|
|
57
45
|
*/
|
|
58
|
-
async
|
|
59
|
-
return this.request("
|
|
46
|
+
async DescribeSkillDetail(req, cb) {
|
|
47
|
+
return this.request("DescribeSkillDetail", req, cb);
|
|
60
48
|
}
|
|
61
49
|
/**
|
|
62
|
-
*
|
|
50
|
+
* 获取应用摘要列表
|
|
63
51
|
*/
|
|
64
|
-
async
|
|
65
|
-
return this.request("
|
|
52
|
+
async DescribeAppSummaryList(req, cb) {
|
|
53
|
+
return this.request("DescribeAppSummaryList", req, cb);
|
|
66
54
|
}
|
|
67
55
|
/**
|
|
68
|
-
*
|
|
56
|
+
* 创建渠道(通过scene区分B端应用发布渠道与C端IM渠道)
|
|
69
57
|
*/
|
|
70
|
-
async
|
|
71
|
-
return this.request("
|
|
58
|
+
async CreateChannel(req, cb) {
|
|
59
|
+
return this.request("CreateChannel", req, cb);
|
|
72
60
|
}
|
|
73
61
|
/**
|
|
74
|
-
*
|
|
62
|
+
* 查询模型列表
|
|
75
63
|
*/
|
|
76
|
-
async
|
|
77
|
-
return this.request("
|
|
64
|
+
async DescribeModelList(req, cb) {
|
|
65
|
+
return this.request("DescribeModelList", req, cb);
|
|
78
66
|
}
|
|
79
67
|
/**
|
|
80
|
-
*
|
|
68
|
+
* 新增发布任务
|
|
81
69
|
*/
|
|
82
|
-
async
|
|
83
|
-
return this.request("
|
|
70
|
+
async CreateRelease(req, cb) {
|
|
71
|
+
return this.request("CreateRelease", req, cb);
|
|
84
72
|
}
|
|
85
73
|
/**
|
|
86
|
-
*
|
|
74
|
+
* 修改插件
|
|
87
75
|
*/
|
|
88
|
-
async
|
|
89
|
-
return this.request("
|
|
76
|
+
async ModifyPlugin(req, cb) {
|
|
77
|
+
return this.request("ModifyPlugin", req, cb);
|
|
90
78
|
}
|
|
91
79
|
/**
|
|
92
|
-
*
|
|
80
|
+
* CreateAppTrigger
|
|
93
81
|
*/
|
|
94
|
-
async
|
|
95
|
-
return this.request("
|
|
82
|
+
async CreateAppTrigger(req, cb) {
|
|
83
|
+
return this.request("CreateAppTrigger", req, cb);
|
|
96
84
|
}
|
|
97
85
|
/**
|
|
98
|
-
*
|
|
86
|
+
* 查询应用的对话消息记录列表,支持按渠道类型、反馈类型、意图、调用结果等条件过滤,并支持游标分页与按创建时间排序
|
|
99
87
|
*/
|
|
100
|
-
async
|
|
101
|
-
return this.request("
|
|
88
|
+
async DescribeMsgRecordList(req, cb) {
|
|
89
|
+
return this.request("DescribeMsgRecordList", req, cb);
|
|
102
90
|
}
|
|
103
91
|
/**
|
|
104
|
-
*
|
|
92
|
+
* 修改Agent配置信息
|
|
105
93
|
*/
|
|
106
|
-
async
|
|
107
|
-
return this.request("
|
|
94
|
+
async ModifyAgent(req, cb) {
|
|
95
|
+
return this.request("ModifyAgent", req, cb);
|
|
108
96
|
}
|
|
109
97
|
/**
|
|
110
|
-
*
|
|
98
|
+
* 删除指定的消息记录分类
|
|
111
99
|
*/
|
|
112
|
-
async
|
|
113
|
-
return this.request("
|
|
100
|
+
async DeleteMsgRecordCategory(req, cb) {
|
|
101
|
+
return this.request("DeleteMsgRecordCategory", req, cb);
|
|
114
102
|
}
|
|
115
103
|
/**
|
|
116
|
-
|
|
104
|
+
* 重置会话
|
|
105
|
+
注意:当前Claw模式应用会话不支持重置
|
|
106
|
+
*/
|
|
107
|
+
async ResetConversation(req, cb) {
|
|
108
|
+
return this.request("ResetConversation", req, cb);
|
|
109
|
+
}
|
|
110
|
+
/**
|
|
111
|
+
* 创建参数变量
|
|
117
112
|
*/
|
|
118
|
-
async
|
|
119
|
-
return this.request("
|
|
113
|
+
async CreateVariable(req, cb) {
|
|
114
|
+
return this.request("CreateVariable", req, cb);
|
|
120
115
|
}
|
|
121
116
|
/**
|
|
122
|
-
*
|
|
117
|
+
* 获取插件列表
|
|
123
118
|
*/
|
|
124
|
-
async
|
|
125
|
-
return this.request("
|
|
119
|
+
async DescribePluginSummaryList(req, cb) {
|
|
120
|
+
return this.request("DescribePluginSummaryList", req, cb);
|
|
126
121
|
}
|
|
127
122
|
/**
|
|
128
|
-
*
|
|
123
|
+
* 查询看板总览KPI卡片数据,通过resource_type区分资源看板与业务看板域,返回各域KPI指标列表
|
|
129
124
|
*/
|
|
130
|
-
async
|
|
131
|
-
return this.request("
|
|
125
|
+
async DescribeMetricOverviewList(req, cb) {
|
|
126
|
+
return this.request("DescribeMetricOverviewList", req, cb);
|
|
132
127
|
}
|
|
133
128
|
/**
|
|
134
|
-
*
|
|
129
|
+
* 获取会话列表
|
|
135
130
|
*/
|
|
136
|
-
async
|
|
137
|
-
return this.request("
|
|
131
|
+
async DescribeConversationList(req, cb) {
|
|
132
|
+
return this.request("DescribeConversationList", req, cb);
|
|
138
133
|
}
|
|
139
134
|
/**
|
|
140
|
-
*
|
|
135
|
+
* 编辑空间
|
|
141
136
|
*/
|
|
142
|
-
async
|
|
143
|
-
return this.request("
|
|
137
|
+
async ModifySpace(req, cb) {
|
|
138
|
+
return this.request("ModifySpace", req, cb);
|
|
144
139
|
}
|
|
145
140
|
/**
|
|
146
|
-
*
|
|
141
|
+
* 提交自定义Skill至企业级共享审批(两段式:提交→审批→回调创建共享任务)
|
|
147
142
|
*/
|
|
148
|
-
async
|
|
149
|
-
return this.request("
|
|
143
|
+
async CreateSkillShare(req, cb) {
|
|
144
|
+
return this.request("CreateSkillShare", req, cb);
|
|
150
145
|
}
|
|
151
146
|
/**
|
|
152
|
-
*
|
|
147
|
+
* 获取渠道详情(scene区分场景)
|
|
153
148
|
*/
|
|
154
|
-
async
|
|
155
|
-
return this.request("
|
|
149
|
+
async DescribeChannel(req, cb) {
|
|
150
|
+
return this.request("DescribeChannel", req, cb);
|
|
156
151
|
}
|
|
157
152
|
/**
|
|
158
|
-
*
|
|
153
|
+
* 获取应用信息
|
|
159
154
|
*/
|
|
160
|
-
async
|
|
161
|
-
return this.request("
|
|
155
|
+
async DescribeApp(req, cb) {
|
|
156
|
+
return this.request("DescribeApp", req, cb);
|
|
162
157
|
}
|
|
163
158
|
/**
|
|
164
|
-
*
|
|
159
|
+
* Skill修改
|
|
165
160
|
*/
|
|
166
|
-
async
|
|
167
|
-
return this.request("
|
|
161
|
+
async ModifySkill(req, cb) {
|
|
162
|
+
return this.request("ModifySkill", req, cb);
|
|
168
163
|
}
|
|
169
164
|
/**
|
|
170
|
-
*
|
|
165
|
+
* PauseAppTrigger
|
|
171
166
|
*/
|
|
172
|
-
async
|
|
173
|
-
return this.request("
|
|
167
|
+
async PauseAppTrigger(req, cb) {
|
|
168
|
+
return this.request("PauseAppTrigger", req, cb);
|
|
174
169
|
}
|
|
175
170
|
/**
|
|
176
|
-
*
|
|
171
|
+
* 回滚发布
|
|
177
172
|
*/
|
|
178
|
-
async
|
|
179
|
-
return this.request("
|
|
173
|
+
async RollbackRelease(req, cb) {
|
|
174
|
+
return this.request("RollbackRelease", req, cb);
|
|
180
175
|
}
|
|
181
176
|
/**
|
|
182
177
|
* 查询 Agent 摘要信息列表
|
|
@@ -185,46 +180,46 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
185
180
|
return this.request("DescribeAgentSummaryList", req, cb);
|
|
186
181
|
}
|
|
187
182
|
/**
|
|
188
|
-
*
|
|
183
|
+
* DescribeAppTriggerInstance
|
|
189
184
|
*/
|
|
190
|
-
async
|
|
191
|
-
return this.request("
|
|
185
|
+
async DescribeAppTriggerInstance(req, cb) {
|
|
186
|
+
return this.request("DescribeAppTriggerInstance", req, cb);
|
|
192
187
|
}
|
|
193
188
|
/**
|
|
194
|
-
*
|
|
189
|
+
* 取消收藏skill
|
|
195
190
|
*/
|
|
196
|
-
async
|
|
197
|
-
return this.request("
|
|
191
|
+
async UnfavoriteSkill(req, cb) {
|
|
192
|
+
return this.request("UnfavoriteSkill", req, cb);
|
|
198
193
|
}
|
|
199
194
|
/**
|
|
200
|
-
*
|
|
195
|
+
* 修改指定消息记录分类的名称
|
|
201
196
|
*/
|
|
202
|
-
async
|
|
203
|
-
return this.request("
|
|
197
|
+
async ModifyMsgRecordCategory(req, cb) {
|
|
198
|
+
return this.request("ModifyMsgRecordCategory", req, cb);
|
|
204
199
|
}
|
|
205
200
|
/**
|
|
206
|
-
*
|
|
201
|
+
* 查询资源消耗明细,包含计费相关字段(消耗类型、消耗目标、消耗场景、套餐包及PU消耗等)
|
|
207
202
|
*/
|
|
208
|
-
async
|
|
209
|
-
return this.request("
|
|
203
|
+
async DescribeConsumptionDetailList(req, cb) {
|
|
204
|
+
return this.request("DescribeConsumptionDetailList", req, cb);
|
|
210
205
|
}
|
|
211
206
|
/**
|
|
212
|
-
*
|
|
207
|
+
* 删除渠道(通过scene区分场景)
|
|
213
208
|
*/
|
|
214
|
-
async
|
|
215
|
-
return this.request("
|
|
209
|
+
async DeleteChannel(req, cb) {
|
|
210
|
+
return this.request("DeleteChannel", req, cb);
|
|
216
211
|
}
|
|
217
212
|
/**
|
|
218
|
-
*
|
|
213
|
+
* 修改渠道(支持修改备注与企微机器人渠道回调机器人ID)
|
|
219
214
|
*/
|
|
220
|
-
async
|
|
221
|
-
return this.request("
|
|
215
|
+
async ModifyChannel(req, cb) {
|
|
216
|
+
return this.request("ModifyChannel", req, cb);
|
|
222
217
|
}
|
|
223
218
|
/**
|
|
224
|
-
*
|
|
219
|
+
* 取消收藏插件
|
|
225
220
|
*/
|
|
226
|
-
async
|
|
227
|
-
return this.request("
|
|
221
|
+
async UnfavoritePlugin(req, cb) {
|
|
222
|
+
return this.request("UnfavoritePlugin", req, cb);
|
|
228
223
|
}
|
|
229
224
|
/**
|
|
230
225
|
* 查询 Agent 详情
|
|
@@ -238,18 +233,6 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
238
233
|
async DeleteApp(req, cb) {
|
|
239
234
|
return this.request("DeleteApp", req, cb);
|
|
240
235
|
}
|
|
241
|
-
/**
|
|
242
|
-
* 创建Agent
|
|
243
|
-
*/
|
|
244
|
-
async CreateAgent(req, cb) {
|
|
245
|
-
return this.request("CreateAgent", req, cb);
|
|
246
|
-
}
|
|
247
|
-
/**
|
|
248
|
-
* 修改应用
|
|
249
|
-
*/
|
|
250
|
-
async ModifyApp(req, cb) {
|
|
251
|
-
return this.request("ModifyApp", req, cb);
|
|
252
|
-
}
|
|
253
236
|
/**
|
|
254
237
|
* 查询发布任务
|
|
255
238
|
*/
|
|
@@ -268,18 +251,6 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
268
251
|
async CopyApp(req, cb) {
|
|
269
252
|
return this.request("CopyApp", req, cb);
|
|
270
253
|
}
|
|
271
|
-
/**
|
|
272
|
-
* 修改插件
|
|
273
|
-
*/
|
|
274
|
-
async DeletePlugin(req, cb) {
|
|
275
|
-
return this.request("DeletePlugin", req, cb);
|
|
276
|
-
}
|
|
277
|
-
/**
|
|
278
|
-
* 删除指定的消息记录分类
|
|
279
|
-
*/
|
|
280
|
-
async DeleteMsgRecordCategory(req, cb) {
|
|
281
|
-
return this.request("DeleteMsgRecordCategory", req, cb);
|
|
282
|
-
}
|
|
283
254
|
/**
|
|
284
255
|
* 提交共享 Skill 下架审批(v2,两段式:提交→审批→回调下架共享 Skill) 鉴权:删除权 拒绝场景:未共享 / 上架审批中 / 下架审批中
|
|
285
256
|
*/
|
|
@@ -287,14 +258,7 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
287
258
|
return this.request("DeleteSkillShare", req, cb);
|
|
288
259
|
}
|
|
289
260
|
/**
|
|
290
|
-
|
|
291
|
-
注意:当前Claw模式应用会话不支持重置
|
|
292
|
-
*/
|
|
293
|
-
async ResetConversation(req, cb) {
|
|
294
|
-
return this.request("ResetConversation", req, cb);
|
|
295
|
-
}
|
|
296
|
-
/**
|
|
297
|
-
* 创建Agent
|
|
261
|
+
* 复制 Agent(目前仅支持claw模式))
|
|
298
262
|
*/
|
|
299
263
|
async CopyAgentFromApp(req, cb) {
|
|
300
264
|
return this.request("CopyAgentFromApp", req, cb);
|
|
@@ -311,12 +275,6 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
311
275
|
async CreateSpace(req, cb) {
|
|
312
276
|
return this.request("CreateSpace", req, cb);
|
|
313
277
|
}
|
|
314
|
-
/**
|
|
315
|
-
* 修改指定消息记录分类的名称
|
|
316
|
-
*/
|
|
317
|
-
async ModifyMsgRecordCategory(req, cb) {
|
|
318
|
-
return this.request("ModifyMsgRecordCategory", req, cb);
|
|
319
|
-
}
|
|
320
278
|
/**
|
|
321
279
|
* 创建skill
|
|
322
280
|
*/
|
|
@@ -324,16 +282,10 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
324
282
|
return this.request("CreateSkill", req, cb);
|
|
325
283
|
}
|
|
326
284
|
/**
|
|
327
|
-
*
|
|
328
|
-
*/
|
|
329
|
-
async CreateVariable(req, cb) {
|
|
330
|
-
return this.request("CreateVariable", req, cb);
|
|
331
|
-
}
|
|
332
|
-
/**
|
|
333
|
-
* 获取插件列表
|
|
285
|
+
* 获取渠道列表(scene区分场景)
|
|
334
286
|
*/
|
|
335
|
-
async
|
|
336
|
-
return this.request("
|
|
287
|
+
async DescribeChannelList(req, cb) {
|
|
288
|
+
return this.request("DescribeChannelList", req, cb);
|
|
337
289
|
}
|
|
338
290
|
/**
|
|
339
291
|
* 创建 WebSocket Token
|
|
@@ -342,64 +294,64 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
342
294
|
return this.request("CreateWebSocketToken", req, cb);
|
|
343
295
|
}
|
|
344
296
|
/**
|
|
345
|
-
*
|
|
297
|
+
* 获取空间列表
|
|
346
298
|
*/
|
|
347
|
-
async
|
|
348
|
-
return this.request("
|
|
299
|
+
async DescribeSpaceList(req, cb) {
|
|
300
|
+
return this.request("DescribeSpaceList", req, cb);
|
|
349
301
|
}
|
|
350
302
|
/**
|
|
351
|
-
*
|
|
303
|
+
* 获取审计日志元信息
|
|
352
304
|
*/
|
|
353
|
-
async
|
|
354
|
-
return this.request("
|
|
305
|
+
async DescribeAuditLogMeta(req, cb) {
|
|
306
|
+
return this.request("DescribeAuditLogMeta", req, cb);
|
|
355
307
|
}
|
|
356
308
|
/**
|
|
357
|
-
*
|
|
309
|
+
* 删除自定义 Skill 鉴权:创建者 ∨ (编辑权限 ∧ 删除权限) 拒绝场景:非 Custom 类型 / 已共享 / 安全检测中 / 上架审批中 / 下架审批中
|
|
358
310
|
*/
|
|
359
|
-
async
|
|
360
|
-
return this.request("
|
|
311
|
+
async DeleteSkill(req, cb) {
|
|
312
|
+
return this.request("DeleteSkill", req, cb);
|
|
361
313
|
}
|
|
362
314
|
/**
|
|
363
|
-
*
|
|
315
|
+
* 查询资源调用时序明细,支持模型和插件两类资源,按时间顺序返回每条调用记录的详细信息
|
|
364
316
|
*/
|
|
365
|
-
async
|
|
366
|
-
return this.request("
|
|
317
|
+
async DescribeUsageDetailList(req, cb) {
|
|
318
|
+
return this.request("DescribeUsageDetailList", req, cb);
|
|
367
319
|
}
|
|
368
320
|
/**
|
|
369
|
-
*
|
|
321
|
+
* 获取插件详情
|
|
370
322
|
*/
|
|
371
|
-
async
|
|
372
|
-
return this.request("
|
|
323
|
+
async CreatePlugin(req, cb) {
|
|
324
|
+
return this.request("CreatePlugin", req, cb);
|
|
373
325
|
}
|
|
374
326
|
/**
|
|
375
|
-
*
|
|
327
|
+
* 删除Agent
|
|
376
328
|
*/
|
|
377
|
-
async
|
|
378
|
-
return this.request("
|
|
329
|
+
async DeleteAgent(req, cb) {
|
|
330
|
+
return this.request("DeleteAgent", req, cb);
|
|
379
331
|
}
|
|
380
332
|
/**
|
|
381
|
-
*
|
|
333
|
+
* 删除空间
|
|
382
334
|
*/
|
|
383
|
-
async
|
|
384
|
-
return this.request("
|
|
335
|
+
async DeleteSpace(req, cb) {
|
|
336
|
+
return this.request("DeleteSpace", req, cb);
|
|
385
337
|
}
|
|
386
338
|
/**
|
|
387
|
-
*
|
|
339
|
+
* 收藏插件
|
|
388
340
|
*/
|
|
389
|
-
async
|
|
390
|
-
return this.request("
|
|
341
|
+
async FavoritePlugin(req, cb) {
|
|
342
|
+
return this.request("FavoritePlugin", req, cb);
|
|
391
343
|
}
|
|
392
344
|
/**
|
|
393
|
-
*
|
|
345
|
+
* 查看操作日志列表
|
|
394
346
|
*/
|
|
395
|
-
async
|
|
396
|
-
return this.request("
|
|
347
|
+
async DescribeAuditLogList(req, cb) {
|
|
348
|
+
return this.request("DescribeAuditLogList", req, cb);
|
|
397
349
|
}
|
|
398
350
|
/**
|
|
399
|
-
*
|
|
351
|
+
* 获取参数变量
|
|
400
352
|
*/
|
|
401
|
-
async
|
|
402
|
-
return this.request("
|
|
353
|
+
async DescribeVariable(req, cb) {
|
|
354
|
+
return this.request("DescribeVariable", req, cb);
|
|
403
355
|
}
|
|
404
356
|
/**
|
|
405
357
|
* 收藏skill
|
|
@@ -408,58 +360,70 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
408
360
|
return this.request("FavoriteSkill", req, cb);
|
|
409
361
|
}
|
|
410
362
|
/**
|
|
411
|
-
*
|
|
363
|
+
* RunAppTriggerNow
|
|
412
364
|
*/
|
|
413
|
-
async
|
|
414
|
-
return this.request("
|
|
365
|
+
async RunAppTriggerNow(req, cb) {
|
|
366
|
+
return this.request("RunAppTriggerNow", req, cb);
|
|
415
367
|
}
|
|
416
368
|
/**
|
|
417
|
-
*
|
|
369
|
+
* 发布记录列表
|
|
418
370
|
*/
|
|
419
|
-
async
|
|
420
|
-
return this.request("
|
|
371
|
+
async DescribeReleaseList(req, cb) {
|
|
372
|
+
return this.request("DescribeReleaseList", req, cb);
|
|
421
373
|
}
|
|
422
374
|
/**
|
|
423
|
-
*
|
|
375
|
+
* 创建Agent
|
|
424
376
|
*/
|
|
425
|
-
async
|
|
426
|
-
return this.request("
|
|
377
|
+
async CreateAgent(req, cb) {
|
|
378
|
+
return this.request("CreateAgent", req, cb);
|
|
427
379
|
}
|
|
428
380
|
/**
|
|
429
|
-
*
|
|
381
|
+
* 创建工作空间凭证
|
|
430
382
|
*/
|
|
431
|
-
async
|
|
432
|
-
return this.request("
|
|
383
|
+
async CreateWorkspaceCredential(req, cb) {
|
|
384
|
+
return this.request("CreateWorkspaceCredential", req, cb);
|
|
433
385
|
}
|
|
434
386
|
/**
|
|
435
|
-
*
|
|
387
|
+
* DescribeAppTrigger
|
|
436
388
|
*/
|
|
437
|
-
async
|
|
438
|
-
return this.request("
|
|
389
|
+
async DescribeAppTrigger(req, cb) {
|
|
390
|
+
return this.request("DescribeAppTrigger", req, cb);
|
|
439
391
|
}
|
|
440
392
|
/**
|
|
441
|
-
*
|
|
393
|
+
* 获取插件详情
|
|
442
394
|
*/
|
|
443
|
-
async
|
|
444
|
-
return this.request("
|
|
395
|
+
async DescribePlugin(req, cb) {
|
|
396
|
+
return this.request("DescribePlugin", req, cb);
|
|
445
397
|
}
|
|
446
398
|
/**
|
|
447
|
-
*
|
|
399
|
+
* 查询 Skill 列表
|
|
448
400
|
*/
|
|
449
|
-
async
|
|
450
|
-
return this.request("
|
|
401
|
+
async DescribeSkillSummaryList(req, cb) {
|
|
402
|
+
return this.request("DescribeSkillSummaryList", req, cb);
|
|
451
403
|
}
|
|
452
404
|
/**
|
|
453
|
-
*
|
|
405
|
+
* 创建应用
|
|
454
406
|
*/
|
|
455
|
-
async
|
|
456
|
-
return this.request("
|
|
407
|
+
async CreateApp(req, cb) {
|
|
408
|
+
return this.request("CreateApp", req, cb);
|
|
457
409
|
}
|
|
458
410
|
/**
|
|
459
|
-
*
|
|
411
|
+
* 查询并发超限明细,包含QPM/TPM超限与专属并发超限记录,返回超限发生时间、空间、应用、模型及请求内容
|
|
460
412
|
*/
|
|
461
|
-
async
|
|
462
|
-
return this.request("
|
|
413
|
+
async DescribeConcurrencyLimitDetailList(req, cb) {
|
|
414
|
+
return this.request("DescribeConcurrencyLimitDetailList", req, cb);
|
|
415
|
+
}
|
|
416
|
+
/**
|
|
417
|
+
* 查看企业下的员工列表
|
|
418
|
+
*/
|
|
419
|
+
async DescribeAccountList(req, cb) {
|
|
420
|
+
return this.request("DescribeAccountList", req, cb);
|
|
421
|
+
}
|
|
422
|
+
/**
|
|
423
|
+
* DescribeAppTriggerRunLogList
|
|
424
|
+
*/
|
|
425
|
+
async DescribeAppTriggerRunLogList(req, cb) {
|
|
426
|
+
return this.request("DescribeAppTriggerRunLogList", req, cb);
|
|
463
427
|
}
|
|
464
428
|
/**
|
|
465
429
|
* 重试发布(发布暂停之后再次重新发布)
|
|
@@ -468,28 +432,100 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
468
432
|
return this.request("RetryRelease", req, cb);
|
|
469
433
|
}
|
|
470
434
|
/**
|
|
471
|
-
*
|
|
435
|
+
* ModifyAppTrigger
|
|
472
436
|
*/
|
|
473
|
-
async
|
|
474
|
-
return this.request("
|
|
437
|
+
async ModifyAppTrigger(req, cb) {
|
|
438
|
+
return this.request("ModifyAppTrigger", req, cb);
|
|
475
439
|
}
|
|
476
440
|
/**
|
|
477
|
-
*
|
|
441
|
+
* 获取系统变量
|
|
478
442
|
*/
|
|
479
|
-
async
|
|
480
|
-
return this.request("
|
|
443
|
+
async DescribeSystemVariableList(req, cb) {
|
|
444
|
+
return this.request("DescribeSystemVariableList", req, cb);
|
|
481
445
|
}
|
|
482
446
|
/**
|
|
483
|
-
*
|
|
447
|
+
* 查看会话信息
|
|
484
448
|
*/
|
|
485
|
-
async
|
|
486
|
-
return this.request("
|
|
449
|
+
async DescribeConversation(req, cb) {
|
|
450
|
+
return this.request("DescribeConversation", req, cb);
|
|
487
451
|
}
|
|
488
452
|
/**
|
|
489
|
-
*
|
|
453
|
+
* 创建一条消息记录分类,支持指定分类名称与父分类(ParentId 为 0 时表示一级分类)
|
|
490
454
|
*/
|
|
491
|
-
async
|
|
492
|
-
return this.request("
|
|
455
|
+
async CreateMsgRecordCategory(req, cb) {
|
|
456
|
+
return this.request("CreateMsgRecordCategory", req, cb);
|
|
457
|
+
}
|
|
458
|
+
/**
|
|
459
|
+
* 上架skill
|
|
460
|
+
*/
|
|
461
|
+
async ReleaseSkill(req, cb) {
|
|
462
|
+
return this.request("ReleaseSkill", req, cb);
|
|
463
|
+
}
|
|
464
|
+
/**
|
|
465
|
+
* 修改应用
|
|
466
|
+
*/
|
|
467
|
+
async ModifyApp(req, cb) {
|
|
468
|
+
return this.request("ModifyApp", req, cb);
|
|
469
|
+
}
|
|
470
|
+
/**
|
|
471
|
+
* DescribeAppTriggerSummaryList
|
|
472
|
+
*/
|
|
473
|
+
async DescribeAppTriggerSummaryList(req, cb) {
|
|
474
|
+
return this.request("DescribeAppTriggerSummaryList", req, cb);
|
|
475
|
+
}
|
|
476
|
+
/**
|
|
477
|
+
* 查询某个 Skill 被引用的详情列表(按 SkillRefType 分组:OpenClaw / cloud agent / 企业助手 agent) 鉴权:同 DescribeSkillDetail(能看该 Skill 即可查)
|
|
478
|
+
*/
|
|
479
|
+
async DescribeSkillReferenceList(req, cb) {
|
|
480
|
+
return this.request("DescribeSkillReferenceList", req, cb);
|
|
481
|
+
}
|
|
482
|
+
/**
|
|
483
|
+
* 新建会话
|
|
484
|
+
*/
|
|
485
|
+
async CreateConversation(req, cb) {
|
|
486
|
+
return this.request("CreateConversation", req, cb);
|
|
487
|
+
}
|
|
488
|
+
/**
|
|
489
|
+
* 修改插件
|
|
490
|
+
*/
|
|
491
|
+
async DeletePlugin(req, cb) {
|
|
492
|
+
return this.request("DeletePlugin", req, cb);
|
|
493
|
+
}
|
|
494
|
+
/**
|
|
495
|
+
* 查询应用的消息记录分类树,返回分类及子分类、各分类下记录数量与操作权限
|
|
496
|
+
*/
|
|
497
|
+
async DescribeMsgRecordCategoryList(req, cb) {
|
|
498
|
+
return this.request("DescribeMsgRecordCategoryList", req, cb);
|
|
499
|
+
}
|
|
500
|
+
/**
|
|
501
|
+
* 删除参数变量
|
|
502
|
+
*/
|
|
503
|
+
async DeleteVariable(req, cb) {
|
|
504
|
+
return this.request("DeleteVariable", req, cb);
|
|
505
|
+
}
|
|
506
|
+
/**
|
|
507
|
+
* 获取参数变量列表
|
|
508
|
+
*/
|
|
509
|
+
async DescribeVariableList(req, cb) {
|
|
510
|
+
return this.request("DescribeVariableList", req, cb);
|
|
511
|
+
}
|
|
512
|
+
/**
|
|
513
|
+
* 更新参数变量
|
|
514
|
+
*/
|
|
515
|
+
async ModifyVariable(req, cb) {
|
|
516
|
+
return this.request("ModifyVariable", req, cb);
|
|
517
|
+
}
|
|
518
|
+
/**
|
|
519
|
+
* 查询资源用量聚合明细,支持模型、插件、平台三类资源,按空间/应用维度聚合展示调用次数、Token消耗等指标
|
|
520
|
+
*/
|
|
521
|
+
async DescribeUsageSummaryList(req, cb) {
|
|
522
|
+
return this.request("DescribeUsageSummaryList", req, cb);
|
|
523
|
+
}
|
|
524
|
+
/**
|
|
525
|
+
* 获取会话历史消息
|
|
526
|
+
*/
|
|
527
|
+
async DescribeConversationMessageList(req, cb) {
|
|
528
|
+
return this.request("DescribeConversationMessageList", req, cb);
|
|
493
529
|
}
|
|
494
530
|
/**
|
|
495
531
|
* 查询 Skill 分类列表
|
|
@@ -503,12 +539,6 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
503
539
|
async DescribeLatestRelease(req, cb) {
|
|
504
540
|
return this.request("DescribeLatestRelease", req, cb);
|
|
505
541
|
}
|
|
506
|
-
/**
|
|
507
|
-
* 查询资源消耗明细,包含计费相关字段(消耗类型、消耗目标、消耗场景、套餐包及PU消耗等)
|
|
508
|
-
*/
|
|
509
|
-
async DescribeConsumptionDetailList(req, cb) {
|
|
510
|
-
return this.request("DescribeConsumptionDetailList", req, cb);
|
|
511
|
-
}
|
|
512
542
|
/**
|
|
513
543
|
* 删除会话
|
|
514
544
|
*/
|