tencentcloud-sdk-hunyuan 3.0.933 → 3.0.934
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/v20230901/models.rb +6 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 02dbeb2c47f9868edd98280c5205e9b3b3fc421d
|
4
|
+
data.tar.gz: b52cc1bfa3f2e9d80544be834bb966a45c27c4cb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 971001a5624009f803b72133b7de452ec8b814edf6058e611b6ba5fe1139d4042b794df70643bb58dd3da5d92b9c8282ab18522ac422e9d0b318ac09e2bb2659
|
7
|
+
data.tar.gz: 4282bfbb3613c56d4d94362da5839084107e65fd6ed82fe657d2481de46523181c364b27c83bbfe853d68685816456e2ee19b79fe0fa73632d8b991484218ec5
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.934
|
data/lib/v20230901/models.rb
CHANGED
@@ -130,10 +130,12 @@ module TencentCloud
|
|
130
130
|
# 4. 未传值时默认关闭。
|
131
131
|
# 5. 开启并搜索到对应的多媒体信息时,会输出对应的多媒体地址,可以定制个性化的图文消息。
|
132
132
|
# @type EnableMultimedia: Boolean
|
133
|
+
# @param Seed: 说明:1. 确保模型的输出是可复现的。2. 取值区间为非0正整数,最大值10000。3. 非必要不建议使用,不合理的取值会影响效果。
|
134
|
+
# @type Seed: Integer
|
133
135
|
|
134
|
-
attr_accessor :Model, :Messages, :Stream, :StreamModeration, :TopP, :Temperature, :EnableEnhancement, :Tools, :ToolChoice, :CustomTool, :SearchInfo, :Citation, :EnableSpeedSearch, :EnableMultimedia
|
136
|
+
attr_accessor :Model, :Messages, :Stream, :StreamModeration, :TopP, :Temperature, :EnableEnhancement, :Tools, :ToolChoice, :CustomTool, :SearchInfo, :Citation, :EnableSpeedSearch, :EnableMultimedia, :Seed
|
135
137
|
|
136
|
-
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)
|
138
|
+
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, seed=nil)
|
137
139
|
@Model = model
|
138
140
|
@Messages = messages
|
139
141
|
@Stream = stream
|
@@ -148,6 +150,7 @@ module TencentCloud
|
|
148
150
|
@Citation = citation
|
149
151
|
@EnableSpeedSearch = enablespeedsearch
|
150
152
|
@EnableMultimedia = enablemultimedia
|
153
|
+
@Seed = seed
|
151
154
|
end
|
152
155
|
|
153
156
|
def deserialize(params)
|
@@ -182,6 +185,7 @@ module TencentCloud
|
|
182
185
|
@Citation = params['Citation']
|
183
186
|
@EnableSpeedSearch = params['EnableSpeedSearch']
|
184
187
|
@EnableMultimedia = params['EnableMultimedia']
|
188
|
+
@Seed = params['Seed']
|
185
189
|
end
|
186
190
|
end
|
187
191
|
|