tencentcloud-sdk-lke 3.0.1081 → 3.0.1084
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/models.rb +15 -6
- 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: 0114cfac8a0d055629104b81d9230891db6d7d5e
|
4
|
+
data.tar.gz: 3f9eadfe934b652ece0f5bb80898c6ccc1b09dcf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2919c3da36c1a36d2447ae40971b95668f487e196106cc61496d6e37f3ae4d426d1517809189cdc29a5f79c1dc8256c255ae9a9e7d124f7c5d338a32eaebbfde
|
7
|
+
data.tar.gz: cbf2626bb5c66ca830f2346b83b3dbd99390d049fec7884fce348eb7e89d3c04ceea5462981decc58452ef102ca4efba0a565361561b59b8226b3d00c3b63932
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1084
|
data/lib/v20231130/models.rb
CHANGED
@@ -5526,14 +5526,18 @@ module TencentCloud
|
|
5526
5526
|
# @param ExceedCharSize: 超量字符数
|
5527
5527
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
5528
5528
|
# @type ExceedCharSize: String
|
5529
|
+
# @param IsSharedKnowledge: 是否共享知识库类型
|
5530
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5531
|
+
# @type IsSharedKnowledge: Boolean
|
5529
5532
|
|
5530
|
-
attr_accessor :AppName, :UsedCharSize, :Proportion, :ExceedCharSize
|
5533
|
+
attr_accessor :AppName, :UsedCharSize, :Proportion, :ExceedCharSize, :IsSharedKnowledge
|
5531
5534
|
|
5532
|
-
def initialize(appname=nil, usedcharsize=nil, proportion=nil, exceedcharsize=nil)
|
5535
|
+
def initialize(appname=nil, usedcharsize=nil, proportion=nil, exceedcharsize=nil, issharedknowledge=nil)
|
5533
5536
|
@AppName = appname
|
5534
5537
|
@UsedCharSize = usedcharsize
|
5535
5538
|
@Proportion = proportion
|
5536
5539
|
@ExceedCharSize = exceedcharsize
|
5540
|
+
@IsSharedKnowledge = issharedknowledge
|
5537
5541
|
end
|
5538
5542
|
|
5539
5543
|
def deserialize(params)
|
@@ -5541,6 +5545,7 @@ module TencentCloud
|
|
5541
5545
|
@UsedCharSize = params['UsedCharSize']
|
5542
5546
|
@Proportion = params['Proportion']
|
5543
5547
|
@ExceedCharSize = params['ExceedCharSize']
|
5548
|
+
@IsSharedKnowledge = params['IsSharedKnowledge']
|
5544
5549
|
end
|
5545
5550
|
end
|
5546
5551
|
|
@@ -8180,7 +8185,7 @@ module TencentCloud
|
|
8180
8185
|
# @type DocBizId: String
|
8181
8186
|
# @param IsRefer: 是否引用链接
|
8182
8187
|
# @type IsRefer: Boolean
|
8183
|
-
# @param AttrRange:
|
8188
|
+
# @param AttrRange: 标签适用范围,需要传参为1
|
8184
8189
|
# @type AttrRange: Integer
|
8185
8190
|
# @param LoginUin: 登录用户主账号(集成商模式必填)
|
8186
8191
|
# @type LoginUin: String
|
@@ -8199,10 +8204,12 @@ module TencentCloud
|
|
8199
8204
|
# @type ExpireEnd: String
|
8200
8205
|
# @param CateBizId: 分类ID
|
8201
8206
|
# @type CateBizId: String
|
8207
|
+
# @param IsDownload: 是否可下载,IsRefer为true并且ReferUrlType为0时,该值才有意义
|
8208
|
+
# @type IsDownload: Boolean
|
8202
8209
|
|
8203
|
-
attr_accessor :BotBizId, :DocBizId, :IsRefer, :AttrRange, :LoginUin, :LoginSubAccountUin, :AttrLabels, :WebUrl, :ReferUrlType, :ExpireStart, :ExpireEnd, :CateBizId
|
8210
|
+
attr_accessor :BotBizId, :DocBizId, :IsRefer, :AttrRange, :LoginUin, :LoginSubAccountUin, :AttrLabels, :WebUrl, :ReferUrlType, :ExpireStart, :ExpireEnd, :CateBizId, :IsDownload
|
8204
8211
|
|
8205
|
-
def initialize(botbizid=nil, docbizid=nil, isrefer=nil, attrrange=nil, loginuin=nil, loginsubaccountuin=nil, attrlabels=nil, weburl=nil, referurltype=nil, expirestart=nil, expireend=nil, catebizid=nil)
|
8212
|
+
def initialize(botbizid=nil, docbizid=nil, isrefer=nil, attrrange=nil, loginuin=nil, loginsubaccountuin=nil, attrlabels=nil, weburl=nil, referurltype=nil, expirestart=nil, expireend=nil, catebizid=nil, isdownload=nil)
|
8206
8213
|
@BotBizId = botbizid
|
8207
8214
|
@DocBizId = docbizid
|
8208
8215
|
@IsRefer = isrefer
|
@@ -8215,6 +8222,7 @@ module TencentCloud
|
|
8215
8222
|
@ExpireStart = expirestart
|
8216
8223
|
@ExpireEnd = expireend
|
8217
8224
|
@CateBizId = catebizid
|
8225
|
+
@IsDownload = isdownload
|
8218
8226
|
end
|
8219
8227
|
|
8220
8228
|
def deserialize(params)
|
@@ -8237,6 +8245,7 @@ module TencentCloud
|
|
8237
8245
|
@ExpireStart = params['ExpireStart']
|
8238
8246
|
@ExpireEnd = params['ExpireEnd']
|
8239
8247
|
@CateBizId = params['CateBizId']
|
8248
|
+
@IsDownload = params['IsDownload']
|
8240
8249
|
end
|
8241
8250
|
end
|
8242
8251
|
|
@@ -9417,7 +9426,7 @@ module TencentCloud
|
|
9417
9426
|
class RateMsgRecordRequest < TencentCloud::Common::AbstractModel
|
9418
9427
|
# @param BotAppKey: 应用appKey
|
9419
9428
|
# @type BotAppKey: String
|
9420
|
-
# @param RecordId: 消息ID
|
9429
|
+
# @param RecordId: 消息ID 【大模型回复答案的RecordID】
|
9421
9430
|
# @type RecordId: String
|
9422
9431
|
# @param Score: 1点赞2点踩
|
9423
9432
|
# @type Score: Integer
|
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.1084
|
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-06-
|
11
|
+
date: 2025-06-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|