tencentcloud-sdk-lke 3.0.1049 → 3.0.1050
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 +24 -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: 13ea443ca41e9c18c85155a1805828493351d9ea
|
4
|
+
data.tar.gz: fa555a49cdb7d0dd909b019d87047e1bc2841cda
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 68c1c0c435f7b6d6df9805b9ccca574115d0775373daa414268b013be5b0ef01e82825cef1b00cb7fb3a6dc9ad8db8469608c006067a5f23655252db6eb551a6
|
7
|
+
data.tar.gz: 11bcd7914efa5b96d239753030744e992e425c45972cc23c0443b89b4cbfb9a2c68619c9a0282c5a412a6bb8e33496655692ee27b7454b47dd77bbacee898ba4
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1050
|
data/lib/v20231130/models.rb
CHANGED
@@ -74,10 +74,16 @@ module TencentCloud
|
|
74
74
|
# @param ReplyIndex: 用于展示思考放在哪个回复气泡中
|
75
75
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
76
76
|
# @type ReplyIndex: Integer
|
77
|
+
# @param SourceAgentName: 主agent
|
78
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
79
|
+
# @type SourceAgentName: String
|
80
|
+
# @param TargetAgentName: 挂号agent
|
81
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
82
|
+
# @type TargetAgentName: String
|
77
83
|
|
78
|
-
attr_accessor :Index, :Name, :Title, :Status, :Icon, :Debugging, :Switch, :WorkflowName, :Elapsed, :NodeName, :ReplyIndex
|
84
|
+
attr_accessor :Index, :Name, :Title, :Status, :Icon, :Debugging, :Switch, :WorkflowName, :Elapsed, :NodeName, :ReplyIndex, :SourceAgentName, :TargetAgentName
|
79
85
|
|
80
|
-
def initialize(index=nil, name=nil, title=nil, status=nil, icon=nil, debugging=nil, switch=nil, workflowname=nil, elapsed=nil, nodename=nil, replyindex=nil)
|
86
|
+
def initialize(index=nil, name=nil, title=nil, status=nil, icon=nil, debugging=nil, switch=nil, workflowname=nil, elapsed=nil, nodename=nil, replyindex=nil, sourceagentname=nil, targetagentname=nil)
|
81
87
|
@Index = index
|
82
88
|
@Name = name
|
83
89
|
@Title = title
|
@@ -89,6 +95,8 @@ module TencentCloud
|
|
89
95
|
@Elapsed = elapsed
|
90
96
|
@NodeName = nodename
|
91
97
|
@ReplyIndex = replyindex
|
98
|
+
@SourceAgentName = sourceagentname
|
99
|
+
@TargetAgentName = targetagentname
|
92
100
|
end
|
93
101
|
|
94
102
|
def deserialize(params)
|
@@ -106,6 +114,8 @@ module TencentCloud
|
|
106
114
|
@Elapsed = params['Elapsed']
|
107
115
|
@NodeName = params['NodeName']
|
108
116
|
@ReplyIndex = params['ReplyIndex']
|
117
|
+
@SourceAgentName = params['SourceAgentName']
|
118
|
+
@TargetAgentName = params['TargetAgentName']
|
109
119
|
end
|
110
120
|
end
|
111
121
|
|
@@ -4331,13 +4341,13 @@ module TencentCloud
|
|
4331
4341
|
class GetMsgRecordRequest < TencentCloud::Common::AbstractModel
|
4332
4342
|
# @param Type: 类型
|
4333
4343
|
# @type Type: Integer
|
4334
|
-
# @param Count:
|
4344
|
+
# @param Count: 数量, 数量需大于2
|
4335
4345
|
# @type Count: Integer
|
4336
4346
|
# @param SessionId: 会话sessionid
|
4337
4347
|
# @type SessionId: String
|
4338
4348
|
# @param LastRecordId: 最后一条记录ID
|
4339
4349
|
# @type LastRecordId: String
|
4340
|
-
# @param BotAppKey: 应用AppKey, 当Type=5[API访客]时, 该字段必填
|
4350
|
+
# @param BotAppKey: 应用AppKey, 当Type=5[API访客]时, 该字段必填 :</br> 获取方式:</br> 1、应用发布后在应用页面[发布管理]-[调用信息]-[API管理]处获取</br> 2、参考 https://cloud.tencent.com/document/product/1759/109469 第二项
|
4341
4351
|
# @type BotAppKey: String
|
4342
4352
|
# @param Scene: 场景, 体验: 1; 正式: 2
|
4343
4353
|
# @type Scene: Integer
|
@@ -7047,10 +7057,14 @@ module TencentCloud
|
|
7047
7057
|
# @type SupportWorkflowStatus: Integer
|
7048
7058
|
# @param ModelCategory: 模型类别 generate:生成模型,thought:思考模型
|
7049
7059
|
# @type ModelCategory: String
|
7060
|
+
# @param IsDefault: 是否默认模型
|
7061
|
+
# @type IsDefault: Boolean
|
7062
|
+
# @param RoleLenLimit: 角色提示词输入长度限制
|
7063
|
+
# @type RoleLenLimit: Integer
|
7050
7064
|
|
7051
|
-
attr_accessor :ModelName, :ModelDesc, :AliasName, :ResourceStatus, :PromptWordsLimit, :TopP, :Temperature, :MaxTokens, :Source, :Icon, :IsFree, :InputLenLimit, :SupportWorkflowStatus, :ModelCategory
|
7065
|
+
attr_accessor :ModelName, :ModelDesc, :AliasName, :ResourceStatus, :PromptWordsLimit, :TopP, :Temperature, :MaxTokens, :Source, :Icon, :IsFree, :InputLenLimit, :SupportWorkflowStatus, :ModelCategory, :IsDefault, :RoleLenLimit
|
7052
7066
|
|
7053
|
-
def initialize(modelname=nil, modeldesc=nil, aliasname=nil, resourcestatus=nil, promptwordslimit=nil, topp=nil, temperature=nil, maxtokens=nil, source=nil, icon=nil, isfree=nil, inputlenlimit=nil, supportworkflowstatus=nil, modelcategory=nil)
|
7067
|
+
def initialize(modelname=nil, modeldesc=nil, aliasname=nil, resourcestatus=nil, promptwordslimit=nil, topp=nil, temperature=nil, maxtokens=nil, source=nil, icon=nil, isfree=nil, inputlenlimit=nil, supportworkflowstatus=nil, modelcategory=nil, isdefault=nil, rolelenlimit=nil)
|
7054
7068
|
@ModelName = modelname
|
7055
7069
|
@ModelDesc = modeldesc
|
7056
7070
|
@AliasName = aliasname
|
@@ -7065,6 +7079,8 @@ module TencentCloud
|
|
7065
7079
|
@InputLenLimit = inputlenlimit
|
7066
7080
|
@SupportWorkflowStatus = supportworkflowstatus
|
7067
7081
|
@ModelCategory = modelcategory
|
7082
|
+
@IsDefault = isdefault
|
7083
|
+
@RoleLenLimit = rolelenlimit
|
7068
7084
|
end
|
7069
7085
|
|
7070
7086
|
def deserialize(params)
|
@@ -7091,6 +7107,8 @@ module TencentCloud
|
|
7091
7107
|
@InputLenLimit = params['InputLenLimit']
|
7092
7108
|
@SupportWorkflowStatus = params['SupportWorkflowStatus']
|
7093
7109
|
@ModelCategory = params['ModelCategory']
|
7110
|
+
@IsDefault = params['IsDefault']
|
7111
|
+
@RoleLenLimit = params['RoleLenLimit']
|
7094
7112
|
end
|
7095
7113
|
end
|
7096
7114
|
|
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.1050
|
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-04-
|
11
|
+
date: 2025-04-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|