tencentcloud-sdk-python-ai3d 3.1.17__tar.gz → 3.1.26__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.26}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_ai3d-3.1.17 → tencentcloud_sdk_python_ai3d-3.1.26}/setup.py +1 -1
- {tencentcloud_sdk_python_ai3d-3.1.17 → tencentcloud_sdk_python_ai3d-3.1.26}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_ai3d-3.1.17 → tencentcloud_sdk_python_ai3d-3.1.26}/tencentcloud/ai3d/v20250513/models.py +15 -0
- {tencentcloud_sdk_python_ai3d-3.1.17 → tencentcloud_sdk_python_ai3d-3.1.26}/tencentcloud_sdk_python_ai3d.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_ai3d-3.1.26/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.26}/README.rst +0 -0
- {tencentcloud_sdk_python_ai3d-3.1.17 → tencentcloud_sdk_python_ai3d-3.1.26}/setup.cfg +0 -0
- {tencentcloud_sdk_python_ai3d-3.1.17 → tencentcloud_sdk_python_ai3d-3.1.26}/tencentcloud/ai3d/__init__.py +0 -0
- {tencentcloud_sdk_python_ai3d-3.1.17 → tencentcloud_sdk_python_ai3d-3.1.26}/tencentcloud/ai3d/v20250513/__init__.py +0 -0
- {tencentcloud_sdk_python_ai3d-3.1.17 → tencentcloud_sdk_python_ai3d-3.1.26}/tencentcloud/ai3d/v20250513/ai3d_client.py +0 -0
- {tencentcloud_sdk_python_ai3d-3.1.17 → tencentcloud_sdk_python_ai3d-3.1.26}/tencentcloud/ai3d/v20250513/ai3d_client_async.py +0 -0
- {tencentcloud_sdk_python_ai3d-3.1.17 → tencentcloud_sdk_python_ai3d-3.1.26}/tencentcloud/ai3d/v20250513/errorcodes.py +0 -0
- {tencentcloud_sdk_python_ai3d-3.1.17 → tencentcloud_sdk_python_ai3d-3.1.26}/tencentcloud_sdk_python_ai3d.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_ai3d-3.1.17 → tencentcloud_sdk_python_ai3d-3.1.26}/tencentcloud_sdk_python_ai3d.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_ai3d-3.1.17 → tencentcloud_sdk_python_ai3d-3.1.26}/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.26
|
|
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.26
|
|
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.26,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Ai3d SDK for Python',
|
|
@@ -1183,6 +1183,8 @@ Sketch:可输入草图或线稿图生成模型,此模式下prompt和ImageUrl
|
|
|
1183
1183
|
triangle: 三角形面。
|
|
1184
1184
|
quadrilateral: 四边形面与三角形面混合生成。
|
|
1185
1185
|
:type PolygonType: str
|
|
1186
|
+
:param _ResultFormat: 生成模型的格式,仅限制生成一种格式; 生成模型文件组默认返回obj、glb格式(开启时Geometry参数时,默认为glb格式); 可选值:STL,USDZ,FBX;
|
|
1187
|
+
:type ResultFormat: str
|
|
1186
1188
|
"""
|
|
1187
1189
|
self._Prompt = None
|
|
1188
1190
|
self._ImageBase64 = None
|
|
@@ -1192,6 +1194,7 @@ quadrilateral: 四边形面与三角形面混合生成。
|
|
|
1192
1194
|
self._FaceCount = None
|
|
1193
1195
|
self._GenerateType = None
|
|
1194
1196
|
self._PolygonType = None
|
|
1197
|
+
self._ResultFormat = None
|
|
1195
1198
|
|
|
1196
1199
|
@property
|
|
1197
1200
|
def Prompt(self):
|
|
@@ -1306,6 +1309,17 @@ quadrilateral: 四边形面与三角形面混合生成。
|
|
|
1306
1309
|
def PolygonType(self, PolygonType):
|
|
1307
1310
|
self._PolygonType = PolygonType
|
|
1308
1311
|
|
|
1312
|
+
@property
|
|
1313
|
+
def ResultFormat(self):
|
|
1314
|
+
r"""生成模型的格式,仅限制生成一种格式; 生成模型文件组默认返回obj、glb格式(开启时Geometry参数时,默认为glb格式); 可选值:STL,USDZ,FBX;
|
|
1315
|
+
:rtype: str
|
|
1316
|
+
"""
|
|
1317
|
+
return self._ResultFormat
|
|
1318
|
+
|
|
1319
|
+
@ResultFormat.setter
|
|
1320
|
+
def ResultFormat(self, ResultFormat):
|
|
1321
|
+
self._ResultFormat = ResultFormat
|
|
1322
|
+
|
|
1309
1323
|
|
|
1310
1324
|
def _deserialize(self, params):
|
|
1311
1325
|
self._Prompt = params.get("Prompt")
|
|
@@ -1321,6 +1335,7 @@ quadrilateral: 四边形面与三角形面混合生成。
|
|
|
1321
1335
|
self._FaceCount = params.get("FaceCount")
|
|
1322
1336
|
self._GenerateType = params.get("GenerateType")
|
|
1323
1337
|
self._PolygonType = params.get("PolygonType")
|
|
1338
|
+
self._ResultFormat = params.get("ResultFormat")
|
|
1324
1339
|
memeber_set = set(params.keys())
|
|
1325
1340
|
for name, value in vars(self).items():
|
|
1326
1341
|
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.26
|
|
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.26
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.26
|
|
@@ -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
|