tencentcloud-sdk-lke 3.0.1172 → 3.0.1183
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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20231130/client.rb +2 -2
- data/lib/v20231130/models.rb +157 -55
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a1356d0ab24df0e3f1f59981e30cef4de66eb108
|
|
4
|
+
data.tar.gz: 8f8e8d89f18d33bb75c8f1fae4b630b4a90e5f8f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a477bee04ffd16c3604f3d53f677632d6c91272910e798a8be6bfb65a5865128d3c77ff8c9f2b060fa6ed3e15c5a09f9103761f1910025a83ebfa72abcfaa8cd
|
|
7
|
+
data.tar.gz: 68f53275273262e61790b86b4dd25a93182afca595c6ce0eda067e43755da84ecf075f8039b73a17e42f7fe3eea5c3316b03f492f02144c2e7e3183eac244a62
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1183
|
data/lib/v20231130/client.rb
CHANGED
|
@@ -1110,7 +1110,7 @@ module TencentCloud
|
|
|
1110
1110
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1111
1111
|
end
|
|
1112
1112
|
|
|
1113
|
-
#
|
|
1113
|
+
# 导出标签
|
|
1114
1114
|
|
|
1115
1115
|
# @param request: Request instance for ExportAttributeLabel.
|
|
1116
1116
|
# @type request: :class:`Tencentcloud::lke::V20231130::ExportAttributeLabelRequest`
|
|
@@ -1903,7 +1903,7 @@ module TencentCloud
|
|
|
1903
1903
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
1904
1904
|
end
|
|
1905
1905
|
|
|
1906
|
-
#
|
|
1906
|
+
# 获取文档下拉列表。
|
|
1907
1907
|
|
|
1908
1908
|
# @param request: Request instance for ListSelectDoc.
|
|
1909
1909
|
# @type request: :class:`Tencentcloud::lke::V20231130::ListSelectDocRequest`
|
data/lib/v20231130/models.rb
CHANGED
|
@@ -213,6 +213,22 @@ module TencentCloud
|
|
|
213
213
|
end
|
|
214
214
|
end
|
|
215
215
|
|
|
216
|
+
# Agent转交高级设置
|
|
217
|
+
class AgentHandoffAdvancedSetting < TencentCloud::Common::AbstractModel
|
|
218
|
+
# @param ConversationPolicy: 对话流转策略;0-由上一轮回复用户的 Agent 继续发起,1- 回到主Agent
|
|
219
|
+
# @type ConversationPolicy: Integer
|
|
220
|
+
|
|
221
|
+
attr_accessor :ConversationPolicy
|
|
222
|
+
|
|
223
|
+
def initialize(conversationpolicy=nil)
|
|
224
|
+
@ConversationPolicy = conversationpolicy
|
|
225
|
+
end
|
|
226
|
+
|
|
227
|
+
def deserialize(params)
|
|
228
|
+
@ConversationPolicy = params['ConversationPolicy']
|
|
229
|
+
end
|
|
230
|
+
end
|
|
231
|
+
|
|
216
232
|
# Agent输入值,支持直接赋值和引用
|
|
217
233
|
class AgentInput < TencentCloud::Common::AbstractModel
|
|
218
234
|
# @param InputType: 输入来源类型:0 用户输入,3 自定义变量(API参数)
|
|
@@ -1043,10 +1059,12 @@ module TencentCloud
|
|
|
1043
1059
|
# @type FinanceStatus: Integer
|
|
1044
1060
|
# @param ToolSource: 工具来源: 0-来自插件,1-来自工作流
|
|
1045
1061
|
# @type ToolSource: Integer
|
|
1062
|
+
# @param FinanceType: 计费状态;0-不计费,1-限时免费,2-官方收费
|
|
1063
|
+
# @type FinanceType: Integer
|
|
1046
1064
|
|
|
1047
|
-
attr_accessor :PluginId, :PluginName, :IconUrl, :PluginType, :ToolId, :ToolName, :ToolDesc, :Inputs, :Outputs, :CreateType, :McpServer, :IsBindingKnowledge, :Status, :Headers, :CallingMethod, :Query, :FinanceStatus, :ToolSource
|
|
1065
|
+
attr_accessor :PluginId, :PluginName, :IconUrl, :PluginType, :ToolId, :ToolName, :ToolDesc, :Inputs, :Outputs, :CreateType, :McpServer, :IsBindingKnowledge, :Status, :Headers, :CallingMethod, :Query, :FinanceStatus, :ToolSource, :FinanceType
|
|
1048
1066
|
|
|
1049
|
-
def initialize(pluginid=nil, pluginname=nil, iconurl=nil, plugintype=nil, toolid=nil, toolname=nil, tooldesc=nil, inputs=nil, outputs=nil, createtype=nil, mcpserver=nil, isbindingknowledge=nil, status=nil, headers=nil, callingmethod=nil, query=nil, financestatus=nil, toolsource=nil)
|
|
1067
|
+
def initialize(pluginid=nil, pluginname=nil, iconurl=nil, plugintype=nil, toolid=nil, toolname=nil, tooldesc=nil, inputs=nil, outputs=nil, createtype=nil, mcpserver=nil, isbindingknowledge=nil, status=nil, headers=nil, callingmethod=nil, query=nil, financestatus=nil, toolsource=nil, financetype=nil)
|
|
1050
1068
|
@PluginId = pluginid
|
|
1051
1069
|
@PluginName = pluginname
|
|
1052
1070
|
@IconUrl = iconurl
|
|
@@ -1065,6 +1083,7 @@ module TencentCloud
|
|
|
1065
1083
|
@Query = query
|
|
1066
1084
|
@FinanceStatus = financestatus
|
|
1067
1085
|
@ToolSource = toolsource
|
|
1086
|
+
@FinanceType = financetype
|
|
1068
1087
|
end
|
|
1069
1088
|
|
|
1070
1089
|
def deserialize(params)
|
|
@@ -1117,6 +1136,7 @@ module TencentCloud
|
|
|
1117
1136
|
end
|
|
1118
1137
|
@FinanceStatus = params['FinanceStatus']
|
|
1119
1138
|
@ToolSource = params['ToolSource']
|
|
1139
|
+
@FinanceType = params['FinanceType']
|
|
1120
1140
|
end
|
|
1121
1141
|
end
|
|
1122
1142
|
|
|
@@ -1492,6 +1512,37 @@ module TencentCloud
|
|
|
1492
1512
|
end
|
|
1493
1513
|
end
|
|
1494
1514
|
|
|
1515
|
+
# 模型详情
|
|
1516
|
+
class AppModelDetailInfo < TencentCloud::Common::AbstractModel
|
|
1517
|
+
# @param ModelName: 模型名称
|
|
1518
|
+
# @type ModelName: String
|
|
1519
|
+
# @param ModelParams: 模型参数
|
|
1520
|
+
# @type ModelParams: :class:`Tencentcloud::Lke.v20231130.models.ModelParams`
|
|
1521
|
+
# @param HistoryLimit: 限制
|
|
1522
|
+
# @type HistoryLimit: Integer
|
|
1523
|
+
# @param AliasName: 模型别名
|
|
1524
|
+
# @type AliasName: String
|
|
1525
|
+
|
|
1526
|
+
attr_accessor :ModelName, :ModelParams, :HistoryLimit, :AliasName
|
|
1527
|
+
|
|
1528
|
+
def initialize(modelname=nil, modelparams=nil, historylimit=nil, aliasname=nil)
|
|
1529
|
+
@ModelName = modelname
|
|
1530
|
+
@ModelParams = modelparams
|
|
1531
|
+
@HistoryLimit = historylimit
|
|
1532
|
+
@AliasName = aliasname
|
|
1533
|
+
end
|
|
1534
|
+
|
|
1535
|
+
def deserialize(params)
|
|
1536
|
+
@ModelName = params['ModelName']
|
|
1537
|
+
unless params['ModelParams'].nil?
|
|
1538
|
+
@ModelParams = ModelParams.new
|
|
1539
|
+
@ModelParams.deserialize(params['ModelParams'])
|
|
1540
|
+
end
|
|
1541
|
+
@HistoryLimit = params['HistoryLimit']
|
|
1542
|
+
@AliasName = params['AliasName']
|
|
1543
|
+
end
|
|
1544
|
+
end
|
|
1545
|
+
|
|
1495
1546
|
# 标签详情信息
|
|
1496
1547
|
class AttrLabel < TencentCloud::Common::AbstractModel
|
|
1497
1548
|
# @param Source: 标签来源
|
|
@@ -1553,7 +1604,7 @@ module TencentCloud
|
|
|
1553
1604
|
# @param IsUpdating: 标签是否在更新中
|
|
1554
1605
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
1555
1606
|
# @type IsUpdating: Boolean
|
|
1556
|
-
# @param Status:
|
|
1607
|
+
# @param Status: 发布状态(1 待发布 2 发布中 3 已发布 4 发布失败)
|
|
1557
1608
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
1558
1609
|
# @type Status: Integer
|
|
1559
1610
|
# @param StatusDesc: 状态描述
|
|
@@ -1563,6 +1614,9 @@ module TencentCloud
|
|
|
1563
1614
|
# @type LabelTotalCount: String
|
|
1564
1615
|
|
|
1565
1616
|
attr_accessor :AttrBizId, :AttrKey, :AttrName, :LabelNames, :IsUpdating, :Status, :StatusDesc, :LabelTotalCount
|
|
1617
|
+
extend Gem::Deprecate
|
|
1618
|
+
deprecate :AttrKey, :none, 2025, 12
|
|
1619
|
+
deprecate :AttrKey=, :none, 2025, 12
|
|
1566
1620
|
|
|
1567
1621
|
def initialize(attrbizid=nil, attrkey=nil, attrname=nil, labelnames=nil, isupdating=nil, status=nil, statusdesc=nil, labeltotalcount=nil)
|
|
1568
1622
|
@AttrBizId = attrbizid
|
|
@@ -1933,17 +1987,17 @@ module TencentCloud
|
|
|
1933
1987
|
|
|
1934
1988
|
# CheckAttributeLabelExist请求参数结构体
|
|
1935
1989
|
class CheckAttributeLabelExistRequest < TencentCloud::Common::AbstractModel
|
|
1936
|
-
# @param BotBizId: 应用ID
|
|
1990
|
+
# @param BotBizId: 应用ID,获取方法参看如何获取[BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa)
|
|
1937
1991
|
# @type BotBizId: String
|
|
1938
|
-
# @param LabelName:
|
|
1992
|
+
# @param LabelName: 标签名称
|
|
1939
1993
|
# @type LabelName: String
|
|
1940
|
-
# @param AttributeBizId:
|
|
1994
|
+
# @param AttributeBizId: 标签ID
|
|
1941
1995
|
# @type AttributeBizId: String
|
|
1942
1996
|
# @param LoginUin: 登录用户主账号(集成商模式必填)
|
|
1943
1997
|
# @type LoginUin: String
|
|
1944
1998
|
# @param LoginSubAccountUin: 登录用户子账号(集成商模式必填)
|
|
1945
1999
|
# @type LoginSubAccountUin: String
|
|
1946
|
-
# @param LastLabelBizId:
|
|
2000
|
+
# @param LastLabelBizId: 最后一个标签ID。用于滚动加载:是一种分批、滚动式的存在性检查机制。客户端需要持续调用接口,并每次传入上一次返回的最后一个记录的ID,直到接口明确返回“存在”或“已检查全部数据且不存在”为止。
|
|
1947
2001
|
# @type LastLabelBizId: String
|
|
1948
2002
|
|
|
1949
2003
|
attr_accessor :BotBizId, :LabelName, :AttributeBizId, :LoginUin, :LoginSubAccountUin, :LastLabelBizId
|
|
@@ -1989,15 +2043,15 @@ module TencentCloud
|
|
|
1989
2043
|
|
|
1990
2044
|
# CheckAttributeLabelRefer请求参数结构体
|
|
1991
2045
|
class CheckAttributeLabelReferRequest < TencentCloud::Common::AbstractModel
|
|
1992
|
-
# @param BotBizId: 应用ID
|
|
2046
|
+
# @param BotBizId: 应用ID,获取方法参看如何获取[BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa)
|
|
1993
2047
|
# @type BotBizId: String
|
|
1994
2048
|
# @param LoginUin: 登录用户主账号(集成商模式必填)
|
|
1995
2049
|
# @type LoginUin: String
|
|
1996
2050
|
# @param LoginSubAccountUin: 登录用户子账号(集成商模式必填)
|
|
1997
2051
|
# @type LoginSubAccountUin: String
|
|
1998
|
-
# @param LabelBizId: 属性标签
|
|
2052
|
+
# @param LabelBizId: 属性标签ID
|
|
1999
2053
|
# @type LabelBizId: String
|
|
2000
|
-
# @param AttributeBizId:
|
|
2054
|
+
# @param AttributeBizId: 标签ID
|
|
2001
2055
|
# @type AttributeBizId: Array
|
|
2002
2056
|
|
|
2003
2057
|
attr_accessor :BotBizId, :LoginUin, :LoginSubAccountUin, :LabelBizId, :AttributeBizId
|
|
@@ -2228,7 +2282,7 @@ module TencentCloud
|
|
|
2228
2282
|
|
|
2229
2283
|
# CreateAttributeLabel请求参数结构体
|
|
2230
2284
|
class CreateAttributeLabelRequest < TencentCloud::Common::AbstractModel
|
|
2231
|
-
# @param BotBizId: 应用ID
|
|
2285
|
+
# @param BotBizId: 应用ID,获取方法参看如何获取[BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa)
|
|
2232
2286
|
# @type BotBizId: String
|
|
2233
2287
|
# @param AttrName: 标签名
|
|
2234
2288
|
# @type AttrName: String
|
|
@@ -2501,12 +2555,12 @@ module TencentCloud
|
|
|
2501
2555
|
|
|
2502
2556
|
# CreateRejectedQuestion请求参数结构体
|
|
2503
2557
|
class CreateRejectedQuestionRequest < TencentCloud::Common::AbstractModel
|
|
2504
|
-
# @param BotBizId: 应用ID
|
|
2558
|
+
# @param BotBizId: 应用ID, 获取方式参看如何获取[BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa)
|
|
2505
2559
|
# @type BotBizId: String
|
|
2506
2560
|
# @param Question: 拒答问题
|
|
2507
2561
|
|
|
2508
2562
|
# @type Question: String
|
|
2509
|
-
# @param BusinessSource:
|
|
2563
|
+
# @param BusinessSource: 拒答问题来源, 1- 来源于不满意回复; 2 - 来源于手动添加
|
|
2510
2564
|
# @type BusinessSource: Integer
|
|
2511
2565
|
# @param BusinessId: 拒答问题来源的数据源唯一id
|
|
2512
2566
|
|
|
@@ -2602,8 +2656,8 @@ module TencentCloud
|
|
|
2602
2656
|
|
|
2603
2657
|
attr_accessor :KnowledgeName, :KnowledgeDescription, :EmbeddingModel, :KnowledgeType
|
|
2604
2658
|
extend Gem::Deprecate
|
|
2605
|
-
deprecate :EmbeddingModel, :none, 2025,
|
|
2606
|
-
deprecate :EmbeddingModel=, :none, 2025,
|
|
2659
|
+
deprecate :EmbeddingModel, :none, 2025, 12
|
|
2660
|
+
deprecate :EmbeddingModel=, :none, 2025, 12
|
|
2607
2661
|
|
|
2608
2662
|
def initialize(knowledgename=nil, knowledgedescription=nil, embeddingmodel=nil, knowledgetype=nil)
|
|
2609
2663
|
@KnowledgeName = knowledgename
|
|
@@ -2912,7 +2966,7 @@ module TencentCloud
|
|
|
2912
2966
|
|
|
2913
2967
|
# DeleteAttributeLabel请求参数结构体
|
|
2914
2968
|
class DeleteAttributeLabelRequest < TencentCloud::Common::AbstractModel
|
|
2915
|
-
# @param BotBizId: 应用ID
|
|
2969
|
+
# @param BotBizId: 应用ID,获取方法参看如何获取[BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa)
|
|
2916
2970
|
# @type BotBizId: String
|
|
2917
2971
|
# @param AttributeBizIds: 标签ID
|
|
2918
2972
|
# @type AttributeBizIds: Array
|
|
@@ -3100,7 +3154,7 @@ module TencentCloud
|
|
|
3100
3154
|
|
|
3101
3155
|
# DeleteRejectedQuestion请求参数结构体
|
|
3102
3156
|
class DeleteRejectedQuestionRequest < TencentCloud::Common::AbstractModel
|
|
3103
|
-
# @param BotBizId: 应用ID
|
|
3157
|
+
# @param BotBizId: 应用ID, 获取方法参看如何获取 [BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa)。
|
|
3104
3158
|
# @type BotBizId: String
|
|
3105
3159
|
# @param RejectedBizIds: 拒答问题来源的数据源唯一id
|
|
3106
3160
|
|
|
@@ -3234,14 +3288,17 @@ module TencentCloud
|
|
|
3234
3288
|
# @type StaringAgentId: String
|
|
3235
3289
|
# @param Agents: 应用Agent信息列表
|
|
3236
3290
|
# @type Agents: Array
|
|
3291
|
+
# @param HandoffAdvancedSetting: Agent转交高级设置
|
|
3292
|
+
# @type HandoffAdvancedSetting: :class:`Tencentcloud::Lke.v20231130.models.AgentHandoffAdvancedSetting`
|
|
3237
3293
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3238
3294
|
# @type RequestId: String
|
|
3239
3295
|
|
|
3240
|
-
attr_accessor :StaringAgentId, :Agents, :RequestId
|
|
3296
|
+
attr_accessor :StaringAgentId, :Agents, :HandoffAdvancedSetting, :RequestId
|
|
3241
3297
|
|
|
3242
|
-
def initialize(staringagentid=nil, agents=nil, requestid=nil)
|
|
3298
|
+
def initialize(staringagentid=nil, agents=nil, handoffadvancedsetting=nil, requestid=nil)
|
|
3243
3299
|
@StaringAgentId = staringagentid
|
|
3244
3300
|
@Agents = agents
|
|
3301
|
+
@HandoffAdvancedSetting = handoffadvancedsetting
|
|
3245
3302
|
@RequestId = requestid
|
|
3246
3303
|
end
|
|
3247
3304
|
|
|
@@ -3255,6 +3312,10 @@ module TencentCloud
|
|
|
3255
3312
|
@Agents << agent_tmp
|
|
3256
3313
|
end
|
|
3257
3314
|
end
|
|
3315
|
+
unless params['HandoffAdvancedSetting'].nil?
|
|
3316
|
+
@HandoffAdvancedSetting = AgentHandoffAdvancedSetting.new
|
|
3317
|
+
@HandoffAdvancedSetting.deserialize(params['HandoffAdvancedSetting'])
|
|
3318
|
+
end
|
|
3258
3319
|
@RequestId = params['RequestId']
|
|
3259
3320
|
end
|
|
3260
3321
|
end
|
|
@@ -3367,19 +3428,19 @@ module TencentCloud
|
|
|
3367
3428
|
|
|
3368
3429
|
# DescribeAttributeLabel请求参数结构体
|
|
3369
3430
|
class DescribeAttributeLabelRequest < TencentCloud::Common::AbstractModel
|
|
3370
|
-
# @param BotBizId: 应用ID
|
|
3431
|
+
# @param BotBizId: 应用ID,获取方法参看如何获取[BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa)
|
|
3371
3432
|
# @type BotBizId: String
|
|
3372
|
-
# @param AttributeBizId:
|
|
3433
|
+
# @param AttributeBizId: 标签ID
|
|
3373
3434
|
# @type AttributeBizId: String
|
|
3374
|
-
# @param Limit:
|
|
3435
|
+
# @param Limit: 每次请求返回的最大标签数量,限制单次接口返回的标签数量,避免数据量过大。取值范围:大于0。
|
|
3375
3436
|
# @type Limit: Integer
|
|
3376
3437
|
# @param LoginUin: 登录用户主账号(集成商模式必填)
|
|
3377
3438
|
# @type LoginUin: String
|
|
3378
3439
|
# @param LoginSubAccountUin: 登录用户子账号(集成商模式必填)
|
|
3379
3440
|
# @type LoginSubAccountUin: String
|
|
3380
|
-
# @param Query:
|
|
3441
|
+
# @param Query: 搜索关键词,用于查询标签标准词或相似词
|
|
3381
3442
|
# @type Query: String
|
|
3382
|
-
# @param LastLabelBizId:
|
|
3443
|
+
# @param LastLabelBizId: 滚动加载游标,上一次请求返回的最后一个标签ID
|
|
3383
3444
|
# @type LastLabelBizId: String
|
|
3384
3445
|
# @param QueryScope: 查询范围 all(或者传空):标准词和相似词 standard:标准词 similar:相似词
|
|
3385
3446
|
# @type QueryScope: String
|
|
@@ -4844,9 +4905,9 @@ module TencentCloud
|
|
|
4844
4905
|
|
|
4845
4906
|
# DescribeUnsatisfiedReplyContext请求参数结构体
|
|
4846
4907
|
class DescribeUnsatisfiedReplyContextRequest < TencentCloud::Common::AbstractModel
|
|
4847
|
-
# @param BotBizId: 应用ID
|
|
4908
|
+
# @param BotBizId: 应用ID,获取方法参看如何获取[BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa)
|
|
4848
4909
|
# @type BotBizId: String
|
|
4849
|
-
# @param ReplyBizId: 回复ID
|
|
4910
|
+
# @param ReplyBizId: 回复ID,调用这个接口获得:[ListUnsatisfiedReply](https://capi.woa.com/api/detail?product=lke&version=2023-11-30&action=ListUnsatisfiedReply)
|
|
4850
4911
|
# @type ReplyBizId: String
|
|
4851
4912
|
# @param LoginUin: 登录用户主账号(集成商模式必填)
|
|
4852
4913
|
# @type LoginUin: String
|
|
@@ -4900,7 +4961,7 @@ module TencentCloud
|
|
|
4900
4961
|
|
|
4901
4962
|
# DescribeWorkflowRun请求参数结构体
|
|
4902
4963
|
class DescribeWorkflowRunRequest < TencentCloud::Common::AbstractModel
|
|
4903
|
-
# @param AppBizId: 应用ID
|
|
4964
|
+
# @param AppBizId: 应用ID, 获取方法参看如何获取 [BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa)。
|
|
4904
4965
|
# @type AppBizId: String
|
|
4905
4966
|
# @param WorkflowRunId: 工作流运行实例ID
|
|
4906
4967
|
# @type WorkflowRunId: String
|
|
@@ -4937,7 +4998,7 @@ module TencentCloud
|
|
|
4937
4998
|
|
|
4938
4999
|
# DescribeWorkflowRun返回参数结构体
|
|
4939
5000
|
class DescribeWorkflowRunResponse < TencentCloud::Common::AbstractModel
|
|
4940
|
-
# @param WorkflowRun:
|
|
5001
|
+
# @param WorkflowRun: 工作流运行实例详情
|
|
4941
5002
|
# @type WorkflowRun: :class:`Tencentcloud::Lke.v20231130.models.WorkflowRunDetail`
|
|
4942
5003
|
# @param NodeRuns: 节点列表
|
|
4943
5004
|
# @type NodeRuns: Array
|
|
@@ -5113,13 +5174,13 @@ module TencentCloud
|
|
|
5113
5174
|
|
|
5114
5175
|
# ExportAttributeLabel请求参数结构体
|
|
5115
5176
|
class ExportAttributeLabelRequest < TencentCloud::Common::AbstractModel
|
|
5116
|
-
# @param BotBizId: 应用ID
|
|
5177
|
+
# @param BotBizId: 应用ID,获取方法参看如何获取[BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa)
|
|
5117
5178
|
# @type BotBizId: String
|
|
5118
5179
|
# @param LoginUin: 登录用户主账号(集成商模式必填)
|
|
5119
5180
|
# @type LoginUin: String
|
|
5120
5181
|
# @param LoginSubAccountUin: 登录用户子账号(集成商模式必填)
|
|
5121
5182
|
# @type LoginSubAccountUin: String
|
|
5122
|
-
# @param AttributeBizIds:
|
|
5183
|
+
# @param AttributeBizIds: 标签ID
|
|
5123
5184
|
# @type AttributeBizIds: Array
|
|
5124
5185
|
# @param Filters: 根据筛选数据导出
|
|
5125
5186
|
# @type Filters: :class:`Tencentcloud::Lke.v20231130.models.AttributeFilters`
|
|
@@ -5325,23 +5386,27 @@ module TencentCloud
|
|
|
5325
5386
|
# @type Query: String
|
|
5326
5387
|
# @param Reasons: 错误类型检索
|
|
5327
5388
|
# @type Reasons: Array
|
|
5389
|
+
# @param HandlingStatuses: 处理状态 0-待处理 1-已拒答 2-已忽略 3-已添加为新问答 4-已添加为相似问
|
|
5390
|
+
# @type HandlingStatuses: Array
|
|
5328
5391
|
|
|
5329
|
-
attr_accessor :Query, :Reasons
|
|
5392
|
+
attr_accessor :Query, :Reasons, :HandlingStatuses
|
|
5330
5393
|
|
|
5331
|
-
def initialize(query=nil, reasons=nil)
|
|
5394
|
+
def initialize(query=nil, reasons=nil, handlingstatuses=nil)
|
|
5332
5395
|
@Query = query
|
|
5333
5396
|
@Reasons = reasons
|
|
5397
|
+
@HandlingStatuses = handlingstatuses
|
|
5334
5398
|
end
|
|
5335
5399
|
|
|
5336
5400
|
def deserialize(params)
|
|
5337
5401
|
@Query = params['Query']
|
|
5338
5402
|
@Reasons = params['Reasons']
|
|
5403
|
+
@HandlingStatuses = params['HandlingStatuses']
|
|
5339
5404
|
end
|
|
5340
5405
|
end
|
|
5341
5406
|
|
|
5342
5407
|
# GenerateQA请求参数结构体
|
|
5343
5408
|
class GenerateQARequest < TencentCloud::Common::AbstractModel
|
|
5344
|
-
# @param BotBizId: 应用ID
|
|
5409
|
+
# @param BotBizId: 应用ID,获取方法参看如何获取[BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa)
|
|
5345
5410
|
# @type BotBizId: String
|
|
5346
5411
|
# @param DocBizIds: 文档ID
|
|
5347
5412
|
# @type DocBizIds: Array
|
|
@@ -6003,17 +6068,21 @@ module TencentCloud
|
|
|
6003
6068
|
# @type Pattern: String
|
|
6004
6069
|
# @param SingleWorkflow: SingleWorkflow
|
|
6005
6070
|
# @type SingleWorkflow: :class:`Tencentcloud::Lke.v20231130.models.KnowledgeQaSingleWorkflow`
|
|
6071
|
+
# @param VisionModelInputLimit: 使用视觉模型时对话窗口输入字符限制
|
|
6072
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
6073
|
+
# @type VisionModelInputLimit: Integer
|
|
6006
6074
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
6007
6075
|
# @type RequestId: String
|
|
6008
6076
|
|
|
6009
|
-
attr_accessor :Token, :Balance, :InputLenLimit, :Pattern, :SingleWorkflow, :RequestId
|
|
6077
|
+
attr_accessor :Token, :Balance, :InputLenLimit, :Pattern, :SingleWorkflow, :VisionModelInputLimit, :RequestId
|
|
6010
6078
|
|
|
6011
|
-
def initialize(token=nil, balance=nil, inputlenlimit=nil, pattern=nil, singleworkflow=nil, requestid=nil)
|
|
6079
|
+
def initialize(token=nil, balance=nil, inputlenlimit=nil, pattern=nil, singleworkflow=nil, visionmodelinputlimit=nil, requestid=nil)
|
|
6012
6080
|
@Token = token
|
|
6013
6081
|
@Balance = balance
|
|
6014
6082
|
@InputLenLimit = inputlenlimit
|
|
6015
6083
|
@Pattern = pattern
|
|
6016
6084
|
@SingleWorkflow = singleworkflow
|
|
6085
|
+
@VisionModelInputLimit = visionmodelinputlimit
|
|
6017
6086
|
@RequestId = requestid
|
|
6018
6087
|
end
|
|
6019
6088
|
|
|
@@ -6026,6 +6095,7 @@ module TencentCloud
|
|
|
6026
6095
|
@SingleWorkflow = KnowledgeQaSingleWorkflow.new
|
|
6027
6096
|
@SingleWorkflow.deserialize(params['SingleWorkflow'])
|
|
6028
6097
|
end
|
|
6098
|
+
@VisionModelInputLimit = params['VisionModelInputLimit']
|
|
6029
6099
|
@RequestId = params['RequestId']
|
|
6030
6100
|
end
|
|
6031
6101
|
end
|
|
@@ -7084,10 +7154,10 @@ module TencentCloud
|
|
|
7084
7154
|
|
|
7085
7155
|
attr_accessor :KnowledgeName, :KnowledgeDescription, :EmbeddingModel, :QaExtractModel, :OwnerStaffId
|
|
7086
7156
|
extend Gem::Deprecate
|
|
7087
|
-
deprecate :EmbeddingModel, :none, 2025,
|
|
7088
|
-
deprecate :EmbeddingModel=, :none, 2025,
|
|
7089
|
-
deprecate :QaExtractModel, :none, 2025,
|
|
7090
|
-
deprecate :QaExtractModel=, :none, 2025,
|
|
7157
|
+
deprecate :EmbeddingModel, :none, 2025, 12
|
|
7158
|
+
deprecate :EmbeddingModel=, :none, 2025, 12
|
|
7159
|
+
deprecate :QaExtractModel, :none, 2025, 12
|
|
7160
|
+
deprecate :QaExtractModel=, :none, 2025, 12
|
|
7091
7161
|
|
|
7092
7162
|
def initialize(knowledgename=nil, knowledgedescription=nil, embeddingmodel=nil, qaextractmodel=nil, ownerstaffid=nil)
|
|
7093
7163
|
@KnowledgeName = knowledgename
|
|
@@ -7368,8 +7438,8 @@ module TencentCloud
|
|
|
7368
7438
|
|
|
7369
7439
|
attr_accessor :AppBizId, :BotBizId, :PageNumber, :PageSize, :ChannelType, :ChannelStatus
|
|
7370
7440
|
extend Gem::Deprecate
|
|
7371
|
-
deprecate :BotBizId, :none, 2025,
|
|
7372
|
-
deprecate :BotBizId=, :none, 2025,
|
|
7441
|
+
deprecate :BotBizId, :none, 2025, 12
|
|
7442
|
+
deprecate :BotBizId=, :none, 2025, 12
|
|
7373
7443
|
|
|
7374
7444
|
def initialize(appbizid=nil, botbizid=nil, pagenumber=nil, pagesize=nil, channeltype=nil, channelstatus=nil)
|
|
7375
7445
|
@AppBizId = appbizid
|
|
@@ -8643,11 +8713,11 @@ module TencentCloud
|
|
|
8643
8713
|
|
|
8644
8714
|
# ListSelectDoc请求参数结构体
|
|
8645
8715
|
class ListSelectDocRequest < TencentCloud::Common::AbstractModel
|
|
8646
|
-
# @param BotBizId: 应用ID
|
|
8716
|
+
# @param BotBizId: 应用ID,获取方法参看如何获取[BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa)
|
|
8647
8717
|
# @type BotBizId: String
|
|
8648
8718
|
# @param FileName: 文档名称。可通过文档名称检索支持生成问答的文档,不支持xlsx、xls、csv格式
|
|
8649
8719
|
# @type FileName: String
|
|
8650
|
-
# @param Status: 文档状态筛选。文档状态对应码为7 审核中、8 审核失败、10 待发布、11 发布中、12 已发布、13 学习中、14 学习失败 20 已过期。其中仅状态为10 待发布、12
|
|
8720
|
+
# @param Status: 文档状态筛选。文档状态对应码为7 审核中、8 审核失败、10 待发布、11 发布中、12 已发布、13 学习中、14 学习失败 20 已过期。其中仅状态为10 待发布、12 已发布的文档支持生成问答(未填写时默认值为空数组)
|
|
8651
8721
|
# @type Status: Array
|
|
8652
8722
|
|
|
8653
8723
|
attr_accessor :BotBizId, :FileName, :Status
|
|
@@ -8754,26 +8824,28 @@ module TencentCloud
|
|
|
8754
8824
|
|
|
8755
8825
|
# ListUnsatisfiedReply请求参数结构体
|
|
8756
8826
|
class ListUnsatisfiedReplyRequest < TencentCloud::Common::AbstractModel
|
|
8757
|
-
# @param BotBizId: 应用ID
|
|
8827
|
+
# @param BotBizId: 应用ID,获取方法参看如何获取[BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa)
|
|
8758
8828
|
# @type BotBizId: String
|
|
8759
|
-
# @param PageNumber:
|
|
8829
|
+
# @param PageNumber: 页码,取值范围:大于0
|
|
8760
8830
|
# @type PageNumber: Integer
|
|
8761
|
-
# @param PageSize:
|
|
8831
|
+
# @param PageSize: 分页数量,取值范围:大于0
|
|
8762
8832
|
# @type PageSize: Integer
|
|
8763
8833
|
# @param LoginUin: 登录用户主账号(集成商模式必填)
|
|
8764
8834
|
# @type LoginUin: String
|
|
8765
8835
|
# @param LoginSubAccountUin: 登录用户子账号(集成商模式必填)
|
|
8766
8836
|
# @type LoginSubAccountUin: String
|
|
8767
|
-
# @param Query: 用户请求(问题或答案)
|
|
8837
|
+
# @param Query: 用户请求(问题或答案),按关键词检索,可匹配用户问题或答案
|
|
8768
8838
|
# @type Query: String
|
|
8769
|
-
# @param Reasons:
|
|
8839
|
+
# @param Reasons: 按错误类型检索
|
|
8770
8840
|
# @type Reasons: Array
|
|
8771
|
-
# @param Status:
|
|
8841
|
+
# @param Status: 按操作状态检索 0-全部 1-待处理 2-已处理【包括答案纠错,拒答,忽略】,不填时默认值为0
|
|
8772
8842
|
# @type Status: Integer
|
|
8843
|
+
# @param HandlingStatuses: 处理状态 0-待处理 1-已拒答 2-已忽略 3-已添加为新问答 4-已添加为相似问
|
|
8844
|
+
# @type HandlingStatuses: Array
|
|
8773
8845
|
|
|
8774
|
-
attr_accessor :BotBizId, :PageNumber, :PageSize, :LoginUin, :LoginSubAccountUin, :Query, :Reasons, :Status
|
|
8846
|
+
attr_accessor :BotBizId, :PageNumber, :PageSize, :LoginUin, :LoginSubAccountUin, :Query, :Reasons, :Status, :HandlingStatuses
|
|
8775
8847
|
|
|
8776
|
-
def initialize(botbizid=nil, pagenumber=nil, pagesize=nil, loginuin=nil, loginsubaccountuin=nil, query=nil, reasons=nil, status=nil)
|
|
8848
|
+
def initialize(botbizid=nil, pagenumber=nil, pagesize=nil, loginuin=nil, loginsubaccountuin=nil, query=nil, reasons=nil, status=nil, handlingstatuses=nil)
|
|
8777
8849
|
@BotBizId = botbizid
|
|
8778
8850
|
@PageNumber = pagenumber
|
|
8779
8851
|
@PageSize = pagesize
|
|
@@ -8782,6 +8854,7 @@ module TencentCloud
|
|
|
8782
8854
|
@Query = query
|
|
8783
8855
|
@Reasons = reasons
|
|
8784
8856
|
@Status = status
|
|
8857
|
+
@HandlingStatuses = handlingstatuses
|
|
8785
8858
|
end
|
|
8786
8859
|
|
|
8787
8860
|
def deserialize(params)
|
|
@@ -8793,6 +8866,7 @@ module TencentCloud
|
|
|
8793
8866
|
@Query = params['Query']
|
|
8794
8867
|
@Reasons = params['Reasons']
|
|
8795
8868
|
@Status = params['Status']
|
|
8869
|
+
@HandlingStatuses = params['HandlingStatuses']
|
|
8796
8870
|
end
|
|
8797
8871
|
end
|
|
8798
8872
|
|
|
@@ -10048,6 +10122,26 @@ module TencentCloud
|
|
|
10048
10122
|
end
|
|
10049
10123
|
end
|
|
10050
10124
|
|
|
10125
|
+
# Nl2Sql模型配置
|
|
10126
|
+
class NL2SQLModelConfig < TencentCloud::Common::AbstractModel
|
|
10127
|
+
# @param Model: 模型配置
|
|
10128
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
10129
|
+
# @type Model: :class:`Tencentcloud::Lke.v20231130.models.AppModelDetailInfo`
|
|
10130
|
+
|
|
10131
|
+
attr_accessor :Model
|
|
10132
|
+
|
|
10133
|
+
def initialize(model=nil)
|
|
10134
|
+
@Model = model
|
|
10135
|
+
end
|
|
10136
|
+
|
|
10137
|
+
def deserialize(params)
|
|
10138
|
+
unless params['Model'].nil?
|
|
10139
|
+
@Model = AppModelDetailInfo.new
|
|
10140
|
+
@Model.deserialize(params['Model'])
|
|
10141
|
+
end
|
|
10142
|
+
end
|
|
10143
|
+
end
|
|
10144
|
+
|
|
10051
10145
|
# 节点运行的基本信息
|
|
10052
10146
|
class NodeRunBase < TencentCloud::Common::AbstractModel
|
|
10053
10147
|
# @param NodeRunId: 节点运行的ID
|
|
@@ -11652,15 +11746,19 @@ module TencentCloud
|
|
|
11652
11746
|
# @param RerankModel: 结果重排序模型
|
|
11653
11747
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
11654
11748
|
# @type RerankModel: String
|
|
11749
|
+
# @param NatureLanguageToSqlModelConfig: NL2SQL模型配置
|
|
11750
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
11751
|
+
# @type NatureLanguageToSqlModelConfig: :class:`Tencentcloud::Lke.v20231130.models.NL2SQLModelConfig`
|
|
11655
11752
|
|
|
11656
|
-
attr_accessor :StrategyType, :TableEnhancement, :EmbeddingModel, :RerankModelSwitch, :RerankModel
|
|
11753
|
+
attr_accessor :StrategyType, :TableEnhancement, :EmbeddingModel, :RerankModelSwitch, :RerankModel, :NatureLanguageToSqlModelConfig
|
|
11657
11754
|
|
|
11658
|
-
def initialize(strategytype=nil, tableenhancement=nil, embeddingmodel=nil, rerankmodelswitch=nil, rerankmodel=nil)
|
|
11755
|
+
def initialize(strategytype=nil, tableenhancement=nil, embeddingmodel=nil, rerankmodelswitch=nil, rerankmodel=nil, naturelanguagetosqlmodelconfig=nil)
|
|
11659
11756
|
@StrategyType = strategytype
|
|
11660
11757
|
@TableEnhancement = tableenhancement
|
|
11661
11758
|
@EmbeddingModel = embeddingmodel
|
|
11662
11759
|
@RerankModelSwitch = rerankmodelswitch
|
|
11663
11760
|
@RerankModel = rerankmodel
|
|
11761
|
+
@NatureLanguageToSqlModelConfig = naturelanguagetosqlmodelconfig
|
|
11664
11762
|
end
|
|
11665
11763
|
|
|
11666
11764
|
def deserialize(params)
|
|
@@ -11669,6 +11767,10 @@ module TencentCloud
|
|
|
11669
11767
|
@EmbeddingModel = params['EmbeddingModel']
|
|
11670
11768
|
@RerankModelSwitch = params['RerankModelSwitch']
|
|
11671
11769
|
@RerankModel = params['RerankModel']
|
|
11770
|
+
unless params['NatureLanguageToSqlModelConfig'].nil?
|
|
11771
|
+
@NatureLanguageToSqlModelConfig = NL2SQLModelConfig.new
|
|
11772
|
+
@NatureLanguageToSqlModelConfig.deserialize(params['NatureLanguageToSqlModelConfig'])
|
|
11773
|
+
end
|
|
11672
11774
|
end
|
|
11673
11775
|
end
|
|
11674
11776
|
|
|
@@ -12901,8 +13003,8 @@ module TencentCloud
|
|
|
12901
13003
|
|
|
12902
13004
|
attr_accessor :RunEnv, :AppBizId, :WorkflowRunId, :WorkflowId, :Name, :Output, :State, :FailMessage, :TotalTokens, :CreateTime, :StartTime, :EndTime, :DialogJson, :Query, :MainModelName, :CustomVariables, :WorkflowGraph
|
|
12903
13005
|
extend Gem::Deprecate
|
|
12904
|
-
deprecate :DialogJson, :none, 2025,
|
|
12905
|
-
deprecate :DialogJson=, :none, 2025,
|
|
13006
|
+
deprecate :DialogJson, :none, 2025, 12
|
|
13007
|
+
deprecate :DialogJson=, :none, 2025, 12
|
|
12906
13008
|
|
|
12907
13009
|
def initialize(runenv=nil, appbizid=nil, workflowrunid=nil, workflowid=nil, name=nil, output=nil, state=nil, failmessage=nil, totaltokens=nil, createtime=nil, starttime=nil, endtime=nil, dialogjson=nil, query=nil, mainmodelname=nil, customvariables=nil, workflowgraph=nil)
|
|
12908
13010
|
@RunEnv = runenv
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tencentcloud-sdk-lke
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.1183
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-
|
|
11
|
+
date: 2025-12-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|
|
@@ -33,9 +33,9 @@ executables: []
|
|
|
33
33
|
extensions: []
|
|
34
34
|
extra_rdoc_files: []
|
|
35
35
|
files:
|
|
36
|
-
- lib/v20231130/client.rb
|
|
37
|
-
- lib/v20231130/models.rb
|
|
38
36
|
- lib/tencentcloud-sdk-lke.rb
|
|
37
|
+
- lib/v20231130/models.rb
|
|
38
|
+
- lib/v20231130/client.rb
|
|
39
39
|
- lib/VERSION
|
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
|
41
41
|
licenses:
|