tencentcloud-sdk-lke 3.0.1172 → 3.0.1177
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 +41 -14
- 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: 62886aa74894d9a2742bbcb4d98044e574a7b32b
|
|
4
|
+
data.tar.gz: a587c01c2b1fba3bb61c4cb45aa7fd5985ca6bac
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9c3fcf56b5f2dfcd25cbaaa53428147481b14d1a74fea10677f551d4fdbb6d2718e1b01f165ec213dd915d38e552d4c26169ad7641f8d461d0c9a06eb70f6eaf
|
|
7
|
+
data.tar.gz: 363dc330afc326185d07b6166e7ddd7c80342fed6d2769b1f84d5ffedf149fd8b0303978df150ceab34acaf4f8eaa1c42d3291e5af197388568b8f59e7c36e67
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1177
|
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
|
|
|
@@ -2602,8 +2622,8 @@ module TencentCloud
|
|
|
2602
2622
|
|
|
2603
2623
|
attr_accessor :KnowledgeName, :KnowledgeDescription, :EmbeddingModel, :KnowledgeType
|
|
2604
2624
|
extend Gem::Deprecate
|
|
2605
|
-
deprecate :EmbeddingModel, :none, 2025,
|
|
2606
|
-
deprecate :EmbeddingModel=, :none, 2025,
|
|
2625
|
+
deprecate :EmbeddingModel, :none, 2025, 12
|
|
2626
|
+
deprecate :EmbeddingModel=, :none, 2025, 12
|
|
2607
2627
|
|
|
2608
2628
|
def initialize(knowledgename=nil, knowledgedescription=nil, embeddingmodel=nil, knowledgetype=nil)
|
|
2609
2629
|
@KnowledgeName = knowledgename
|
|
@@ -3234,14 +3254,17 @@ module TencentCloud
|
|
|
3234
3254
|
# @type StaringAgentId: String
|
|
3235
3255
|
# @param Agents: 应用Agent信息列表
|
|
3236
3256
|
# @type Agents: Array
|
|
3257
|
+
# @param HandoffAdvancedSetting: Agent转交高级设置
|
|
3258
|
+
# @type HandoffAdvancedSetting: :class:`Tencentcloud::Lke.v20231130.models.AgentHandoffAdvancedSetting`
|
|
3237
3259
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3238
3260
|
# @type RequestId: String
|
|
3239
3261
|
|
|
3240
|
-
attr_accessor :StaringAgentId, :Agents, :RequestId
|
|
3262
|
+
attr_accessor :StaringAgentId, :Agents, :HandoffAdvancedSetting, :RequestId
|
|
3241
3263
|
|
|
3242
|
-
def initialize(staringagentid=nil, agents=nil, requestid=nil)
|
|
3264
|
+
def initialize(staringagentid=nil, agents=nil, handoffadvancedsetting=nil, requestid=nil)
|
|
3243
3265
|
@StaringAgentId = staringagentid
|
|
3244
3266
|
@Agents = agents
|
|
3267
|
+
@HandoffAdvancedSetting = handoffadvancedsetting
|
|
3245
3268
|
@RequestId = requestid
|
|
3246
3269
|
end
|
|
3247
3270
|
|
|
@@ -3255,6 +3278,10 @@ module TencentCloud
|
|
|
3255
3278
|
@Agents << agent_tmp
|
|
3256
3279
|
end
|
|
3257
3280
|
end
|
|
3281
|
+
unless params['HandoffAdvancedSetting'].nil?
|
|
3282
|
+
@HandoffAdvancedSetting = AgentHandoffAdvancedSetting.new
|
|
3283
|
+
@HandoffAdvancedSetting.deserialize(params['HandoffAdvancedSetting'])
|
|
3284
|
+
end
|
|
3258
3285
|
@RequestId = params['RequestId']
|
|
3259
3286
|
end
|
|
3260
3287
|
end
|
|
@@ -7084,10 +7111,10 @@ module TencentCloud
|
|
|
7084
7111
|
|
|
7085
7112
|
attr_accessor :KnowledgeName, :KnowledgeDescription, :EmbeddingModel, :QaExtractModel, :OwnerStaffId
|
|
7086
7113
|
extend Gem::Deprecate
|
|
7087
|
-
deprecate :EmbeddingModel, :none, 2025,
|
|
7088
|
-
deprecate :EmbeddingModel=, :none, 2025,
|
|
7089
|
-
deprecate :QaExtractModel, :none, 2025,
|
|
7090
|
-
deprecate :QaExtractModel=, :none, 2025,
|
|
7114
|
+
deprecate :EmbeddingModel, :none, 2025, 12
|
|
7115
|
+
deprecate :EmbeddingModel=, :none, 2025, 12
|
|
7116
|
+
deprecate :QaExtractModel, :none, 2025, 12
|
|
7117
|
+
deprecate :QaExtractModel=, :none, 2025, 12
|
|
7091
7118
|
|
|
7092
7119
|
def initialize(knowledgename=nil, knowledgedescription=nil, embeddingmodel=nil, qaextractmodel=nil, ownerstaffid=nil)
|
|
7093
7120
|
@KnowledgeName = knowledgename
|
|
@@ -7368,8 +7395,8 @@ module TencentCloud
|
|
|
7368
7395
|
|
|
7369
7396
|
attr_accessor :AppBizId, :BotBizId, :PageNumber, :PageSize, :ChannelType, :ChannelStatus
|
|
7370
7397
|
extend Gem::Deprecate
|
|
7371
|
-
deprecate :BotBizId, :none, 2025,
|
|
7372
|
-
deprecate :BotBizId=, :none, 2025,
|
|
7398
|
+
deprecate :BotBizId, :none, 2025, 12
|
|
7399
|
+
deprecate :BotBizId=, :none, 2025, 12
|
|
7373
7400
|
|
|
7374
7401
|
def initialize(appbizid=nil, botbizid=nil, pagenumber=nil, pagesize=nil, channeltype=nil, channelstatus=nil)
|
|
7375
7402
|
@AppBizId = appbizid
|
|
@@ -12901,8 +12928,8 @@ module TencentCloud
|
|
|
12901
12928
|
|
|
12902
12929
|
attr_accessor :RunEnv, :AppBizId, :WorkflowRunId, :WorkflowId, :Name, :Output, :State, :FailMessage, :TotalTokens, :CreateTime, :StartTime, :EndTime, :DialogJson, :Query, :MainModelName, :CustomVariables, :WorkflowGraph
|
|
12903
12930
|
extend Gem::Deprecate
|
|
12904
|
-
deprecate :DialogJson, :none, 2025,
|
|
12905
|
-
deprecate :DialogJson=, :none, 2025,
|
|
12931
|
+
deprecate :DialogJson, :none, 2025, 12
|
|
12932
|
+
deprecate :DialogJson=, :none, 2025, 12
|
|
12906
12933
|
|
|
12907
12934
|
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
12935
|
@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.1177
|
|
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-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|