tencentcloud-sdk-python-ai3d 3.1.17__tar.gz → 3.1.27__tar.gz
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.
- {tencentcloud_sdk_python_ai3d-3.1.17 → tencentcloud_sdk_python_ai3d-3.1.27}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_ai3d-3.1.17 → tencentcloud_sdk_python_ai3d-3.1.27}/setup.py +1 -1
- {tencentcloud_sdk_python_ai3d-3.1.17 → tencentcloud_sdk_python_ai3d-3.1.27}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_ai3d-3.1.17 → tencentcloud_sdk_python_ai3d-3.1.27}/tencentcloud/ai3d/v20250513/models.py +21 -4
- {tencentcloud_sdk_python_ai3d-3.1.17 → tencentcloud_sdk_python_ai3d-3.1.27}/tencentcloud_sdk_python_ai3d.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_ai3d-3.1.27/tencentcloud_sdk_python_ai3d.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_ai3d-3.1.17/tencentcloud_sdk_python_ai3d.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_ai3d-3.1.17 → tencentcloud_sdk_python_ai3d-3.1.27}/README.rst +0 -0
- {tencentcloud_sdk_python_ai3d-3.1.17 → tencentcloud_sdk_python_ai3d-3.1.27}/setup.cfg +0 -0
- {tencentcloud_sdk_python_ai3d-3.1.17 → tencentcloud_sdk_python_ai3d-3.1.27}/tencentcloud/ai3d/__init__.py +0 -0
- {tencentcloud_sdk_python_ai3d-3.1.17 → tencentcloud_sdk_python_ai3d-3.1.27}/tencentcloud/ai3d/v20250513/__init__.py +0 -0
- {tencentcloud_sdk_python_ai3d-3.1.17 → tencentcloud_sdk_python_ai3d-3.1.27}/tencentcloud/ai3d/v20250513/ai3d_client.py +0 -0
- {tencentcloud_sdk_python_ai3d-3.1.17 → tencentcloud_sdk_python_ai3d-3.1.27}/tencentcloud/ai3d/v20250513/ai3d_client_async.py +0 -0
- {tencentcloud_sdk_python_ai3d-3.1.17 → tencentcloud_sdk_python_ai3d-3.1.27}/tencentcloud/ai3d/v20250513/errorcodes.py +0 -0
- {tencentcloud_sdk_python_ai3d-3.1.17 → tencentcloud_sdk_python_ai3d-3.1.27}/tencentcloud_sdk_python_ai3d.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_ai3d-3.1.17 → tencentcloud_sdk_python_ai3d-3.1.27}/tencentcloud_sdk_python_ai3d.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_ai3d-3.1.17 → tencentcloud_sdk_python_ai3d-3.1.27}/tencentcloud_sdk_python_ai3d.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-ai3d
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.27
|
|
4
4
|
Summary: Tencent Cloud Ai3d SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.27
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-ai3d',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.27,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Ai3d SDK for Python',
|
|
@@ -1169,11 +1169,12 @@ back:后视图;
|
|
|
1169
1169
|
:param _EnablePBR: 是否开启 PBR材质生成,默认 false。
|
|
1170
1170
|
:type EnablePBR: bool
|
|
1171
1171
|
:param _FaceCount: 生成3D模型的面数,默认值为500000。
|
|
1172
|
-
可支持生成面数范围,参考值:
|
|
1172
|
+
可支持生成面数范围,参考值:10000-1500000。
|
|
1173
|
+
GenerateType中选择LowPoly时,参考值:3000-1500000。
|
|
1173
1174
|
:type FaceCount: int
|
|
1174
1175
|
:param _GenerateType: 生成任务类型,默认Normal,参考值:
|
|
1175
1176
|
Normal:可生成带纹理的几何模型。
|
|
1176
|
-
LowPoly
|
|
1177
|
+
LowPoly:可生成智能拓扑后的模型,选择此参数时,面数最低可到达3000面。
|
|
1177
1178
|
Geometry:可生成不带纹理的几何模型(白模),选择此任务时,EnablePBR参数不生效。
|
|
1178
1179
|
Sketch:可输入草图或线稿图生成模型,此模式下prompt和ImageUrl/ImageBase64可一起输入。
|
|
1179
1180
|
:type GenerateType: str
|
|
@@ -1183,6 +1184,8 @@ Sketch:可输入草图或线稿图生成模型,此模式下prompt和ImageUrl
|
|
|
1183
1184
|
triangle: 三角形面。
|
|
1184
1185
|
quadrilateral: 四边形面与三角形面混合生成。
|
|
1185
1186
|
:type PolygonType: str
|
|
1187
|
+
:param _ResultFormat: 生成模型的格式,仅限制生成一种格式; 生成模型文件组默认返回obj、glb格式(开启时Geometry参数时,默认为glb格式); 可选值:STL,USDZ,FBX;
|
|
1188
|
+
:type ResultFormat: str
|
|
1186
1189
|
"""
|
|
1187
1190
|
self._Prompt = None
|
|
1188
1191
|
self._ImageBase64 = None
|
|
@@ -1192,6 +1195,7 @@ quadrilateral: 四边形面与三角形面混合生成。
|
|
|
1192
1195
|
self._FaceCount = None
|
|
1193
1196
|
self._GenerateType = None
|
|
1194
1197
|
self._PolygonType = None
|
|
1198
|
+
self._ResultFormat = None
|
|
1195
1199
|
|
|
1196
1200
|
@property
|
|
1197
1201
|
def Prompt(self):
|
|
@@ -1267,7 +1271,8 @@ back:后视图;
|
|
|
1267
1271
|
@property
|
|
1268
1272
|
def FaceCount(self):
|
|
1269
1273
|
r"""生成3D模型的面数,默认值为500000。
|
|
1270
|
-
可支持生成面数范围,参考值:
|
|
1274
|
+
可支持生成面数范围,参考值:10000-1500000。
|
|
1275
|
+
GenerateType中选择LowPoly时,参考值:3000-1500000。
|
|
1271
1276
|
:rtype: int
|
|
1272
1277
|
"""
|
|
1273
1278
|
return self._FaceCount
|
|
@@ -1280,7 +1285,7 @@ back:后视图;
|
|
|
1280
1285
|
def GenerateType(self):
|
|
1281
1286
|
r"""生成任务类型,默认Normal,参考值:
|
|
1282
1287
|
Normal:可生成带纹理的几何模型。
|
|
1283
|
-
LowPoly
|
|
1288
|
+
LowPoly:可生成智能拓扑后的模型,选择此参数时,面数最低可到达3000面。
|
|
1284
1289
|
Geometry:可生成不带纹理的几何模型(白模),选择此任务时,EnablePBR参数不生效。
|
|
1285
1290
|
Sketch:可输入草图或线稿图生成模型,此模式下prompt和ImageUrl/ImageBase64可一起输入。
|
|
1286
1291
|
:rtype: str
|
|
@@ -1306,6 +1311,17 @@ quadrilateral: 四边形面与三角形面混合生成。
|
|
|
1306
1311
|
def PolygonType(self, PolygonType):
|
|
1307
1312
|
self._PolygonType = PolygonType
|
|
1308
1313
|
|
|
1314
|
+
@property
|
|
1315
|
+
def ResultFormat(self):
|
|
1316
|
+
r"""生成模型的格式,仅限制生成一种格式; 生成模型文件组默认返回obj、glb格式(开启时Geometry参数时,默认为glb格式); 可选值:STL,USDZ,FBX;
|
|
1317
|
+
:rtype: str
|
|
1318
|
+
"""
|
|
1319
|
+
return self._ResultFormat
|
|
1320
|
+
|
|
1321
|
+
@ResultFormat.setter
|
|
1322
|
+
def ResultFormat(self, ResultFormat):
|
|
1323
|
+
self._ResultFormat = ResultFormat
|
|
1324
|
+
|
|
1309
1325
|
|
|
1310
1326
|
def _deserialize(self, params):
|
|
1311
1327
|
self._Prompt = params.get("Prompt")
|
|
@@ -1321,6 +1337,7 @@ quadrilateral: 四边形面与三角形面混合生成。
|
|
|
1321
1337
|
self._FaceCount = params.get("FaceCount")
|
|
1322
1338
|
self._GenerateType = params.get("GenerateType")
|
|
1323
1339
|
self._PolygonType = params.get("PolygonType")
|
|
1340
|
+
self._ResultFormat = params.get("ResultFormat")
|
|
1324
1341
|
memeber_set = set(params.keys())
|
|
1325
1342
|
for name, value in vars(self).items():
|
|
1326
1343
|
property_name = name[1:]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-ai3d
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.27
|
|
4
4
|
Summary: Tencent Cloud Ai3d SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.27
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.27
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.17
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|