tencentcloud-sdk-lke 3.0.1124 → 3.0.1131
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 +51 -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: e4aed4baea658400ce64bb32b2d945d23ea4bcc1
|
4
|
+
data.tar.gz: b228cd75ab1b20893cc1ca660cc2ab85f13a0b92
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 94cbc59e2c8f57004b1a2ea0c32e7a61b65ee2c57398113c96658f51f9dbbfc1adbffae99bda5f6e7ad56f56de8b33bcc58ac359a4480dbc8d7ca717f4632bc3
|
7
|
+
data.tar.gz: e77bca4179167cc259ec44f24c53be33514d25096d8312f5603fdf66bc66f19bffee3422dd2f8725af229a8a5c396aa05270113834d395007b2e3d81c3826534
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1131
|
data/lib/v20231130/models.rb
CHANGED
@@ -175,13 +175,22 @@ module TencentCloud
|
|
175
175
|
# @type UserInputValue: :class:`Tencentcloud::Lke.v20231130.models.AgentInputUserInputValue`
|
176
176
|
# @param CustomVarId: 自定义变量(API参数)
|
177
177
|
# @type CustomVarId: String
|
178
|
+
# @param EnvVarId: 环境变量参数
|
179
|
+
# @type EnvVarId: String
|
180
|
+
# @param AppVarId: 应用变量参数
|
181
|
+
# @type AppVarId: String
|
182
|
+
# @param SystemVariable: 系统参数
|
183
|
+
# @type SystemVariable: :class:`Tencentcloud::Lke.v20231130.models.AgentInputSystemVariable`
|
178
184
|
|
179
|
-
attr_accessor :InputType, :UserInputValue, :CustomVarId
|
185
|
+
attr_accessor :InputType, :UserInputValue, :CustomVarId, :EnvVarId, :AppVarId, :SystemVariable
|
180
186
|
|
181
|
-
def initialize(inputtype=nil, userinputvalue=nil, customvarid=nil)
|
187
|
+
def initialize(inputtype=nil, userinputvalue=nil, customvarid=nil, envvarid=nil, appvarid=nil, systemvariable=nil)
|
182
188
|
@InputType = inputtype
|
183
189
|
@UserInputValue = userinputvalue
|
184
190
|
@CustomVarId = customvarid
|
191
|
+
@EnvVarId = envvarid
|
192
|
+
@AppVarId = appvarid
|
193
|
+
@SystemVariable = systemvariable
|
185
194
|
end
|
186
195
|
|
187
196
|
def deserialize(params)
|
@@ -191,6 +200,32 @@ module TencentCloud
|
|
191
200
|
@UserInputValue.deserialize(params['UserInputValue'])
|
192
201
|
end
|
193
202
|
@CustomVarId = params['CustomVarId']
|
203
|
+
@EnvVarId = params['EnvVarId']
|
204
|
+
@AppVarId = params['AppVarId']
|
205
|
+
unless params['SystemVariable'].nil?
|
206
|
+
@SystemVariable = AgentInputSystemVariable.new
|
207
|
+
@SystemVariable.deserialize(params['SystemVariable'])
|
208
|
+
end
|
209
|
+
end
|
210
|
+
end
|
211
|
+
|
212
|
+
# 系统参数
|
213
|
+
class AgentInputSystemVariable < TencentCloud::Common::AbstractModel
|
214
|
+
# @param Name: 系统参数名
|
215
|
+
# @type Name: String
|
216
|
+
# @param DialogHistoryLimit: 对话历史轮数的配置;如果Input是系统变量中的“对话历史”时才使用;
|
217
|
+
# @type DialogHistoryLimit: Integer
|
218
|
+
|
219
|
+
attr_accessor :Name, :DialogHistoryLimit
|
220
|
+
|
221
|
+
def initialize(name=nil, dialoghistorylimit=nil)
|
222
|
+
@Name = name
|
223
|
+
@DialogHistoryLimit = dialoghistorylimit
|
224
|
+
end
|
225
|
+
|
226
|
+
def deserialize(params)
|
227
|
+
@Name = params['Name']
|
228
|
+
@DialogHistoryLimit = params['DialogHistoryLimit']
|
194
229
|
end
|
195
230
|
end
|
196
231
|
|
@@ -1286,10 +1321,13 @@ module TencentCloud
|
|
1286
1321
|
# @type ThoughtModelAliasName: String
|
1287
1322
|
# @param PermissionIds: 权限位信息
|
1288
1323
|
# @type PermissionIds: Array
|
1324
|
+
# @param Creator: 创建人昵称
|
1325
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1326
|
+
# @type Creator: String
|
1289
1327
|
|
1290
|
-
attr_accessor :AppType, :AppTypeDesc, :AppBizId, :Name, :Avatar, :Desc, :AppStatus, :AppStatusDesc, :UpdateTime, :Operator, :ModelName, :ModelAliasName, :Pattern, :ThoughtModelAliasName, :PermissionIds
|
1328
|
+
attr_accessor :AppType, :AppTypeDesc, :AppBizId, :Name, :Avatar, :Desc, :AppStatus, :AppStatusDesc, :UpdateTime, :Operator, :ModelName, :ModelAliasName, :Pattern, :ThoughtModelAliasName, :PermissionIds, :Creator
|
1291
1329
|
|
1292
|
-
def initialize(apptype=nil, apptypedesc=nil, appbizid=nil, name=nil, avatar=nil, desc=nil, appstatus=nil, appstatusdesc=nil, updatetime=nil, operator=nil, modelname=nil, modelaliasname=nil, pattern=nil, thoughtmodelaliasname=nil, permissionids=nil)
|
1330
|
+
def initialize(apptype=nil, apptypedesc=nil, appbizid=nil, name=nil, avatar=nil, desc=nil, appstatus=nil, appstatusdesc=nil, updatetime=nil, operator=nil, modelname=nil, modelaliasname=nil, pattern=nil, thoughtmodelaliasname=nil, permissionids=nil, creator=nil)
|
1293
1331
|
@AppType = apptype
|
1294
1332
|
@AppTypeDesc = apptypedesc
|
1295
1333
|
@AppBizId = appbizid
|
@@ -1305,6 +1343,7 @@ module TencentCloud
|
|
1305
1343
|
@Pattern = pattern
|
1306
1344
|
@ThoughtModelAliasName = thoughtmodelaliasname
|
1307
1345
|
@PermissionIds = permissionids
|
1346
|
+
@Creator = creator
|
1308
1347
|
end
|
1309
1348
|
|
1310
1349
|
def deserialize(params)
|
@@ -1323,6 +1362,7 @@ module TencentCloud
|
|
1323
1362
|
@Pattern = params['Pattern']
|
1324
1363
|
@ThoughtModelAliasName = params['ThoughtModelAliasName']
|
1325
1364
|
@PermissionIds = params['PermissionIds']
|
1365
|
+
@Creator = params['Creator']
|
1326
1366
|
end
|
1327
1367
|
end
|
1328
1368
|
|
@@ -6629,10 +6669,13 @@ module TencentCloud
|
|
6629
6669
|
# @param UseRecommended: 是否打开推荐问题开关
|
6630
6670
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
6631
6671
|
# @type UseRecommended: Boolean
|
6672
|
+
# @param RecommendedPromptMode: 推荐问模式,0.结合知识库&对话历史推荐问题Prompt(默认) 1.仅结合知识库输出推荐问的prompt
|
6673
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
6674
|
+
# @type RecommendedPromptMode: Integer
|
6632
6675
|
|
6633
|
-
attr_accessor :Method, :UseGeneralKnowledge, :BareAnswer, :ShowQuestionClarify, :UseQuestionClarify, :QuestionClarifyKeywords, :UseRecommended
|
6676
|
+
attr_accessor :Method, :UseGeneralKnowledge, :BareAnswer, :ShowQuestionClarify, :UseQuestionClarify, :QuestionClarifyKeywords, :UseRecommended, :RecommendedPromptMode
|
6634
6677
|
|
6635
|
-
def initialize(method=nil, usegeneralknowledge=nil, bareanswer=nil, showquestionclarify=nil, usequestionclarify=nil, questionclarifykeywords=nil, userecommended=nil)
|
6678
|
+
def initialize(method=nil, usegeneralknowledge=nil, bareanswer=nil, showquestionclarify=nil, usequestionclarify=nil, questionclarifykeywords=nil, userecommended=nil, recommendedpromptmode=nil)
|
6636
6679
|
@Method = method
|
6637
6680
|
@UseGeneralKnowledge = usegeneralknowledge
|
6638
6681
|
@BareAnswer = bareanswer
|
@@ -6640,6 +6683,7 @@ module TencentCloud
|
|
6640
6683
|
@UseQuestionClarify = usequestionclarify
|
6641
6684
|
@QuestionClarifyKeywords = questionclarifykeywords
|
6642
6685
|
@UseRecommended = userecommended
|
6686
|
+
@RecommendedPromptMode = recommendedpromptmode
|
6643
6687
|
end
|
6644
6688
|
|
6645
6689
|
def deserialize(params)
|
@@ -6650,6 +6694,7 @@ module TencentCloud
|
|
6650
6694
|
@UseQuestionClarify = params['UseQuestionClarify']
|
6651
6695
|
@QuestionClarifyKeywords = params['QuestionClarifyKeywords']
|
6652
6696
|
@UseRecommended = params['UseRecommended']
|
6697
|
+
@RecommendedPromptMode = params['RecommendedPromptMode']
|
6653
6698
|
end
|
6654
6699
|
end
|
6655
6700
|
|
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.1131
|
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-08-
|
11
|
+
date: 2025-08-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|