tencentcloud-sdk-python-tokenhub 3.1.127__tar.gz → 3.1.128__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.
Files changed (17) hide show
  1. {tencentcloud_sdk_python_tokenhub-3.1.127 → tencentcloud_sdk_python_tokenhub-3.1.128}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_tokenhub-3.1.127 → tencentcloud_sdk_python_tokenhub-3.1.128}/setup.py +1 -1
  3. {tencentcloud_sdk_python_tokenhub-3.1.127 → tencentcloud_sdk_python_tokenhub-3.1.128}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_tokenhub-3.1.127 → tencentcloud_sdk_python_tokenhub-3.1.128}/tencentcloud/tokenhub/v20260322/models.py +105 -0
  5. {tencentcloud_sdk_python_tokenhub-3.1.127 → tencentcloud_sdk_python_tokenhub-3.1.128}/tencentcloud_sdk_python_tokenhub.egg-info/PKG-INFO +2 -2
  6. tencentcloud_sdk_python_tokenhub-3.1.128/tencentcloud_sdk_python_tokenhub.egg-info/requires.txt +1 -0
  7. tencentcloud_sdk_python_tokenhub-3.1.127/tencentcloud_sdk_python_tokenhub.egg-info/requires.txt +0 -1
  8. {tencentcloud_sdk_python_tokenhub-3.1.127 → tencentcloud_sdk_python_tokenhub-3.1.128}/README.rst +0 -0
  9. {tencentcloud_sdk_python_tokenhub-3.1.127 → tencentcloud_sdk_python_tokenhub-3.1.128}/setup.cfg +0 -0
  10. {tencentcloud_sdk_python_tokenhub-3.1.127 → tencentcloud_sdk_python_tokenhub-3.1.128}/tencentcloud/tokenhub/__init__.py +0 -0
  11. {tencentcloud_sdk_python_tokenhub-3.1.127 → tencentcloud_sdk_python_tokenhub-3.1.128}/tencentcloud/tokenhub/v20260322/__init__.py +0 -0
  12. {tencentcloud_sdk_python_tokenhub-3.1.127 → tencentcloud_sdk_python_tokenhub-3.1.128}/tencentcloud/tokenhub/v20260322/errorcodes.py +0 -0
  13. {tencentcloud_sdk_python_tokenhub-3.1.127 → tencentcloud_sdk_python_tokenhub-3.1.128}/tencentcloud/tokenhub/v20260322/tokenhub_client.py +0 -0
  14. {tencentcloud_sdk_python_tokenhub-3.1.127 → tencentcloud_sdk_python_tokenhub-3.1.128}/tencentcloud/tokenhub/v20260322/tokenhub_client_async.py +0 -0
  15. {tencentcloud_sdk_python_tokenhub-3.1.127 → tencentcloud_sdk_python_tokenhub-3.1.128}/tencentcloud_sdk_python_tokenhub.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_tokenhub-3.1.127 → tencentcloud_sdk_python_tokenhub-3.1.128}/tencentcloud_sdk_python_tokenhub.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_tokenhub-3.1.127 → tencentcloud_sdk_python_tokenhub-3.1.128}/tencentcloud_sdk_python_tokenhub.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-tokenhub
3
- Version: 3.1.127
3
+ Version: 3.1.128
4
4
  Summary: Tencent Cloud Tokenhub 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.127
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.128
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-tokenhub',
11
- install_requires=["tencentcloud-sdk-python-common>=3.1.127,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.128,<4.0.0"],
12
12
 
13
13
  version=tencentcloud.__version__,
14
14
  description='Tencent Cloud Tokenhub SDK for Python',
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.127'
17
+ __version__ = '3.1.128'
@@ -2225,6 +2225,111 @@ class DescribeModelListRequest(AbstractModel):
2225
2225
 
