tencentcloud-sdk-hunyuan 3.0.1086 → 3.0.1090

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 60105ca920c48a1d42f5337c72d8a4207321fe64
4
- data.tar.gz: 5a2f92d514623e42ad66fe8dfb75d8c528c1cbc5
3
+ metadata.gz: d99ca9a9601b67f403b8fe8aed2e456143ad18a9
4
+ data.tar.gz: fa575110414f02cb14a54f8d7a5abe6983c09b4a
5
5
  SHA512:
6
- metadata.gz: d2497343082e60bd09a32105ae383d1f6a68cd691273dc801ce9b14e6b147d66cd3387f51df9ebf32c3033dceb796cfe06875ead78db8da002d6a327edf3e9ed
7
- data.tar.gz: 40fb0c2b4df451ae79473c9de651b292efc5162d822f97fdfb5623148a9809acd7d6361fe3591114c42be680e8d4ffffdfadeff578dcaddfdc826aa426ea4a80
6
+ metadata.gz: 5e8e939b5222d4be768c58f9c822870e21be8d75d5e204cbbbb4c8ec787b9a5480402244a098d3d80caf53fbbaaf518a7c8afb57bf4854d79f26bffb1e8ae187
7
+ data.tar.gz: 3394d754ea6112a0c67d71a25ebada8c9b6d3825f7b25932d8fd2c550c857730615caaeb0c79a2f09d7767249f21c076901606a6a760361af70c0fc2013ac65f
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1086
1
+ 3.0.1090
@@ -152,7 +152,7 @@ module TencentCloud
152
152
  # 4. 安全审核能力不属于功能增强范围,不受此字段影响。
153
153
  # 5. 2025-04-20 00:00:00起,由默认开启状态转为默认关闭状态。
154
154
  # @type EnableEnhancement: Boolean
155
- # @param Tools: 可调用的工具列表,仅对 hunyuan-turbo、hunyuan-functioncall 模型生效。
155
+ # @param Tools: 可调用的工具列表,仅对 hunyuan-turbos、hunyuan-t1、hunyuan-functioncall 模型生效。
156
156
  # @type Tools: Array
157
157
  # @param ToolChoice: 工具使用选项,可选值包括 none、auto、custom。说明:1. 仅对 hunyuan-turbo、hunyuan-functioncall 模型生效。2. none:不调用工具;auto:模型自行选择生成回复或调用工具;custom:强制模型调用指定的工具。3. 未设置时,默认值为auto
158
158
  # @type ToolChoice: String
@@ -206,10 +206,12 @@ module TencentCloud
206
206
  # @type WebSearchOptions: :class:`Tencentcloud::Hunyuan.v20230901.models.WebSearchOptions`
207
207
  # @param TopicChoice: 用户传入Topic
208
208
  # @type TopicChoice: String
209
+ # @param EnableThinking: 模型思维链开关 说明: 1. 未传值时默认开启,打开模型思维链推理能力。 2. 关闭后,关闭模型思维链推理能力。 开关当前仅对hunyuan-a13b模型生效 示例值:ture
210
+ # @type EnableThinking: Boolean
209
211
 
210
- attr_accessor :Model, :Messages, :Stream, :StreamModeration, :TopP, :Temperature, :EnableEnhancement, :Tools, :ToolChoice, :CustomTool, :SearchInfo, :Citation, :EnableSpeedSearch, :EnableMultimedia, :EnableDeepSearch, :Seed, :ForceSearchEnhancement, :Stop, :EnableRecommendedQuestions, :EnableDeepRead, :WebSearchOptions, :TopicChoice
212
+ attr_accessor :Model, :Messages, :Stream, :StreamModeration, :TopP, :Temperature, :EnableEnhancement, :Tools, :ToolChoice, :CustomTool, :SearchInfo, :Citation, :EnableSpeedSearch, :EnableMultimedia, :EnableDeepSearch, :Seed, :ForceSearchEnhancement, :Stop, :EnableRecommendedQuestions, :EnableDeepRead, :WebSearchOptions, :TopicChoice, :EnableThinking
211
213
 
212
- def initialize(model=nil, messages=nil, stream=nil, streammoderation=nil, topp=nil, temperature=nil, enableenhancement=nil, tools=nil, toolchoice=nil, customtool=nil, searchinfo=nil, citation=nil, enablespeedsearch=nil, enablemultimedia=nil, enabledeepsearch=nil, seed=nil, forcesearchenhancement=nil, stop=nil, enablerecommendedquestions=nil, enabledeepread=nil, websearchoptions=nil, topicchoice=nil)
214
+ def initialize(model=nil, messages=nil, stream=nil, streammoderation=nil, topp=nil, temperature=nil, enableenhancement=nil, tools=nil, toolchoice=nil, customtool=nil, searchinfo=nil, citation=nil, enablespeedsearch=nil, enablemultimedia=nil, enabledeepsearch=nil, seed=nil, forcesearchenhancement=nil, stop=nil, enablerecommendedquestions=nil, enabledeepread=nil, websearchoptions=nil, topicchoice=nil, enablethinking=nil)
213
215
  @Model = model
214
216
  @Messages = messages
215
217
  @Stream = stream
@@ -232,6 +234,7 @@ module TencentCloud
232
234
  @EnableDeepRead = enabledeepread
233
235
  @WebSearchOptions = websearchoptions
234
236
  @TopicChoice = topicchoice
237
+ @EnableThinking = enablethinking
235
238
  end
236
239
 
237
240
  def deserialize(params)
@@ -277,6 +280,7 @@ module TencentCloud
277
280
  @WebSearchOptions.deserialize(params['WebSearchOptions'])
278
281
  end
279
282
  @TopicChoice = params['TopicChoice']
283
+ @EnableThinking = params['EnableThinking']
280
284
  end
281
285
  end
282
286
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-hunyuan
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1086
4
+ version: 3.0.1090
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-06-22 00:00:00.000000000 Z
11
+ date: 2025-06-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common