tencentcloud-sdk-ai3d 3.0.1169 → 3.0.1178
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/v20250513/models.rb +10 -6
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 83bfa94064325e9db7057e98e9ad03b0143487d7
|
|
4
|
+
data.tar.gz: d39c53f67408162b36b841479886b95500fa8db1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 026ae349f5da3e0bdb6e71e5952372952013c6e8c39f745d0e9af0d38a4ecc619c8c31fd05ab98dbb5f8fd722a64ecd6049ac367a93723267d93dbaa471151d9
|
|
7
|
+
data.tar.gz: 4678238ea84e432453f15dedff02e426b332e4914eecbe9f3305859f21ddaf7a1cefb6e6d3485261a4b165bbbcc395892ca4a3909208fe3a7edfac35db037248
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1178
|
data/lib/v20250513/models.rb
CHANGED
|
@@ -251,17 +251,17 @@ module TencentCloud
|
|
|
251
251
|
class SubmitHunyuanTo3DRapidJobRequest < TencentCloud::Common::AbstractModel
|
|
252
252
|
# @param Prompt: 文生3D,3D内容的描述,中文正向提示词。
|
|
253
253
|
# 最多支持200个 utf-8 字符。
|
|
254
|
-
# 文生3D,
|
|
254
|
+
# 文生3D, ImageBase64、ImageUrl和 Prompt必填其一,且Prompt和ImageBase64/ImageUrl不能同时存在。
|
|
255
255
|
# @type Prompt: String
|
|
256
256
|
# @param ImageBase64: 输入图 Base64 数据。
|
|
257
|
-
# 大小:单边分辨率要求不小于128,不大于5000。大小不超过8m(base64编码后会大30%左右,建议实际输入图片不超过
|
|
257
|
+
# 大小:单边分辨率要求不小于128,不大于5000。大小不超过8m(base64编码后会大30%左右,建议实际输入图片不超过5m)
|
|
258
258
|
# 格式:jpg,png,jpeg,webp。
|
|
259
259
|
# ImageBase64、ImageUrl和 Prompt必填其一,且Prompt和ImageBase64/ImageUrl不能同时存在。
|
|
260
260
|
# @type ImageBase64: String
|
|
261
261
|
# @param ImageUrl: 输入图Url。
|
|
262
|
-
# 大小:单边分辨率要求不小于128,不大于5000。大小不超过8m(base64编码后会大30%左右,建议实际输入图片不超过
|
|
262
|
+
# 大小:单边分辨率要求不小于128,不大于5000。大小不超过8m(base64编码后会大30%左右,建议实际输入图片不超过5m)
|
|
263
263
|
# 格式:jpg,png,jpeg,webp。
|
|
264
|
-
# ImageBase64
|
|
264
|
+
# ImageBase64、ImageUrl和 Prompt必填其一,且Prompt和ImageBase64/ImageUrl不能同时存在。
|
|
265
265
|
# @type ImageUrl: String
|
|
266
266
|
# @param ResultFormat: 生成模型的格式,仅限制生成一种格式。
|
|
267
267
|
# 生成模型文件组默认返回obj格式。
|
|
@@ -269,15 +269,18 @@ module TencentCloud
|
|
|
269
269
|
# @type ResultFormat: String
|
|
270
270
|
# @param EnablePBR: 是否开启 PBR材质生成,默认 false。
|
|
271
271
|
# @type EnablePBR: Boolean
|
|
272
|
+
# @param EnableGeometry: 是否开启单几何生成选项,开启后会生成不带纹理的3D模型(白模); 开启时,生成模型文件不支持OBJ格式,默认生成模型文件为GLB格式。
|
|
273
|
+
# @type EnableGeometry: Boolean
|
|
272
274
|
|
|
273
|
-
attr_accessor :Prompt, :ImageBase64, :ImageUrl, :ResultFormat, :EnablePBR
|
|
275
|
+
attr_accessor :Prompt, :ImageBase64, :ImageUrl, :ResultFormat, :EnablePBR, :EnableGeometry
|
|
274
276
|
|
|
275
|
-
def initialize(prompt=nil, imagebase64=nil, imageurl=nil, resultformat=nil, enablepbr=nil)
|
|
277
|
+
def initialize(prompt=nil, imagebase64=nil, imageurl=nil, resultformat=nil, enablepbr=nil, enablegeometry=nil)
|
|
276
278
|
@Prompt = prompt
|
|
277
279
|
@ImageBase64 = imagebase64
|
|
278
280
|
@ImageUrl = imageurl
|
|
279
281
|
@ResultFormat = resultformat
|
|
280
282
|
@EnablePBR = enablepbr
|
|
283
|
+
@EnableGeometry = enablegeometry
|
|
281
284
|
end
|
|
282
285
|
|
|
283
286
|
def deserialize(params)
|
|
@@ -286,6 +289,7 @@ module TencentCloud
|
|
|
286
289
|
@ImageUrl = params['ImageUrl']
|
|
287
290
|
@ResultFormat = params['ResultFormat']
|
|
288
291
|
@EnablePBR = params['EnablePBR']
|
|
292
|
+
@EnableGeometry = params['EnableGeometry']
|
|
289
293
|
end
|
|
290
294
|
end
|
|
291
295
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tencentcloud-sdk-ai3d
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.1178
|
|
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-
|
|
11
|
+
date: 2025-12-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|
|
@@ -34,8 +34,8 @@ extensions: []
|
|
|
34
34
|
extra_rdoc_files: []
|
|
35
35
|
files:
|
|
36
36
|
- lib/tencentcloud-sdk-ai3d.rb
|
|
37
|
-
- lib/v20250513/client.rb
|
|
38
37
|
- lib/v20250513/models.rb
|
|
38
|
+
- lib/v20250513/client.rb
|
|
39
39
|
- lib/VERSION
|
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
|
41
41
|
licenses:
|