2226
2226
  """
2227
2227
 
2228
+ def __init__(self):
2229
+ r"""
2230
+ :param _ModelIds: <p>模型 ID 列表。最多支持 10 个,不支持重复。</p>
2231
+ :type ModelIds: list of str
2232
+ :param _ModelNames: <p>模型名称列表。最多支持 10 个,不支持重复。</p>
2233
+ :type ModelNames: list of str
2234
+ :param _ModelTypes: <p>模型类型列表,筛选指定类型的模型。最多支持 10 个,不支持重复。取值:Text(文本)、Vision(视觉)、Multimodal(多模态)、Speech(语音)、Embedding(向量)。</p>
2235
+ :type ModelTypes: list of str
2236
+ :param _Tags: <p>模型标签</p>
2237
+ :type Tags: list of str
2238
+ :param _Limit: <p>返回数量,默认为 20,最大值为 100。</p>
2239
+ :type Limit: int
2240
+ :param _Offset: <p>偏移量,默认为 0。</p>
2241
+ :type Offset: int
2242
+ """
2243
+ self._ModelIds = None
2244
+ self._ModelNames = None
2245
+ self._ModelTypes = None
2246
+ self._Tags = None
2247
+ self._Limit = None
2248
+ self._Offset = None
2249
+
2250
+ @property
2251
+ def ModelIds(self):
2252
+ r"""<p>模型 ID 列表。最多支持 10 个,不支持重复。</p>
2253
+ :rtype: list of str
2254
+ """
2255
+ return self._ModelIds
2256
+
2257
+ @ModelIds.setter
2258
+ def ModelIds(self, ModelIds):
2259
+ self._ModelIds = ModelIds
2260
+
2261
+ @property
2262
+ def ModelNames(self):
2263
+ r"""<p>模型名称列表。最多支持 10 个,不支持重复。</p>
2264
+ :rtype: list of str
2265
+ """
2266
+ return self._ModelNames
2267
+
2268
+ @ModelNames.setter
2269
+ def ModelNames(self, ModelNames):
2270
+ self._ModelNames = ModelNames
2271
+
2272
+ @property
2273
+ def ModelTypes(self):
2274
+ r"""<p>模型类型列表,筛选指定类型的模型。最多支持 10 个,不支持重复。取值:Text(文本)、Vision(视觉)、Multimodal(多模态)、Speech(语音)、Embedding(向量)。</p>
2275
+ :rtype: list of str
2276
+ """
2277
+ return self._ModelTypes
2278
+
2279
+ @ModelTypes.setter
2280
+ def ModelTypes(self, ModelTypes):
2281
+ self._ModelTypes = ModelTypes
2282
+
2283
+ @property
2284
+ def Tags(self):
2285
+ r"""<p>模型标签</p>
2286
+ :rtype: list of str
2287
+ """
2288
+ return self._Tags
2289
+
2290
+ @Tags.setter
2291
+ def Tags(self, Tags):
2292
+ self._Tags = Tags
2293
+
2294
+ @property
2295
+ def Limit(self):
2296
+ r"""<p>返回数量,默认为 20,最大值为 100。</p>
2297
+ :rtype: int
2298
+ """
2299
+ return self._Limit
2300
+
2301
+ @Limit.setter
2302
+ def Limit(self, Limit):
2303
+ self._Limit = Limit
2304
+
2305
+ @property
2306
+ def Offset(self):
2307
+ r"""<p>偏移量,默认为 0。</p>
2308
+ :rtype: int
2309
+ """
2310
+ return self._Offset
2311
+
2312
+ @Offset.setter
2313
+ def Offset(self, Offset):
2314
+ self._Offset = Offset
2315
+
2316
+
2317
+ def _deserialize(self, params):
2318
+ self._ModelIds = params.get("ModelIds")
2319
+ self._ModelNames = params.get("ModelNames")
2320
+ self._ModelTypes = params.get("ModelTypes")
2321
+ self._Tags = params.get("Tags")
2322
+ self._Limit = params.get("Limit")
2323
+ self._Offset = params.get("Offset")
2324
+ memeber_set = set(params.keys())
2325
+ for name, value in vars(self).items():
2326
+ property_name = name[1:]
2327
+ if property_name in memeber_set:
2328
+ memeber_set.remove(property_name)
2329
+ if len(memeber_set) > 0:
2330
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
2331
+
2332
+
2228
2333
 
2229
2334
  class DescribeModelListResponse(AbstractModel):
2230
2335
  r"""DescribeModelList返回参数结构体
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-tokenhub
3
- Version: 3.1.127
3
+ Version: 3.1.128
4
4
  Summary: Tencent Cloud Tokenhub 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.127
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.128
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.128
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.1.127