tencentcloud-sdk-lkeap 3.0.1027 → 3.0.1029

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: 8da7593be716ac8931a9b67425fcfdc7d5c8311d
4
- data.tar.gz: 398ebc2b3f56453279c981da5928f8cf1cd8956f
3
+ metadata.gz: 23762512e4f441a2506e3f61f21e7a1f5a0174c2
4
+ data.tar.gz: fd401ffa37c62e85ed1c0123863a41bb50f934d2
5
5
  SHA512:
6
- metadata.gz: 3bb04610a49fa71b3cd71712eb01516d3243282ea00cec583811cae76e4057d8c306b9e08ca6ff8e70f512e65504d15045802932465a9402f8675bfc99efb4a9
7
- data.tar.gz: 3cf13176871bf6d8e8c934f2c65df70a6ee3e43f6effb5762ddf7dfe6c8173022a0850386944078a54d6cbff5d68e4158ac14d54c430c27f0df35311652e60e1
6
+ metadata.gz: bd2ee1444e5986e5dacc313e72dfe294a4bf0aa34c958b710309465e6e12ce8e1e02daec440de5a2a01d4a4580bc58f3dce7d9714e464e3a50fd4a915c65db36
7
+ data.tar.gz: c9e84027bc30bed9f01b864cd9ceaed7b95dea8de3caa017409c654a8a0633372d2a83c5aa5e29cbf8d85e32c363978713c88e32e8d77be719c69d99aeef6835
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1027
1
+ 3.0.1029
@@ -41,6 +41,7 @@ module TencentCloud
41
41
  # - DeepSeek-V3-0324(model 参数值为**deepseek-v3-0324**)
42
42
  # - DeepSeek-V3-0324为671B参数MoE模型,在编程与技术能力、上下文理解与长文本处理等方面优势突出。
43
43
  # - 支持64K上下文长度,最大输入56k,最大输出8k(不含思维链)。
44
+ # - 注意:相比于DeepSeek-V3,DeepSeek-V3-0324仅更新了模型权重,未增加参数量。总模型大小为685B,其中包括671B的主模型权重和 14B 的多令牌预测(MTP)模块权重,后续均描述主模型参数量。
44
45
  # - DeepSeek-V3(model 参数值为**deepseek-v3**)
45
46
  # - DeepSeek-V3为671B参数MoE模型,在百科知识、数学推理等多项任务上优势突出,评测成绩在主流榜单中位列开源模型榜首。
46
47
  # - 支持64K上下文长度,最大输入56k,最大输出8k(不含思维链)。
@@ -765,17 +765,21 @@ module TencentCloud
765
765
  # @type Role: String
766
766
  # @param Content: 内容详情。
767
767
  # @type Content: String
768
+ # @param ReasoningContent: 思维链内容。 ReasoningConent参数仅支持出参,且只有deepseek-r1模型会返回。
769
+ # @type ReasoningContent: String
768
770
 
769
- attr_accessor :Role, :Content
771
+ attr_accessor :Role, :Content, :ReasoningContent
770
772
 
771
- def initialize(role=nil, content=nil)
773
+ def initialize(role=nil, content=nil, reasoningcontent=nil)
772
774
  @Role = role
773
775
  @Content = content
776
+ @ReasoningContent = reasoningcontent
774
777
  end
775
778
 
776
779
  def deserialize(params)
777
780
  @Role = params['Role']
778
781
  @Content = params['Content']
782
+ @ReasoningContent = params['ReasoningContent']
779
783
  end
780
784
  end
781
785
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-lkeap
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1027
4
+ version: 3.0.1029
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-03-25 00:00:00.000000000 Z
11
+ date: 2025-03-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common