tencentcloud-sdk-lke 3.0.1124 → 3.0.1138
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 +84 -22
- 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: 0a3004db386d80118fe08be67875d85e9fd8289f
|
4
|
+
data.tar.gz: 0a908a00bdc3b2c800b5f437ca6b64b4d5d366d3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8d53e72662bd0531387249c32c3a0594c3cc16a1dfd095485155c9a93fff055cb5167955f04bc662979f1042cf07e625033d9b338050a02b7fe7f24c595dce9f
|
7
|
+
data.tar.gz: 35cc8d4f7af16e7cc5f63ad98791fad2def1cbd02351e81b75b2cbb3f87464221cf2f910a69b664e24f8df538df0938fca20f61efe6693f4fda7f85df14c5b35
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1138
|
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
|
|
@@ -540,6 +575,7 @@ module TencentCloud
|
|
540
575
|
# @param KnowledgeQa: 知识库问答插件配置
|
541
576
|
# @type KnowledgeQa: :class:`Tencentcloud::Lke.v20231130.models.AgentKnowledgeQAPlugin`
|
542
577
|
# @param EnableRoleAuth: 是否使用一键授权
|
578
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
543
579
|
# @type EnableRoleAuth: Boolean
|
544
580
|
# @param Query: 应用配置的插件query信息
|
545
581
|
# @type Query: Array
|
@@ -1286,10 +1322,13 @@ module TencentCloud
|
|
1286
1322
|
# @type ThoughtModelAliasName: String
|
1287
1323
|
# @param PermissionIds: 权限位信息
|
1288
1324
|
# @type PermissionIds: Array
|
1325
|
+
# @param Creator: 创建人昵称
|
1326
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1327
|
+
# @type Creator: String
|
1289
1328
|
|
1290
|
-
attr_accessor :AppType, :AppTypeDesc, :AppBizId, :Name, :Avatar, :Desc, :AppStatus, :AppStatusDesc, :UpdateTime, :Operator, :ModelName, :ModelAliasName, :Pattern, :ThoughtModelAliasName, :PermissionIds
|
1329
|
+
attr_accessor :AppType, :AppTypeDesc, :AppBizId, :Name, :Avatar, :Desc, :AppStatus, :AppStatusDesc, :UpdateTime, :Operator, :ModelName, :ModelAliasName, :Pattern, :ThoughtModelAliasName, :PermissionIds, :Creator
|
1291
1330
|
|
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)
|
1331
|
+
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
1332
|
@AppType = apptype
|
1294
1333
|
@AppTypeDesc = apptypedesc
|
1295
1334
|
@AppBizId = appbizid
|
@@ -1305,6 +1344,7 @@ module TencentCloud
|
|
1305
1344
|
@Pattern = pattern
|
1306
1345
|
@ThoughtModelAliasName = thoughtmodelaliasname
|
1307
1346
|
@PermissionIds = permissionids
|
1347
|
+
@Creator = creator
|
1308
1348
|
end
|
1309
1349
|
|
1310
1350
|
def deserialize(params)
|
@@ -1323,6 +1363,7 @@ module TencentCloud
|
|
1323
1363
|
@Pattern = params['Pattern']
|
1324
1364
|
@ThoughtModelAliasName = params['ThoughtModelAliasName']
|
1325
1365
|
@PermissionIds = params['PermissionIds']
|
1366
|
+
@Creator = params['Creator']
|
1326
1367
|
end
|
1327
1368
|
end
|
1328
1369
|
|
@@ -2497,8 +2538,8 @@ module TencentCloud
|
|
2497
2538
|
|
2498
2539
|
attr_accessor :KnowledgeName, :KnowledgeDescription, :EmbeddingModel, :KnowledgeType
|
2499
2540
|
extend Gem::Deprecate
|
2500
|
-
deprecate :EmbeddingModel, :none, 2025,
|
2501
|
-
deprecate :EmbeddingModel=, :none, 2025,
|
2541
|
+
deprecate :EmbeddingModel, :none, 2025, 9
|
2542
|
+
deprecate :EmbeddingModel=, :none, 2025, 9
|
2502
2543
|
|
2503
2544
|
def initialize(knowledgename=nil, knowledgedescription=nil, embeddingmodel=nil, knowledgetype=nil)
|
2504
2545
|
@KnowledgeName = knowledgename
|
@@ -3820,16 +3861,20 @@ module TencentCloud
|
|
3820
3861
|
|
3821
3862
|
# DescribeNodeRun请求参数结构体
|
3822
3863
|
class DescribeNodeRunRequest < TencentCloud::Common::AbstractModel
|
3864
|
+
# @param AppBizId: 应用ID
|
3865
|
+
# @type AppBizId: String
|
3823
3866
|
# @param NodeRunId: 节点运行实例ID
|
3824
3867
|
# @type NodeRunId: String
|
3825
3868
|
|
3826
|
-
attr_accessor :NodeRunId
|
3869
|
+
attr_accessor :AppBizId, :NodeRunId
|
3827
3870
|
|
3828
|
-
def initialize(noderunid=nil)
|
3871
|
+
def initialize(appbizid=nil, noderunid=nil)
|
3872
|
+
@AppBizId = appbizid
|
3829
3873
|
@NodeRunId = noderunid
|
3830
3874
|
end
|
3831
3875
|
|
3832
3876
|
def deserialize(params)
|
3877
|
+
@AppBizId = params['AppBizId']
|
3833
3878
|
@NodeRunId = params['NodeRunId']
|
3834
3879
|
end
|
3835
3880
|
end
|
@@ -4743,16 +4788,20 @@ module TencentCloud
|
|
4743
4788
|
|
4744
4789
|
# DescribeWorkflowRun请求参数结构体
|
4745
4790
|
class DescribeWorkflowRunRequest < TencentCloud::Common::AbstractModel
|
4791
|
+
# @param AppBizId: 应用ID
|
4792
|
+
# @type AppBizId: String
|
4746
4793
|
# @param WorkflowRunId: 工作流运行实例ID
|
4747
4794
|
# @type WorkflowRunId: String
|
4748
4795
|
|
4749
|
-
attr_accessor :WorkflowRunId
|
4796
|
+
attr_accessor :AppBizId, :WorkflowRunId
|
4750
4797
|
|
4751
|
-
def initialize(workflowrunid=nil)
|
4798
|
+
def initialize(appbizid=nil, workflowrunid=nil)
|
4799
|
+
@AppBizId = appbizid
|
4752
4800
|
@WorkflowRunId = workflowrunid
|
4753
4801
|
end
|
4754
4802
|
|
4755
4803
|
def deserialize(params)
|
4804
|
+
@AppBizId = params['AppBizId']
|
4756
4805
|
@WorkflowRunId = params['WorkflowRunId']
|
4757
4806
|
end
|
4758
4807
|
end
|
@@ -6207,10 +6256,12 @@ module TencentCloud
|
|
6207
6256
|
# @param ProcessingFlags: 知识库处理中状态标记,1:向量embedding变更中
|
6208
6257
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
6209
6258
|
# @type ProcessingFlags: Array
|
6259
|
+
# @param OwnerStaffName: 知识库拥有者的名字
|
6260
|
+
# @type OwnerStaffName: String
|
6210
6261
|
|
6211
|
-
attr_accessor :KnowledgeBizId, :KnowledgeName, :KnowledgeDescription, :EmbeddingModel, :QaExtractModel, :UpdateTime, :KnowledgeType, :OwnerStaffId, :DocTotal, :ProcessingFlags
|
6262
|
+
attr_accessor :KnowledgeBizId, :KnowledgeName, :KnowledgeDescription, :EmbeddingModel, :QaExtractModel, :UpdateTime, :KnowledgeType, :OwnerStaffId, :DocTotal, :ProcessingFlags, :OwnerStaffName
|
6212
6263
|
|
6213
|
-
def initialize(knowledgebizid=nil, knowledgename=nil, knowledgedescription=nil, embeddingmodel=nil, qaextractmodel=nil, updatetime=nil, knowledgetype=nil, ownerstaffid=nil, doctotal=nil, processingflags=nil)
|
6264
|
+
def initialize(knowledgebizid=nil, knowledgename=nil, knowledgedescription=nil, embeddingmodel=nil, qaextractmodel=nil, updatetime=nil, knowledgetype=nil, ownerstaffid=nil, doctotal=nil, processingflags=nil, ownerstaffname=nil)
|
6214
6265
|
@KnowledgeBizId = knowledgebizid
|
6215
6266
|
@KnowledgeName = knowledgename
|
6216
6267
|
@KnowledgeDescription = knowledgedescription
|
@@ -6221,6 +6272,7 @@ module TencentCloud
|
|
6221
6272
|
@OwnerStaffId = ownerstaffid
|
6222
6273
|
@DocTotal = doctotal
|
6223
6274
|
@ProcessingFlags = processingflags
|
6275
|
+
@OwnerStaffName = ownerstaffname
|
6224
6276
|
end
|
6225
6277
|
|
6226
6278
|
def deserialize(params)
|
@@ -6234,6 +6286,7 @@ module TencentCloud
|
|
6234
6286
|
@OwnerStaffId = params['OwnerStaffId']
|
6235
6287
|
@DocTotal = params['DocTotal']
|
6236
6288
|
@ProcessingFlags = params['ProcessingFlags']
|
6289
|
+
@OwnerStaffName = params['OwnerStaffName']
|
6237
6290
|
end
|
6238
6291
|
end
|
6239
6292
|
|
@@ -6629,10 +6682,13 @@ module TencentCloud
|
|
6629
6682
|
# @param UseRecommended: 是否打开推荐问题开关
|
6630
6683
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
6631
6684
|
# @type UseRecommended: Boolean
|
6685
|
+
# @param RecommendedPromptMode: 推荐问模式,0.结合知识库&对话历史推荐问题Prompt(默认) 1.仅结合知识库输出推荐问的prompt
|
6686
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
6687
|
+
# @type RecommendedPromptMode: Integer
|
6632
6688
|
|
6633
|
-
attr_accessor :Method, :UseGeneralKnowledge, :BareAnswer, :ShowQuestionClarify, :UseQuestionClarify, :QuestionClarifyKeywords, :UseRecommended
|
6689
|
+
attr_accessor :Method, :UseGeneralKnowledge, :BareAnswer, :ShowQuestionClarify, :UseQuestionClarify, :QuestionClarifyKeywords, :UseRecommended, :RecommendedPromptMode
|
6634
6690
|
|
6635
|
-
def initialize(method=nil, usegeneralknowledge=nil, bareanswer=nil, showquestionclarify=nil, usequestionclarify=nil, questionclarifykeywords=nil, userecommended=nil)
|
6691
|
+
def initialize(method=nil, usegeneralknowledge=nil, bareanswer=nil, showquestionclarify=nil, usequestionclarify=nil, questionclarifykeywords=nil, userecommended=nil, recommendedpromptmode=nil)
|
6636
6692
|
@Method = method
|
6637
6693
|
@UseGeneralKnowledge = usegeneralknowledge
|
6638
6694
|
@BareAnswer = bareanswer
|
@@ -6640,6 +6696,7 @@ module TencentCloud
|
|
6640
6696
|
@UseQuestionClarify = usequestionclarify
|
6641
6697
|
@QuestionClarifyKeywords = questionclarifykeywords
|
6642
6698
|
@UseRecommended = userecommended
|
6699
|
+
@RecommendedPromptMode = recommendedpromptmode
|
6643
6700
|
end
|
6644
6701
|
|
6645
6702
|
def deserialize(params)
|
@@ -6650,6 +6707,7 @@ module TencentCloud
|
|
6650
6707
|
@UseQuestionClarify = params['UseQuestionClarify']
|
6651
6708
|
@QuestionClarifyKeywords = params['QuestionClarifyKeywords']
|
6652
6709
|
@UseRecommended = params['UseRecommended']
|
6710
|
+
@RecommendedPromptMode = params['RecommendedPromptMode']
|
6653
6711
|
end
|
6654
6712
|
end
|
6655
6713
|
|
@@ -6870,10 +6928,10 @@ module TencentCloud
|
|
6870
6928
|
|
6871
6929
|
attr_accessor :KnowledgeName, :KnowledgeDescription, :EmbeddingModel, :QaExtractModel, :OwnerStaffId
|
6872
6930
|
extend Gem::Deprecate
|
6873
|
-
deprecate :EmbeddingModel, :none, 2025,
|
6874
|
-
deprecate :EmbeddingModel=, :none, 2025,
|
6875
|
-
deprecate :QaExtractModel, :none, 2025,
|
6876
|
-
deprecate :QaExtractModel=, :none, 2025,
|
6931
|
+
deprecate :EmbeddingModel, :none, 2025, 9
|
6932
|
+
deprecate :EmbeddingModel=, :none, 2025, 9
|
6933
|
+
deprecate :QaExtractModel, :none, 2025, 9
|
6934
|
+
deprecate :QaExtractModel=, :none, 2025, 9
|
6877
6935
|
|
6878
6936
|
def initialize(knowledgename=nil, knowledgedescription=nil, embeddingmodel=nil, qaextractmodel=nil, ownerstaffid=nil)
|
6879
6937
|
@KnowledgeName = knowledgename
|
@@ -8145,7 +8203,7 @@ module TencentCloud
|
|
8145
8203
|
# @type Desc: String
|
8146
8204
|
# @param UpdateTime: 更新时间
|
8147
8205
|
# @type UpdateTime: String
|
8148
|
-
# @param Status:
|
8206
|
+
# @param Status: 发布状态,1:待发布,2:发布中,3:发布成功,5:发布失败
|
8149
8207
|
# @type Status: Integer
|
8150
8208
|
# @param StatusDesc: 发布状态描述
|
8151
8209
|
# @type StatusDesc: String
|
@@ -8264,7 +8322,7 @@ module TencentCloud
|
|
8264
8322
|
|
8265
8323
|
# ListRelease请求参数结构体
|
8266
8324
|
class ListReleaseRequest < TencentCloud::Common::AbstractModel
|
8267
|
-
# @param BotBizId:
|
8325
|
+
# @param BotBizId: 应用ID
|
8268
8326
|
# @type BotBizId: String
|
8269
8327
|
# @param PageNumber: 页码
|
8270
8328
|
# @type PageNumber: Integer
|
@@ -11521,16 +11579,20 @@ module TencentCloud
|
|
11521
11579
|
|
11522
11580
|
# StopWorkflowRun请求参数结构体
|
11523
11581
|
class StopWorkflowRunRequest < TencentCloud::Common::AbstractModel
|
11582
|
+
# @param AppBizId: 应用ID
|
11583
|
+
# @type AppBizId: String
|
11524
11584
|
# @param WorkflowRunId: 工作流运行实例ID
|
11525
11585
|
# @type WorkflowRunId: String
|
11526
11586
|
|
11527
|
-
attr_accessor :WorkflowRunId
|
11587
|
+
attr_accessor :AppBizId, :WorkflowRunId
|
11528
11588
|
|
11529
|
-
def initialize(workflowrunid=nil)
|
11589
|
+
def initialize(appbizid=nil, workflowrunid=nil)
|
11590
|
+
@AppBizId = appbizid
|
11530
11591
|
@WorkflowRunId = workflowrunid
|
11531
11592
|
end
|
11532
11593
|
|
11533
11594
|
def deserialize(params)
|
11595
|
+
@AppBizId = params['AppBizId']
|
11534
11596
|
@WorkflowRunId = params['WorkflowRunId']
|
11535
11597
|
end
|
11536
11598
|
end
|
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.1138
|
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-09-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|