tencentcloud-sdk-lke 3.0.1143 → 3.0.1144
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 +18 -5
- 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: 7d351176f2bbd441133d1068787122fde3e58312
|
4
|
+
data.tar.gz: 4178f7397cb59fd3aa1619c04a99ccc4b6bc0504
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6dba5df9f222599e8ed6323bf05b010d22d1235bb713a816183f535ec644988c803e11a02de06eb84dfdccba8d49778e79e8c87c7f09113b79d03c74e53aa032
|
7
|
+
data.tar.gz: c2c347ca2cc95af518b8c6ad872a88550fb41dd5826afd902c416b24887543a95b32a56a69e2f886f5ae00279a21a210408ef599a184e3ff66f7f82129ac7dba
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1144
|
data/lib/v20231130/models.rb
CHANGED
@@ -7165,7 +7165,7 @@ module TencentCloud
|
|
7165
7165
|
# @type LoginSubAccountUin: String
|
7166
7166
|
# @param AgentType: 智能体类型 dialogue:对话智能体,wechat:公众号智能体
|
7167
7167
|
# @type AgentType: String
|
7168
|
-
# @param AppStatus: 应用状态 1:未上线
|
7168
|
+
# @param AppStatus: 应用状态 1:未上线 2:运行中
|
7169
7169
|
# @type AppStatus: String
|
7170
7170
|
|
7171
7171
|
attr_accessor :AppType, :PageSize, :PageNumber, :Keyword, :LoginSubAccountUin, :AgentType, :AppStatus
|
@@ -8950,10 +8950,14 @@ module TencentCloud
|
|
8950
8950
|
# @type ProviderAliasName: String
|
8951
8951
|
# @param ProviderType: 提供商类型 Self:提供商,Custom:自定义模型提供商,Third:第三方模型提供商
|
8952
8952
|
# @type ProviderType: String
|
8953
|
+
# @param IsCloseModelParams: 是否关闭模型超参
|
8954
|
+
# @type IsCloseModelParams: Boolean
|
8955
|
+
# @param IsDeepThinking: 是否支持深度思考
|
8956
|
+
# @type IsDeepThinking: Boolean
|
8953
8957
|
|
8954
|
-
attr_accessor :ModelName, :ModelDesc, :AliasName, :ResourceStatus, :PromptWordsLimit, :TopP, :Temperature, :MaxTokens, :Source, :Icon, :IsFree, :InputLenLimit, :SupportWorkflowStatus, :ModelCategory, :IsDefault, :RoleLenLimit, :IsExclusive, :SupportAiCallStatus, :Concurrency, :ModelTags, :ModelParams, :ProviderName, :ProviderAliasName, :ProviderType
|
8958
|
+
attr_accessor :ModelName, :ModelDesc, :AliasName, :ResourceStatus, :PromptWordsLimit, :TopP, :Temperature, :MaxTokens, :Source, :Icon, :IsFree, :InputLenLimit, :SupportWorkflowStatus, :ModelCategory, :IsDefault, :RoleLenLimit, :IsExclusive, :SupportAiCallStatus, :Concurrency, :ModelTags, :ModelParams, :ProviderName, :ProviderAliasName, :ProviderType, :IsCloseModelParams, :IsDeepThinking
|
8955
8959
|
|
8956
|
-
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, isexclusive=nil, supportaicallstatus=nil, concurrency=nil, modeltags=nil, modelparams=nil, providername=nil, provideraliasname=nil, providertype=nil)
|
8960
|
+
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, isexclusive=nil, supportaicallstatus=nil, concurrency=nil, modeltags=nil, modelparams=nil, providername=nil, provideraliasname=nil, providertype=nil, isclosemodelparams=nil, isdeepthinking=nil)
|
8957
8961
|
@ModelName = modelname
|
8958
8962
|
@ModelDesc = modeldesc
|
8959
8963
|
@AliasName = aliasname
|
@@ -8978,6 +8982,8 @@ module TencentCloud
|
|
8978
8982
|
@ProviderName = providername
|
8979
8983
|
@ProviderAliasName = provideraliasname
|
8980
8984
|
@ProviderType = providertype
|
8985
|
+
@IsCloseModelParams = isclosemodelparams
|
8986
|
+
@IsDeepThinking = isdeepthinking
|
8981
8987
|
end
|
8982
8988
|
|
8983
8989
|
def deserialize(params)
|
@@ -9021,6 +9027,8 @@ module TencentCloud
|
|
9021
9027
|
@ProviderName = params['ProviderName']
|
9022
9028
|
@ProviderAliasName = params['ProviderAliasName']
|
9023
9029
|
@ProviderType = params['ProviderType']
|
9030
|
+
@IsCloseModelParams = params['IsCloseModelParams']
|
9031
|
+
@IsDeepThinking = params['IsDeepThinking']
|
9024
9032
|
end
|
9025
9033
|
end
|
9026
9034
|
|
@@ -12888,10 +12896,13 @@ module TencentCloud
|
|
12888
12896
|
# @param StatisticInfos: 大模型输出信息
|
12889
12897
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
12890
12898
|
# @type StatisticInfos: Array
|
12899
|
+
# @param FailCode: 错误代码
|
12900
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
12901
|
+
# @type FailCode: String
|
12891
12902
|
|
12892
|
-
attr_accessor :NodeId, :NodeType, :NodeName, :Status, :Input, :Output, :TaskOutput, :FailMessage, :CostMilliSeconds, :StatisticInfos
|
12903
|
+
attr_accessor :NodeId, :NodeType, :NodeName, :Status, :Input, :Output, :TaskOutput, :FailMessage, :CostMilliSeconds, :StatisticInfos, :FailCode
|
12893
12904
|
|
12894
|
-
def initialize(nodeid=nil, nodetype=nil, nodename=nil, status=nil, input=nil, output=nil, taskoutput=nil, failmessage=nil, costmilliseconds=nil, statisticinfos=nil)
|
12905
|
+
def initialize(nodeid=nil, nodetype=nil, nodename=nil, status=nil, input=nil, output=nil, taskoutput=nil, failmessage=nil, costmilliseconds=nil, statisticinfos=nil, failcode=nil)
|
12895
12906
|
@NodeId = nodeid
|
12896
12907
|
@NodeType = nodetype
|
12897
12908
|
@NodeName = nodename
|
@@ -12902,6 +12913,7 @@ module TencentCloud
|
|
12902
12913
|
@FailMessage = failmessage
|
12903
12914
|
@CostMilliSeconds = costmilliseconds
|
12904
12915
|
@StatisticInfos = statisticinfos
|
12916
|
+
@FailCode = failcode
|
12905
12917
|
end
|
12906
12918
|
|
12907
12919
|
def deserialize(params)
|
@@ -12922,6 +12934,7 @@ module TencentCloud
|
|
12922
12934
|
@StatisticInfos << statisticinfo_tmp
|
12923
12935
|
end
|
12924
12936
|
end
|
12937
|
+
@FailCode = params['FailCode']
|
12925
12938
|
end
|
12926
12939
|
end
|
12927
12940
|
|
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.1144
|
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-09-
|
11
|
+
date: 2025-09-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|