tencentcloud-sdk-nodejs-adp 4.1.272 → 4.1.273
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/package.json
CHANGED
|
@@ -355,6 +355,15 @@ export interface DeleteSkillShareRequest {
|
|
|
355
355
|
*/
|
|
356
356
|
VersionId: string;
|
|
357
357
|
}
|
|
358
|
+
/**
|
|
359
|
+
* 工具信息
|
|
360
|
+
*/
|
|
361
|
+
export interface ToolSummary {
|
|
362
|
+
/**
|
|
363
|
+
* <p>工具Id</p>
|
|
364
|
+
*/
|
|
365
|
+
ToolId?: string;
|
|
366
|
+
}
|
|
358
367
|
/**
|
|
359
368
|
* 生成模型配置
|
|
360
369
|
*/
|
|
@@ -1399,8 +1408,14 @@ export interface DescribeConversationMessageListResponse {
|
|
|
1399
1408
|
MessageList?: Array<ConversationMessage>;
|
|
1400
1409
|
/**
|
|
1401
1410
|
* <p>消息列表</p>
|
|
1411
|
+
* @deprecated
|
|
1402
1412
|
*/
|
|
1403
1413
|
Messages?: Array<ConversationMessage>;
|
|
1414
|
+
/**
|
|
1415
|
+
* <p>最近一次重置信息</p>
|
|
1416
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1417
|
+
*/
|
|
1418
|
+
ResetInfo?: ConversationResetInfo;
|
|
1404
1419
|
/**
|
|
1405
1420
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1406
1421
|
*/
|
|
@@ -2194,25 +2209,17 @@ export interface SkillReferenceGroup {
|
|
|
2194
2209
|
TotalCount?: number;
|
|
2195
2210
|
}
|
|
2196
2211
|
/**
|
|
2197
|
-
*
|
|
2212
|
+
* 会话重置信息
|
|
2198
2213
|
*/
|
|
2199
|
-
export interface
|
|
2200
|
-
/**
|
|
2201
|
-
* API密钥
|
|
2202
|
-
*/
|
|
2203
|
-
ApiKey: string;
|
|
2214
|
+
export interface ConversationResetInfo {
|
|
2204
2215
|
/**
|
|
2205
|
-
*
|
|
2216
|
+
* <p>最近一次重置的毫秒级时间戳</p>
|
|
2206
2217
|
*/
|
|
2207
|
-
|
|
2218
|
+
ResetTime?: string;
|
|
2208
2219
|
/**
|
|
2209
|
-
*
|
|
2220
|
+
* <p>最近一次重置边界;该记录及更早的记录不再作为对话上下文</p>
|
|
2210
2221
|
*/
|
|
2211
|
-
|
|
2212
|
-
/**
|
|
2213
|
-
* 返回结果数量
|
|
2214
|
-
*/
|
|
2215
|
-
TopN: number;
|
|
2222
|
+
ResetThroughRecordId?: string;
|
|
2216
2223
|
}
|
|
2217
2224
|
/**
|
|
2218
2225
|
* Agent 可编辑配置
|
|
@@ -3142,6 +3149,10 @@ export interface PluginSummary {
|
|
|
3142
3149
|
* <p>插件配置信息</p>
|
|
3143
3150
|
*/
|
|
3144
3151
|
Config?: PluginConfig;
|
|
3152
|
+
/**
|
|
3153
|
+
* <p>工具信息</p>
|
|
3154
|
+
*/
|
|
3155
|
+
ToolList?: Array<ToolSummary>;
|
|
3145
3156
|
}
|
|
3146
3157
|
/**
|
|
3147
3158
|
* CreatePlugin请求参数结构体
|
|
@@ -3230,6 +3241,27 @@ export interface OAuthConfig {
|
|
|
3230
3241
|
*/
|
|
3231
3242
|
TokenUrl?: string;
|
|
3232
3243
|
}
|
|
3244
|
+
/**
|
|
3245
|
+
* 联网搜索配置(国际版使用)
|
|
3246
|
+
*/
|
|
3247
|
+
export interface AppWebSearchConfig {
|
|
3248
|
+
/**
|
|
3249
|
+
* API密钥
|
|
3250
|
+
*/
|
|
3251
|
+
ApiKey: string;
|
|
3252
|
+
/**
|
|
3253
|
+
* 是否开启
|
|
3254
|
+
*/
|
|
3255
|
+
Enabled: boolean;
|
|
3256
|
+
/**
|
|
3257
|
+
* 服务提供商
|
|
3258
|
+
*/
|
|
3259
|
+
Provider: string;
|
|
3260
|
+
/**
|
|
3261
|
+
* 返回结果数量
|
|
3262
|
+
*/
|
|
3263
|
+
TopN: number;
|
|
3264
|
+
}
|
|
3233
3265
|
/**
|
|
3234
3266
|
* CopyAgentFromApp返回参数结构体
|
|
3235
3267
|
*/
|
|
@@ -3596,7 +3628,7 @@ export interface CreateVariableResponse {
|
|
|
3596
3628
|
RequestId?: string;
|
|
3597
3629
|
}
|
|
3598
3630
|
/**
|
|
3599
|
-
* 列表通用过滤条件(多个Filter之间为AND关系,同一Filter的多个value_list为OR关系)
|
|
3631
|
+
* 列表通用过滤条件(多个 Filter 之间为 AND 关系,同一 Filter 的多个 value_list 为 OR 关系)
|
|
3600
3632
|
*/
|
|
3601
3633
|
export interface Filter {
|
|
3602
3634
|
/**
|
|
@@ -3604,7 +3636,7 @@ export interface Filter {
|
|
|
3604
3636
|
*/
|
|
3605
3637
|
Name?: string;
|
|
3606
3638
|
/**
|
|
3607
|
-
*
|
|
3639
|
+
* 操作符,默认 IN(向后兼容)<table><tr><td>枚举项</td><td>枚举值</td><td>描述</td></tr><tr><td>FILTER_OPERATOR_IN</td><td>0</td><td>属于 value_list(默认值,向后兼容;value_list 不可为空)</td></tr><tr><td>FILTER_OPERATOR_NOT_IN</td><td>1</td><td>不属于 value_list(value_list 不可为空)</td></tr></table>
|
|
3608
3640
|
*/
|
|
3609
3641
|
Operator?: number;
|
|
3610
3642
|
/**
|
|
@@ -4027,6 +4059,10 @@ export interface DescribePluginRequest {
|
|
|
4027
4059
|
* <p>获取指定字段</p>
|
|
4028
4060
|
*/
|
|
4029
4061
|
FieldMask?: FieldMask;
|
|
4062
|
+
/**
|
|
4063
|
+
* <p>插件展示场景。不传或取 0 时不限定场景。</p><p>枚举值:</p><ul><li>0:不限定场景</li><li>1:Agent 模式</li><li>2:工作流</li><li>3:智能工作台</li></ul>
|
|
4064
|
+
*/
|
|
4065
|
+
Module?: number;
|
|
4030
4066
|
}
|
|
4031
4067
|
/**
|
|
4032
4068
|
* DescribeSystemVariableList请求参数结构体
|