tencentcloud-sdk-lke 3.0.1177 → 3.0.1185
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 +5 -2
- data/lib/v20231130/models.rb +174 -95
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 769cbb4152e8c16ac2951e0889865c64456f3b49
|
|
4
|
+
data.tar.gz: d78f6eed13ae9d9a3493127a1ac758aaf6d824cf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 58be31f6bfee15ff692b601130e2307efc897999567561181fbce7a82f70ba9dd18151da55e63e01b3a3f7f02822763f58618b89c780ba98c0090ae3ecb50240
|
|
7
|
+
data.tar.gz: 782a12e07c9b97640aa000e4711683381f2701930a4fdaf1f5fbe89ab1c8b738bbabce3a0d605ba53a062c5a9c8e9a6cfd94fa40189786430e752208f0fb658c
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1185
|
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`
|
|
@@ -2533,6 +2533,9 @@ module TencentCloud
|
|
|
2533
2533
|
end
|
|
2534
2534
|
|
|
2535
2535
|
# 校验问答
|
|
2536
|
+
# 知识库相关背景知识介绍
|
|
2537
|
+
# “知识库检索范围”文档:https://cloud.tencent.com/document/product/1759/112704
|
|
2538
|
+
# “标签”文档:https://cloud.tencent.com/document/product/1759/112956
|
|
2536
2539
|
|
|
2537
2540
|
# @param request: Request instance for VerifyQA.
|
|
2538
2541
|
# @type request: :class:`Tencentcloud::lke::V20231130::VerifyQARequest`
|
data/lib/v20231130/models.rb
CHANGED
|
@@ -1512,6 +1512,37 @@ module TencentCloud
|
|
|
1512
1512
|
end
|
|
1513
1513
|
end
|
|
1514
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
|
+
|
|
1515
1546
|
# 标签详情信息
|
|
1516
1547
|
class AttrLabel < TencentCloud::Common::AbstractModel
|
|
1517
1548
|
# @param Source: 标签来源
|
|
@@ -1573,7 +1604,7 @@ module TencentCloud
|
|
|
1573
1604
|
# @param IsUpdating: 标签是否在更新中
|
|
1574
1605
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
1575
1606
|
# @type IsUpdating: Boolean
|
|
1576
|
-
# @param Status:
|
|
1607
|
+
# @param Status: 发布状态(1 待发布 2 发布中 3 已发布 4 发布失败)
|
|
1577
1608
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
1578
1609
|
# @type Status: Integer
|
|
1579
1610
|
# @param StatusDesc: 状态描述
|
|
@@ -1583,6 +1614,9 @@ module TencentCloud
|
|
|
1583
1614
|
# @type LabelTotalCount: String
|
|
1584
1615
|
|
|
1585
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
|
|
1586
1620
|
|
|
1587
1621
|
def initialize(attrbizid=nil, attrkey=nil, attrname=nil, labelnames=nil, isupdating=nil, status=nil, statusdesc=nil, labeltotalcount=nil)
|
|
1588
1622
|
@AttrBizId = attrbizid
|
|
@@ -1953,17 +1987,17 @@ module TencentCloud
|
|
|
1953
1987
|
|
|
1954
1988
|
# CheckAttributeLabelExist请求参数结构体
|
|
1955
1989
|
class CheckAttributeLabelExistRequest < TencentCloud::Common::AbstractModel
|
|
1956
|
-
# @param BotBizId: 应用ID
|
|
1990
|
+
# @param BotBizId: 应用ID,获取方法参看如何获取[BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa)
|
|
1957
1991
|
# @type BotBizId: String
|
|
1958
|
-
# @param LabelName:
|
|
1992
|
+
# @param LabelName: 标签名称
|
|
1959
1993
|
# @type LabelName: String
|
|
1960
|
-
# @param AttributeBizId:
|
|
1994
|
+
# @param AttributeBizId: 标签ID
|
|
1961
1995
|
# @type AttributeBizId: String
|
|
1962
1996
|
# @param LoginUin: 登录用户主账号(集成商模式必填)
|
|
1963
1997
|
# @type LoginUin: String
|
|
1964
1998
|
# @param LoginSubAccountUin: 登录用户子账号(集成商模式必填)
|
|
1965
1999
|
# @type LoginSubAccountUin: String
|
|
1966
|
-
# @param LastLabelBizId:
|
|
2000
|
+
# @param LastLabelBizId: 最后一个标签ID。用于滚动加载:是一种分批、滚动式的存在性检查机制。客户端需要持续调用接口,并每次传入上一次返回的最后一个记录的ID,直到接口明确返回“存在”或“已检查全部数据且不存在”为止。
|
|
1967
2001
|
# @type LastLabelBizId: String
|
|
1968
2002
|
|
|
1969
2003
|
attr_accessor :BotBizId, :LabelName, :AttributeBizId, :LoginUin, :LoginSubAccountUin, :LastLabelBizId
|
|
@@ -2009,15 +2043,15 @@ module TencentCloud
|
|
|
2009
2043
|
|
|
2010
2044
|
# CheckAttributeLabelRefer请求参数结构体
|
|
2011
2045
|
class CheckAttributeLabelReferRequest < TencentCloud::Common::AbstractModel
|
|
2012
|
-
# @param BotBizId: 应用ID
|
|
2046
|
+
# @param BotBizId: 应用ID,获取方法参看如何获取[BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa)
|
|
2013
2047
|
# @type BotBizId: String
|
|
2014
2048
|
# @param LoginUin: 登录用户主账号(集成商模式必填)
|
|
2015
2049
|
# @type LoginUin: String
|
|
2016
2050
|
# @param LoginSubAccountUin: 登录用户子账号(集成商模式必填)
|
|
2017
2051
|
# @type LoginSubAccountUin: String
|
|
2018
|
-
# @param LabelBizId: 属性标签
|
|
2052
|
+
# @param LabelBizId: 属性标签ID
|
|
2019
2053
|
# @type LabelBizId: String
|
|
2020
|
-
# @param AttributeBizId:
|
|
2054
|
+
# @param AttributeBizId: 标签ID
|
|
2021
2055
|
# @type AttributeBizId: Array
|
|
2022
2056
|
|
|
2023
2057
|
attr_accessor :BotBizId, :LoginUin, :LoginSubAccountUin, :LabelBizId, :AttributeBizId
|
|
@@ -2248,7 +2282,7 @@ module TencentCloud
|
|
|
2248
2282
|
|
|
2249
2283
|
# CreateAttributeLabel请求参数结构体
|
|
2250
2284
|
class CreateAttributeLabelRequest < TencentCloud::Common::AbstractModel
|
|
2251
|
-
# @param BotBizId: 应用ID
|
|
2285
|
+
# @param BotBizId: 应用ID,获取方法参看如何获取[BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa)
|
|
2252
2286
|
# @type BotBizId: String
|
|
2253
2287
|
# @param AttrName: 标签名
|
|
2254
2288
|
# @type AttrName: String
|
|
@@ -2521,12 +2555,12 @@ module TencentCloud
|
|
|
2521
2555
|
|
|
2522
2556
|
# CreateRejectedQuestion请求参数结构体
|
|
2523
2557
|
class CreateRejectedQuestionRequest < TencentCloud::Common::AbstractModel
|
|
2524
|
-
# @param BotBizId: 应用ID
|
|
2558
|
+
# @param BotBizId: 应用ID, 获取方式参看如何获取[BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa)
|
|
2525
2559
|
# @type BotBizId: String
|
|
2526
2560
|
# @param Question: 拒答问题
|
|
2527
2561
|
|
|
2528
2562
|
# @type Question: String
|
|
2529
|
-
# @param BusinessSource:
|
|
2563
|
+
# @param BusinessSource: 拒答问题来源, 1- 来源于不满意回复; 2 - 来源于手动添加
|
|
2530
2564
|
# @type BusinessSource: Integer
|
|
2531
2565
|
# @param BusinessId: 拒答问题来源的数据源唯一id
|
|
2532
2566
|
|
|
@@ -2722,7 +2756,7 @@ module TencentCloud
|
|
|
2722
2756
|
|
|
2723
2757
|
# CreateWorkflowRun请求参数结构体
|
|
2724
2758
|
class CreateWorkflowRunRequest < TencentCloud::Common::AbstractModel
|
|
2725
|
-
# @param AppBizId: 应用ID
|
|
2759
|
+
# @param AppBizId: 应用ID, 获取方法参看如何获取 [BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa)
|
|
2726
2760
|
# @type AppBizId: String
|
|
2727
2761
|
# @param RunEnv: 运行环境。0: 测试环境; 1: 正式环境
|
|
2728
2762
|
# @type RunEnv: Integer
|
|
@@ -2932,7 +2966,7 @@ module TencentCloud
|
|
|
2932
2966
|
|
|
2933
2967
|
# DeleteAttributeLabel请求参数结构体
|
|
2934
2968
|
class DeleteAttributeLabelRequest < TencentCloud::Common::AbstractModel
|
|
2935
|
-
# @param BotBizId: 应用ID
|
|
2969
|
+
# @param BotBizId: 应用ID,获取方法参看如何获取[BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa)
|
|
2936
2970
|
# @type BotBizId: String
|
|
2937
2971
|
# @param AttributeBizIds: 标签ID
|
|
2938
2972
|
# @type AttributeBizIds: Array
|
|
@@ -3120,7 +3154,7 @@ module TencentCloud
|
|
|
3120
3154
|
|
|
3121
3155
|
# DeleteRejectedQuestion请求参数结构体
|
|
3122
3156
|
class DeleteRejectedQuestionRequest < TencentCloud::Common::AbstractModel
|
|
3123
|
-
# @param BotBizId: 应用ID
|
|
3157
|
+
# @param BotBizId: 应用ID, 获取方法参看如何获取 [BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa)。
|
|
3124
3158
|
# @type BotBizId: String
|
|
3125
3159
|
# @param RejectedBizIds: 拒答问题来源的数据源唯一id
|
|
3126
3160
|
|
|
@@ -3394,19 +3428,19 @@ module TencentCloud
|
|
|
3394
3428
|
|
|
3395
3429
|
# DescribeAttributeLabel请求参数结构体
|
|
3396
3430
|
class DescribeAttributeLabelRequest < TencentCloud::Common::AbstractModel
|
|
3397
|
-
# @param BotBizId: 应用ID
|
|
3431
|
+
# @param BotBizId: 应用ID,获取方法参看如何获取[BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa)
|
|
3398
3432
|
# @type BotBizId: String
|
|
3399
|
-
# @param AttributeBizId:
|
|
3433
|
+
# @param AttributeBizId: 标签ID
|
|
3400
3434
|
# @type AttributeBizId: String
|
|
3401
|
-
# @param Limit:
|
|
3435
|
+
# @param Limit: 每次请求返回的最大标签数量,限制单次接口返回的标签数量,避免数据量过大。取值范围:大于0。
|
|
3402
3436
|
# @type Limit: Integer
|
|
3403
3437
|
# @param LoginUin: 登录用户主账号(集成商模式必填)
|
|
3404
3438
|
# @type LoginUin: String
|
|
3405
3439
|
# @param LoginSubAccountUin: 登录用户子账号(集成商模式必填)
|
|
3406
3440
|
# @type LoginSubAccountUin: String
|
|
3407
|
-
# @param Query:
|
|
3441
|
+
# @param Query: 搜索关键词,用于查询标签标准词或相似词
|
|
3408
3442
|
# @type Query: String
|
|
3409
|
-
# @param LastLabelBizId:
|
|
3443
|
+
# @param LastLabelBizId: 滚动加载游标,上一次请求返回的最后一个标签ID
|
|
3410
3444
|
# @type LastLabelBizId: String
|
|
3411
3445
|
# @param QueryScope: 查询范围 all(或者传空):标准词和相似词 standard:标准词 similar:相似词
|
|
3412
3446
|
# @type QueryScope: String
|
|
@@ -4871,9 +4905,9 @@ module TencentCloud
|
|
|
4871
4905
|
|
|
4872
4906
|
# DescribeUnsatisfiedReplyContext请求参数结构体
|
|
4873
4907
|
class DescribeUnsatisfiedReplyContextRequest < TencentCloud::Common::AbstractModel
|
|
4874
|
-
# @param BotBizId: 应用ID
|
|
4908
|
+
# @param BotBizId: 应用ID,获取方法参看如何获取[BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa)
|
|
4875
4909
|
# @type BotBizId: String
|
|
4876
|
-
# @param ReplyBizId: 回复ID
|
|
4910
|
+
# @param ReplyBizId: 回复ID,调用这个接口获得:[ListUnsatisfiedReply](https://capi.woa.com/api/detail?product=lke&version=2023-11-30&action=ListUnsatisfiedReply)
|
|
4877
4911
|
# @type ReplyBizId: String
|
|
4878
4912
|
# @param LoginUin: 登录用户主账号(集成商模式必填)
|
|
4879
4913
|
# @type LoginUin: String
|
|
@@ -4927,7 +4961,7 @@ module TencentCloud
|
|
|
4927
4961
|
|
|
4928
4962
|
# DescribeWorkflowRun请求参数结构体
|
|
4929
4963
|
class DescribeWorkflowRunRequest < TencentCloud::Common::AbstractModel
|
|
4930
|
-
# @param AppBizId: 应用ID
|
|
4964
|
+
# @param AppBizId: 应用ID, 获取方法参看如何获取 [BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa)。
|
|
4931
4965
|
# @type AppBizId: String
|
|
4932
4966
|
# @param WorkflowRunId: 工作流运行实例ID
|
|
4933
4967
|
# @type WorkflowRunId: String
|
|
@@ -4964,7 +4998,7 @@ module TencentCloud
|
|
|
4964
4998
|
|
|
4965
4999
|
# DescribeWorkflowRun返回参数结构体
|
|
4966
5000
|
class DescribeWorkflowRunResponse < TencentCloud::Common::AbstractModel
|
|
4967
|
-
# @param WorkflowRun:
|
|
5001
|
+
# @param WorkflowRun: 工作流运行实例详情
|
|
4968
5002
|
# @type WorkflowRun: :class:`Tencentcloud::Lke.v20231130.models.WorkflowRunDetail`
|
|
4969
5003
|
# @param NodeRuns: 节点列表
|
|
4970
5004
|
# @type NodeRuns: Array
|
|
@@ -5140,13 +5174,13 @@ module TencentCloud
|
|
|
5140
5174
|
|
|
5141
5175
|
# ExportAttributeLabel请求参数结构体
|
|
5142
5176
|
class ExportAttributeLabelRequest < TencentCloud::Common::AbstractModel
|
|
5143
|
-
# @param BotBizId: 应用ID
|
|
5177
|
+
# @param BotBizId: 应用ID,获取方法参看如何获取[BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa)
|
|
5144
5178
|
# @type BotBizId: String
|
|
5145
5179
|
# @param LoginUin: 登录用户主账号(集成商模式必填)
|
|
5146
5180
|
# @type LoginUin: String
|
|
5147
5181
|
# @param LoginSubAccountUin: 登录用户子账号(集成商模式必填)
|
|
5148
5182
|
# @type LoginSubAccountUin: String
|
|
5149
|
-
# @param AttributeBizIds:
|
|
5183
|
+
# @param AttributeBizIds: 标签ID
|
|
5150
5184
|
# @type AttributeBizIds: Array
|
|
5151
5185
|
# @param Filters: 根据筛选数据导出
|
|
5152
5186
|
# @type Filters: :class:`Tencentcloud::Lke.v20231130.models.AttributeFilters`
|
|
@@ -5352,23 +5386,27 @@ module TencentCloud
|
|
|
5352
5386
|
# @type Query: String
|
|
5353
5387
|
# @param Reasons: 错误类型检索
|
|
5354
5388
|
# @type Reasons: Array
|
|
5389
|
+
# @param HandlingStatuses: 处理状态 0-待处理 1-已拒答 2-已忽略 3-已添加为新问答 4-已添加为相似问
|
|
5390
|
+
# @type HandlingStatuses: Array
|
|
5355
5391
|
|
|
5356
|
-
attr_accessor :Query, :Reasons
|
|
5392
|
+
attr_accessor :Query, :Reasons, :HandlingStatuses
|
|
5357
5393
|
|
|
5358
|
-
def initialize(query=nil, reasons=nil)
|
|
5394
|
+
def initialize(query=nil, reasons=nil, handlingstatuses=nil)
|
|
5359
5395
|
@Query = query
|
|
5360
5396
|
@Reasons = reasons
|
|
5397
|
+
@HandlingStatuses = handlingstatuses
|
|
5361
5398
|
end
|
|
5362
5399
|
|
|
5363
5400
|
def deserialize(params)
|
|
5364
5401
|
@Query = params['Query']
|
|
5365
5402
|
@Reasons = params['Reasons']
|
|
5403
|
+
@HandlingStatuses = params['HandlingStatuses']
|
|
5366
5404
|
end
|
|
5367
5405
|
end
|
|
5368
5406
|
|
|
5369
5407
|
# GenerateQA请求参数结构体
|
|
5370
5408
|
class GenerateQARequest < TencentCloud::Common::AbstractModel
|
|
5371
|
-
# @param BotBizId: 应用ID
|
|
5409
|
+
# @param BotBizId: 应用ID,获取方法参看如何获取[BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa)
|
|
5372
5410
|
# @type BotBizId: String
|
|
5373
5411
|
# @param DocBizIds: 文档ID
|
|
5374
5412
|
# @type DocBizIds: Array
|
|
@@ -6030,17 +6068,21 @@ module TencentCloud
|
|
|
6030
6068
|
# @type Pattern: String
|
|
6031
6069
|
# @param SingleWorkflow: SingleWorkflow
|
|
6032
6070
|
# @type SingleWorkflow: :class:`Tencentcloud::Lke.v20231130.models.KnowledgeQaSingleWorkflow`
|
|
6071
|
+
# @param VisionModelInputLimit: 使用视觉模型时对话窗口输入字符限制
|
|
6072
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
6073
|
+
# @type VisionModelInputLimit: Integer
|
|
6033
6074
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
6034
6075
|
# @type RequestId: String
|
|
6035
6076
|
|
|
6036
|
-
attr_accessor :Token, :Balance, :InputLenLimit, :Pattern, :SingleWorkflow, :RequestId
|
|
6077
|
+
attr_accessor :Token, :Balance, :InputLenLimit, :Pattern, :SingleWorkflow, :VisionModelInputLimit, :RequestId
|
|
6037
6078
|
|
|
6038
|
-
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)
|
|
6039
6080
|
@Token = token
|
|
6040
6081
|
@Balance = balance
|
|
6041
6082
|
@InputLenLimit = inputlenlimit
|
|
6042
6083
|
@Pattern = pattern
|
|
6043
6084
|
@SingleWorkflow = singleworkflow
|
|
6085
|
+
@VisionModelInputLimit = visionmodelinputlimit
|
|
6044
6086
|
@RequestId = requestid
|
|
6045
6087
|
end
|
|
6046
6088
|
|
|
@@ -6053,6 +6095,7 @@ module TencentCloud
|
|
|
6053
6095
|
@SingleWorkflow = KnowledgeQaSingleWorkflow.new
|
|
6054
6096
|
@SingleWorkflow.deserialize(params['SingleWorkflow'])
|
|
6055
6097
|
end
|
|
6098
|
+
@VisionModelInputLimit = params['VisionModelInputLimit']
|
|
6056
6099
|
@RequestId = params['RequestId']
|
|
6057
6100
|
end
|
|
6058
6101
|
end
|
|
@@ -7309,19 +7352,19 @@ module TencentCloud
|
|
|
7309
7352
|
|
|
7310
7353
|
# ListAttributeLabel请求参数结构体
|
|
7311
7354
|
class ListAttributeLabelRequest < TencentCloud::Common::AbstractModel
|
|
7312
|
-
# @param BotBizId: 应用ID
|
|
7355
|
+
# @param BotBizId: 应用ID,获取方法参看如何获取[BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa)
|
|
7313
7356
|
# @type BotBizId: String
|
|
7314
|
-
# @param PageNumber:
|
|
7357
|
+
# @param PageNumber: 页码,取值范围:大于0
|
|
7315
7358
|
# @type PageNumber: Integer
|
|
7316
|
-
# @param PageSize:
|
|
7359
|
+
# @param PageSize: 每页数量,取值范围:大于0
|
|
7317
7360
|
# @type PageSize: Integer
|
|
7318
7361
|
# @param LoginUin: 登录用户主账号(集成商模式必填)
|
|
7319
7362
|
# @type LoginUin: String
|
|
7320
7363
|
# @param LoginSubAccountUin: 登录用户子账号(集成商模式必填)
|
|
7321
7364
|
# @type LoginSubAccountUin: String
|
|
7322
|
-
# @param Query:
|
|
7365
|
+
# @param Query: 查询内容,同时匹配标签内容和标签值内容
|
|
7323
7366
|
# @type Query: String
|
|
7324
|
-
# @param LabelSize:
|
|
7367
|
+
# @param LabelSize: 每个标签同步拉取的标签值数量。即在展示标签列表时,为每一个标签加载多少个具体的标签值。
|
|
7325
7368
|
# @type LabelSize: Integer
|
|
7326
7369
|
|
|
7327
7370
|
attr_accessor :BotBizId, :PageNumber, :PageSize, :LoginUin, :LoginSubAccountUin, :Query, :LabelSize
|
|
@@ -7380,17 +7423,17 @@ module TencentCloud
|
|
|
7380
7423
|
|
|
7381
7424
|
# ListChannel请求参数结构体
|
|
7382
7425
|
class ListChannelRequest < TencentCloud::Common::AbstractModel
|
|
7383
|
-
# @param AppBizId: 应用ID
|
|
7426
|
+
# @param AppBizId: 应用ID(获取方法参看如何获取 [BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa))
|
|
7384
7427
|
# @type AppBizId: String
|
|
7385
7428
|
# @param BotBizId: 应用ID
|
|
7386
7429
|
# @type BotBizId: String
|
|
7387
|
-
# @param PageNumber:
|
|
7430
|
+
# @param PageNumber: 页码(必须大于0)
|
|
7388
7431
|
# @type PageNumber: Integer
|
|
7389
|
-
# @param PageSize:
|
|
7432
|
+
# @param PageSize: 分页数量(取值范围为1-200)
|
|
7390
7433
|
# @type PageSize: Integer
|
|
7391
|
-
# @param ChannelType: 渠道类型, 10000: 微信订阅号,10001: 微信服务号,10002:企微应用,10004:微信客服,10005:小程序,10009:企微智能机器人
|
|
7434
|
+
# @param ChannelType: 渠道类型, 10000: 微信订阅号,10001: 微信服务号,10002:企微应用,10004:微信客服,10005:小程序,10009:企微智能机器人 。(默认为[])
|
|
7392
7435
|
# @type ChannelType: Array
|
|
7393
|
-
# @param ChannelStatus: 渠道状态 1未发布 2运行中 3已下线
|
|
7436
|
+
# @param ChannelStatus: 渠道状态 1未发布 2运行中 3已下线 (默认为[])
|
|
7394
7437
|
# @type ChannelStatus: Array
|
|
7395
7438
|
|
|
7396
7439
|
attr_accessor :AppBizId, :BotBizId, :PageNumber, :PageSize, :ChannelType, :ChannelStatus
|
|
@@ -8200,21 +8243,21 @@ module TencentCloud
|
|
|
8200
8243
|
|
|
8201
8244
|
# ListRejectedQuestionPreview请求参数结构体
|
|
8202
8245
|
class ListRejectedQuestionPreviewRequest < TencentCloud::Common::AbstractModel
|
|
8203
|
-
# @param BotBizId: 应用ID
|
|
8246
|
+
# @param BotBizId: 应用ID(获取方法参看如何获取 [BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa))
|
|
8204
8247
|
# @type BotBizId: String
|
|
8205
|
-
# @param PageNumber:
|
|
8248
|
+
# @param PageNumber: 页码(必须大于0)
|
|
8206
8249
|
# @type PageNumber: Integer
|
|
8207
|
-
# @param PageSize:
|
|
8250
|
+
# @param PageSize: 每页数量(取值范围为1-200)
|
|
8208
8251
|
# @type PageSize: Integer
|
|
8209
|
-
# @param Query:
|
|
8252
|
+
# @param Query: 查询内容关键字,用于模糊查询,若未提供该参数,默认为查询全部。
|
|
8210
8253
|
# @type Query: String
|
|
8211
|
-
# @param ReleaseBizId: 发布单ID
|
|
8254
|
+
# @param ReleaseBizId: 发布单ID(可以通过[ListRelease](https://cloud.tencent.com/document/product/1759/105077)获得)
|
|
8212
8255
|
# @type ReleaseBizId: String
|
|
8213
8256
|
# @param Actions: 状态(1新增2更新3删除)
|
|
8214
8257
|
# @type Actions: Array
|
|
8215
|
-
# @param StartTime:
|
|
8258
|
+
# @param StartTime: 开始时间。Unix 时间戳,单位是秒,默认为空。
|
|
8216
8259
|
# @type StartTime: String
|
|
8217
|
-
# @param EndTime:
|
|
8260
|
+
# @param EndTime: 结束时间。Unix 时间戳,单位是秒,默认为空。
|
|
8218
8261
|
# @type EndTime: String
|
|
8219
8262
|
|
|
8220
8263
|
attr_accessor :BotBizId, :PageNumber, :PageSize, :Query, :ReleaseBizId, :Actions, :StartTime, :EndTime
|
|
@@ -8275,11 +8318,11 @@ module TencentCloud
|
|
|
8275
8318
|
|
|
8276
8319
|
# ListRejectedQuestion请求参数结构体
|
|
8277
8320
|
class ListRejectedQuestionRequest < TencentCloud::Common::AbstractModel
|
|
8278
|
-
# @param BotBizId: 应用ID
|
|
8321
|
+
# @param BotBizId: 应用ID, 获取方法参看如何获取 [BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa)。
|
|
8279
8322
|
# @type BotBizId: String
|
|
8280
|
-
# @param PageNumber:
|
|
8323
|
+
# @param PageNumber: 页码(必须大于0)
|
|
8281
8324
|
# @type PageNumber: Integer
|
|
8282
|
-
# @param PageSize:
|
|
8325
|
+
# @param PageSize: 每页数量(取值范围1-200)
|
|
8283
8326
|
# @type PageSize: Integer
|
|
8284
8327
|
# @param Query: 查询内容
|
|
8285
8328
|
# @type Query: String
|
|
@@ -8334,23 +8377,23 @@ module TencentCloud
|
|
|
8334
8377
|
|
|
8335
8378
|
# ListReleaseConfigPreview请求参数结构体
|
|
8336
8379
|
class ListReleaseConfigPreviewRequest < TencentCloud::Common::AbstractModel
|
|
8337
|
-
# @param BotBizId: 应用ID
|
|
8380
|
+
# @param BotBizId: 应用ID(获取方法参看如何获取 [BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa))
|
|
8338
8381
|
# @type BotBizId: String
|
|
8339
|
-
# @param PageNumber:
|
|
8382
|
+
# @param PageNumber: 页码(必须大于0)
|
|
8340
8383
|
# @type PageNumber: Integer
|
|
8341
|
-
# @param PageSize:
|
|
8384
|
+
# @param PageSize: 每页数量(取值范围为1-200)
|
|
8342
8385
|
# @type PageSize: Integer
|
|
8343
|
-
# @param Query:
|
|
8386
|
+
# @param Query: 查询内容关键字,用于模糊查询,若未提供该参数,默认为查询全部。
|
|
8344
8387
|
# @type Query: String
|
|
8345
|
-
# @param ReleaseBizId: 发布单ID
|
|
8388
|
+
# @param ReleaseBizId: 发布单ID(可以通过[ListRelease](https://cloud.tencent.com/document/product/1759/105077)获得)
|
|
8346
8389
|
# @type ReleaseBizId: String
|
|
8347
8390
|
# @param Actions: 状态(1新增2更新3删除)
|
|
8348
8391
|
# @type Actions: Array
|
|
8349
|
-
# @param StartTime:
|
|
8392
|
+
# @param StartTime: 开始时间。Unix 时间戳,单位是秒,默认为空。
|
|
8350
8393
|
# @type StartTime: String
|
|
8351
|
-
# @param EndTime:
|
|
8394
|
+
# @param EndTime: 结束时间。Unix 时间戳,单位是秒,默认为空。
|
|
8352
8395
|
# @type EndTime: String
|
|
8353
|
-
# @param ReleaseStatus: 发布状态
|
|
8396
|
+
# @param ReleaseStatus: 发布状态(2 待发布 3 发布中 4 已发布 5 发布失败),默认为空
|
|
8354
8397
|
# @type ReleaseStatus: Array
|
|
8355
8398
|
|
|
8356
8399
|
attr_accessor :BotBizId, :PageNumber, :PageSize, :Query, :ReleaseBizId, :Actions, :StartTime, :EndTime, :ReleaseStatus
|
|
@@ -8413,21 +8456,21 @@ module TencentCloud
|
|
|
8413
8456
|
|
|
8414
8457
|
# ListReleaseDocPreview请求参数结构体
|
|
8415
8458
|
class ListReleaseDocPreviewRequest < TencentCloud::Common::AbstractModel
|
|
8416
|
-
# @param BotBizId: 应用ID
|
|
8459
|
+
# @param BotBizId: 应用ID(获取方法参看如何获取 [BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa))
|
|
8417
8460
|
# @type BotBizId: String
|
|
8418
|
-
# @param PageNumber:
|
|
8461
|
+
# @param PageNumber: 页码(必须大于0)
|
|
8419
8462
|
# @type PageNumber: Integer
|
|
8420
|
-
# @param PageSize:
|
|
8463
|
+
# @param PageSize: 每页数量(取值范围为1-200)
|
|
8421
8464
|
# @type PageSize: Integer
|
|
8422
|
-
# @param Query:
|
|
8465
|
+
# @param Query: 查询内容关键字,用于模糊查询,若未提供该参数,默认为查询全部。
|
|
8423
8466
|
# @type Query: String
|
|
8424
|
-
# @param ReleaseBizId: 发布单ID
|
|
8467
|
+
# @param ReleaseBizId: 发布单ID(可以通过[ListRelease](https://cloud.tencent.com/document/product/1759/105077)获得)
|
|
8425
8468
|
# @type ReleaseBizId: String
|
|
8426
|
-
# @param StartTime:
|
|
8469
|
+
# @param StartTime: 开始时间。Unix 时间戳,单位是秒,默认为空。
|
|
8427
8470
|
# @type StartTime: String
|
|
8428
|
-
# @param EndTime:
|
|
8471
|
+
# @param EndTime: 结束时间。Unix 时间戳,单位是秒,默认为空。
|
|
8429
8472
|
# @type EndTime: String
|
|
8430
|
-
# @param Actions: 状态(1新增2修改3删除)
|
|
8473
|
+
# @param Actions: 状态(1新增2修改3删除),其和ReleaseStatus的区别为: Actions表示的是对数据/内容的操作状态,ReleaseStatus表示数据 / 内容本身的发布状态
|
|
8431
8474
|
# @type Actions: Array
|
|
8432
8475
|
|
|
8433
8476
|
attr_accessor :BotBizId, :PageNumber, :PageSize, :Query, :ReleaseBizId, :StartTime, :EndTime, :Actions
|
|
@@ -8536,23 +8579,23 @@ module TencentCloud
|
|
|
8536
8579
|
|
|
8537
8580
|
# ListReleaseQAPreview请求参数结构体
|
|
8538
8581
|
class ListReleaseQAPreviewRequest < TencentCloud::Common::AbstractModel
|
|
8539
|
-
# @param BotBizId: 应用ID
|
|
8582
|
+
# @param BotBizId: 应用ID(获取方法参看如何获取 [BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa))
|
|
8540
8583
|
# @type BotBizId: String
|
|
8541
|
-
# @param PageNumber:
|
|
8584
|
+
# @param PageNumber: 页码(必须大于0)
|
|
8542
8585
|
# @type PageNumber: Integer
|
|
8543
|
-
# @param PageSize:
|
|
8586
|
+
# @param PageSize: 每页数量(取值范围为1-200)
|
|
8544
8587
|
# @type PageSize: Integer
|
|
8545
|
-
# @param Query:
|
|
8588
|
+
# @param Query: 查询内容关键字,用于模糊查询,若未提供该参数,默认为查询全部。
|
|
8546
8589
|
# @type Query: String
|
|
8547
|
-
# @param ReleaseBizId: 发布单ID
|
|
8590
|
+
# @param ReleaseBizId: 发布单ID(可以通过[ListRelease](https://cloud.tencent.com/document/product/1759/105077)获得)
|
|
8548
8591
|
# @type ReleaseBizId: String
|
|
8549
|
-
# @param StartTime:
|
|
8592
|
+
# @param StartTime: 开始时间。Unix 时间戳,单位是秒,默认为空。
|
|
8550
8593
|
# @type StartTime: String
|
|
8551
|
-
# @param EndTime:
|
|
8594
|
+
# @param EndTime: 结束时间。Unix 时间戳,单位是秒,默认为空。
|
|
8552
8595
|
# @type EndTime: String
|
|
8553
|
-
# @param Actions: 状态(1新增2修改3删除)
|
|
8596
|
+
# @param Actions: 状态(1新增2修改3删除),其和ReleaseStatus的区别为:Actions表示的是对数据/内容的操作状态,ReleaseStatus表示数据/内容本身的发布状态
|
|
8554
8597
|
# @type Actions: Array
|
|
8555
|
-
# @param ReleaseStatus: 发布状态(4发布成功5发布失败)
|
|
8598
|
+
# @param ReleaseStatus: 发布状态(4发布成功5发布失败)。其和Actions的区别为:Actions表示的是对数据/内容的操作状态,ReleaseStatus表示数据/内容本身的发布状态
|
|
8556
8599
|
# @type ReleaseStatus: Array
|
|
8557
8600
|
|
|
8558
8601
|
attr_accessor :BotBizId, :PageNumber, :PageSize, :Query, :ReleaseBizId, :StartTime, :EndTime, :Actions, :ReleaseStatus
|
|
@@ -8670,11 +8713,11 @@ module TencentCloud
|
|
|
8670
8713
|
|
|
8671
8714
|
# ListSelectDoc请求参数结构体
|
|
8672
8715
|
class ListSelectDocRequest < TencentCloud::Common::AbstractModel
|
|
8673
|
-
# @param BotBizId: 应用ID
|
|
8716
|
+
# @param BotBizId: 应用ID,获取方法参看如何获取[BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa)
|
|
8674
8717
|
# @type BotBizId: String
|
|
8675
8718
|
# @param FileName: 文档名称。可通过文档名称检索支持生成问答的文档,不支持xlsx、xls、csv格式
|
|
8676
8719
|
# @type FileName: String
|
|
8677
|
-
# @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 已发布的文档支持生成问答(未填写时默认值为空数组)
|
|
8678
8721
|
# @type Status: Array
|
|
8679
8722
|
|
|
8680
8723
|
attr_accessor :BotBizId, :FileName, :Status
|
|
@@ -8781,26 +8824,28 @@ module TencentCloud
|
|
|
8781
8824
|
|
|
8782
8825
|
# ListUnsatisfiedReply请求参数结构体
|
|
8783
8826
|
class ListUnsatisfiedReplyRequest < TencentCloud::Common::AbstractModel
|
|
8784
|
-
# @param BotBizId: 应用ID
|
|
8827
|
+
# @param BotBizId: 应用ID,获取方法参看如何获取[BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa)
|
|
8785
8828
|
# @type BotBizId: String
|
|
8786
|
-
# @param PageNumber:
|
|
8829
|
+
# @param PageNumber: 页码,取值范围:大于0
|
|
8787
8830
|
# @type PageNumber: Integer
|
|
8788
|
-
# @param PageSize:
|
|
8831
|
+
# @param PageSize: 分页数量,取值范围:大于0
|
|
8789
8832
|
# @type PageSize: Integer
|
|
8790
8833
|
# @param LoginUin: 登录用户主账号(集成商模式必填)
|
|
8791
8834
|
# @type LoginUin: String
|
|
8792
8835
|
# @param LoginSubAccountUin: 登录用户子账号(集成商模式必填)
|
|
8793
8836
|
# @type LoginSubAccountUin: String
|
|
8794
|
-
# @param Query: 用户请求(问题或答案)
|
|
8837
|
+
# @param Query: 用户请求(问题或答案),按关键词检索,可匹配用户问题或答案
|
|
8795
8838
|
# @type Query: String
|
|
8796
|
-
# @param Reasons:
|
|
8839
|
+
# @param Reasons: 按错误类型检索
|
|
8797
8840
|
# @type Reasons: Array
|
|
8798
|
-
# @param Status:
|
|
8841
|
+
# @param Status: 按操作状态检索 0-全部 1-待处理 2-已处理【包括答案纠错,拒答,忽略】,不填时默认值为0
|
|
8799
8842
|
# @type Status: Integer
|
|
8843
|
+
# @param HandlingStatuses: 处理状态 0-待处理 1-已拒答 2-已忽略 3-已添加为新问答 4-已添加为相似问
|
|
8844
|
+
# @type HandlingStatuses: Array
|
|
8800
8845
|
|
|
8801
|
-
attr_accessor :BotBizId, :PageNumber, :PageSize, :LoginUin, :LoginSubAccountUin, :Query, :Reasons, :Status
|
|
8846
|
+
attr_accessor :BotBizId, :PageNumber, :PageSize, :LoginUin, :LoginSubAccountUin, :Query, :Reasons, :Status, :HandlingStatuses
|
|
8802
8847
|
|
|
8803
|
-
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)
|
|
8804
8849
|
@BotBizId = botbizid
|
|
8805
8850
|
@PageNumber = pagenumber
|
|
8806
8851
|
@PageSize = pagesize
|
|
@@ -8809,6 +8854,7 @@ module TencentCloud
|
|
|
8809
8854
|
@Query = query
|
|
8810
8855
|
@Reasons = reasons
|
|
8811
8856
|
@Status = status
|
|
8857
|
+
@HandlingStatuses = handlingstatuses
|
|
8812
8858
|
end
|
|
8813
8859
|
|
|
8814
8860
|
def deserialize(params)
|
|
@@ -8820,6 +8866,7 @@ module TencentCloud
|
|
|
8820
8866
|
@Query = params['Query']
|
|
8821
8867
|
@Reasons = params['Reasons']
|
|
8822
8868
|
@Status = params['Status']
|
|
8869
|
+
@HandlingStatuses = params['HandlingStatuses']
|
|
8823
8870
|
end
|
|
8824
8871
|
end
|
|
8825
8872
|
|
|
@@ -8956,13 +9003,13 @@ module TencentCloud
|
|
|
8956
9003
|
|
|
8957
9004
|
# ListWorkflowRuns请求参数结构体
|
|
8958
9005
|
class ListWorkflowRunsRequest < TencentCloud::Common::AbstractModel
|
|
8959
|
-
# @param AppBizId: 应用ID
|
|
9006
|
+
# @param AppBizId: 应用ID, 获取方法参看如何获取 [BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa)
|
|
8960
9007
|
# @type AppBizId: String
|
|
8961
|
-
# @param PageSize: 每页数量
|
|
9008
|
+
# @param PageSize: 每页数量(取值范围1-200)
|
|
8962
9009
|
# @type PageSize: Integer
|
|
8963
9010
|
# @param RunEnv: 运行环境。0: 测试环境; 1: 正式环境
|
|
8964
9011
|
# @type RunEnv: Integer
|
|
8965
|
-
# @param Page: 页码
|
|
9012
|
+
# @param Page: 页码(必须大于0)
|
|
8966
9013
|
# @type Page: Integer
|
|
8967
9014
|
# @param LoginUin: 登录用户主账号(集成商模式必填)
|
|
8968
9015
|
# @type LoginUin: String
|
|
@@ -9767,12 +9814,12 @@ module TencentCloud
|
|
|
9767
9814
|
|
|
9768
9815
|
# ModifyRejectedQuestion请求参数结构体
|
|
9769
9816
|
class ModifyRejectedQuestionRequest < TencentCloud::Common::AbstractModel
|
|
9770
|
-
# @param BotBizId: 应用ID
|
|
9817
|
+
# @param BotBizId: 应用ID, 获取方法参看如何获取 [BotBizId](https://cloud.tencent.com/document/product/1759/109469#4eecb8c1-6ce4-45f5-8fa2-b269449d8efa)
|
|
9771
9818
|
# @type BotBizId: String
|
|
9772
9819
|
# @param Question: 拒答问题
|
|
9773
9820
|
|
|
9774
9821
|
# @type Question: String
|
|
9775
|
-
# @param RejectedBizId: 拒答问题来源的数据源唯一id
|
|
9822
|
+
# @param RejectedBizId: 拒答问题来源的数据源唯一id, 通过[ListRejectedQuestion](https://capi.woa.com/api/detail?product=lke&version=2023-11-30&action=ListRejectedQuestion)接口获取
|
|
9776
9823
|
|
|
9777
9824
|
|
|
9778
9825
|
# @type RejectedBizId: String
|
|
@@ -10075,6 +10122,26 @@ module TencentCloud
|
|
|
10075
10122
|
end
|
|
10076
10123
|
end
|
|
10077
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
|
+
|
|
10078
10145
|
# 节点运行的基本信息
|
|
10079
10146
|
class NodeRunBase < TencentCloud::Common::AbstractModel
|
|
10080
10147
|
# @param NodeRunId: 节点运行的ID
|
|
@@ -10761,7 +10828,7 @@ module TencentCloud
|
|
|
10761
10828
|
class RateMsgRecordRequest < TencentCloud::Common::AbstractModel
|
|
10762
10829
|
# @param BotAppKey: 应用appKey
|
|
10763
10830
|
# @type BotAppKey: String
|
|
10764
|
-
# @param RecordId: 消息ID 【大模型回复答案的RecordID
|
|
10831
|
+
# @param RecordId: 消息ID 【大模型回复答案的RecordID】可以通过[GetMsgRecord](https://cloud.tencent.com/document/product/1759/105090)接口获取
|
|
10765
10832
|
# @type RecordId: String
|
|
10766
10833
|
# @param Score: 0: 取消前置状态 ; 1: 点赞; 2: 点踩;
|
|
10767
10834
|
# 注:
|
|
@@ -11679,15 +11746,19 @@ module TencentCloud
|
|
|
11679
11746
|
# @param RerankModel: 结果重排序模型
|
|
11680
11747
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
11681
11748
|
# @type RerankModel: String
|
|
11749
|
+
# @param NatureLanguageToSqlModelConfig: NL2SQL模型配置
|
|
11750
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
11751
|
+
# @type NatureLanguageToSqlModelConfig: :class:`Tencentcloud::Lke.v20231130.models.NL2SQLModelConfig`
|
|
11682
11752
|
|
|
11683
|
-
attr_accessor :StrategyType, :TableEnhancement, :EmbeddingModel, :RerankModelSwitch, :RerankModel
|
|
11753
|
+
attr_accessor :StrategyType, :TableEnhancement, :EmbeddingModel, :RerankModelSwitch, :RerankModel, :NatureLanguageToSqlModelConfig
|
|
11684
11754
|
|
|
11685
|
-
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)
|
|
11686
11756
|
@StrategyType = strategytype
|
|
11687
11757
|
@TableEnhancement = tableenhancement
|
|
11688
11758
|
@EmbeddingModel = embeddingmodel
|
|
11689
11759
|
@RerankModelSwitch = rerankmodelswitch
|
|
11690
11760
|
@RerankModel = rerankmodel
|
|
11761
|
+
@NatureLanguageToSqlModelConfig = naturelanguagetosqlmodelconfig
|
|
11691
11762
|
end
|
|
11692
11763
|
|
|
11693
11764
|
def deserialize(params)
|
|
@@ -11696,6 +11767,10 @@ module TencentCloud
|
|
|
11696
11767
|
@EmbeddingModel = params['EmbeddingModel']
|
|
11697
11768
|
@RerankModelSwitch = params['RerankModelSwitch']
|
|
11698
11769
|
@RerankModel = params['RerankModel']
|
|
11770
|
+
unless params['NatureLanguageToSqlModelConfig'].nil?
|
|
11771
|
+
@NatureLanguageToSqlModelConfig = NL2SQLModelConfig.new
|
|
11772
|
+
@NatureLanguageToSqlModelConfig.deserialize(params['NatureLanguageToSqlModelConfig'])
|
|
11773
|
+
end
|
|
11699
11774
|
end
|
|
11700
11775
|
end
|
|
11701
11776
|
|
|
@@ -12626,14 +12701,17 @@ module TencentCloud
|
|
|
12626
12701
|
# @type LoginUin: String
|
|
12627
12702
|
# @param LoginSubAccountUin: 登录用户子账号(集成商模式必填)
|
|
12628
12703
|
# @type LoginSubAccountUin: String
|
|
12704
|
+
# @param KnowledgeBizId: 用于操作共享知识库
|
|
12705
|
+
# @type KnowledgeBizId: String
|
|
12629
12706
|
|
|
12630
|
-
attr_accessor :List, :BotBizId, :LoginUin, :LoginSubAccountUin
|
|
12707
|
+
attr_accessor :List, :BotBizId, :LoginUin, :LoginSubAccountUin, :KnowledgeBizId
|
|
12631
12708
|
|
|
12632
|
-
def initialize(list=nil, botbizid=nil, loginuin=nil, loginsubaccountuin=nil)
|
|
12709
|
+
def initialize(list=nil, botbizid=nil, loginuin=nil, loginsubaccountuin=nil, knowledgebizid=nil)
|
|
12633
12710
|
@List = list
|
|
12634
12711
|
@BotBizId = botbizid
|
|
12635
12712
|
@LoginUin = loginuin
|
|
12636
12713
|
@LoginSubAccountUin = loginsubaccountuin
|
|
12714
|
+
@KnowledgeBizId = knowledgebizid
|
|
12637
12715
|
end
|
|
12638
12716
|
|
|
12639
12717
|
def deserialize(params)
|
|
@@ -12648,6 +12726,7 @@ module TencentCloud
|
|
|
12648
12726
|
@BotBizId = params['BotBizId']
|
|
12649
12727
|
@LoginUin = params['LoginUin']
|
|
12650
12728
|
@LoginSubAccountUin = params['LoginSubAccountUin']
|
|
12729
|
+
@KnowledgeBizId = params['KnowledgeBizId']
|
|
12651
12730
|
end
|
|
12652
12731
|
end
|
|
12653
12732
|
|
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.1185
|
|
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-12-
|
|
11
|
+
date: 2025-12-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|