tencentcloud-sdk-python-tdai 3.1.5__tar.gz → 3.1.6__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_tdai-3.1.5 → tencentcloud_sdk_python_tdai-3.1.6}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_tdai-3.1.5 → tencentcloud_sdk_python_tdai-3.1.6}/setup.py +1 -1
- {tencentcloud_sdk_python_tdai-3.1.5 → tencentcloud_sdk_python_tdai-3.1.6}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_tdai-3.1.5 → tencentcloud_sdk_python_tdai-3.1.6}/tencentcloud/tdai/v20250717/models.py +15 -0
- {tencentcloud_sdk_python_tdai-3.1.5 → tencentcloud_sdk_python_tdai-3.1.6}/tencentcloud/tdai/v20250717/tdai_client.py +1 -1
- {tencentcloud_sdk_python_tdai-3.1.5 → tencentcloud_sdk_python_tdai-3.1.6}/tencentcloud/tdai/v20250717/tdai_client_async.py +1 -1
- {tencentcloud_sdk_python_tdai-3.1.5 → tencentcloud_sdk_python_tdai-3.1.6}/tencentcloud_sdk_python_tdai.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_tdai-3.1.6/tencentcloud_sdk_python_tdai.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_tdai-3.1.5/tencentcloud_sdk_python_tdai.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_tdai-3.1.5 → tencentcloud_sdk_python_tdai-3.1.6}/README.rst +0 -0
- {tencentcloud_sdk_python_tdai-3.1.5 → tencentcloud_sdk_python_tdai-3.1.6}/setup.cfg +0 -0
- {tencentcloud_sdk_python_tdai-3.1.5 → tencentcloud_sdk_python_tdai-3.1.6}/tencentcloud/tdai/__init__.py +0 -0
- {tencentcloud_sdk_python_tdai-3.1.5 → tencentcloud_sdk_python_tdai-3.1.6}/tencentcloud/tdai/v20250717/__init__.py +0 -0
- {tencentcloud_sdk_python_tdai-3.1.5 → tencentcloud_sdk_python_tdai-3.1.6}/tencentcloud/tdai/v20250717/errorcodes.py +0 -0
- {tencentcloud_sdk_python_tdai-3.1.5 → tencentcloud_sdk_python_tdai-3.1.6}/tencentcloud_sdk_python_tdai.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_tdai-3.1.5 → tencentcloud_sdk_python_tdai-3.1.6}/tencentcloud_sdk_python_tdai.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_tdai-3.1.5 → tencentcloud_sdk_python_tdai-3.1.6}/tencentcloud_sdk_python_tdai.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-tdai
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.6
|
|
4
4
|
Summary: Tencent Cloud Tdai 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.6
|
|
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-tdai',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.6,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Tdai SDK for Python',
|
|
@@ -1007,8 +1007,11 @@ class CreateChatCompletionRequest(AbstractModel):
|
|
|
1007
1007
|
r"""
|
|
1008
1008
|
:param _IsHidden: 是否隐藏
|
|
1009
1009
|
:type IsHidden: bool
|
|
1010
|
+
:param _IsChatHidden: 是否隐藏会话
|
|
1011
|
+
:type IsChatHidden: bool
|
|
1010
1012
|
"""
|
|
1011
1013
|
self._IsHidden = None
|
|
1014
|
+
self._IsChatHidden = None
|
|
1012
1015
|
|
|
1013
1016
|
@property
|
|
1014
1017
|
def IsHidden(self):
|
|
@@ -1021,9 +1024,21 @@ class CreateChatCompletionRequest(AbstractModel):
|
|
|
1021
1024
|
def IsHidden(self, IsHidden):
|
|
1022
1025
|
self._IsHidden = IsHidden
|
|
1023
1026
|
|
|
1027
|
+
@property
|
|
1028
|
+
def IsChatHidden(self):
|
|
1029
|
+
r"""是否隐藏会话
|
|
1030
|
+
:rtype: bool
|
|
1031
|
+
"""
|
|
1032
|
+
return self._IsChatHidden
|
|
1033
|
+
|
|
1034
|
+
@IsChatHidden.setter
|
|
1035
|
+
def IsChatHidden(self, IsChatHidden):
|
|
1036
|
+
self._IsChatHidden = IsChatHidden
|
|
1037
|
+
|
|
1024
1038
|
|
|
1025
1039
|
def _deserialize(self, params):
|
|
1026
1040
|
self._IsHidden = params.get("IsHidden")
|
|
1041
|
+
self._IsChatHidden = params.get("IsChatHidden")
|
|
1027
1042
|
memeber_set = set(params.keys())
|
|
1028
1043
|
for name, value in vars(self).items():
|
|
1029
1044
|
property_name = name[1:]
|
|
@@ -73,7 +73,7 @@ class TdaiClient(AbstractClient):
|
|
|
73
73
|
|
|
74
74
|
|
|
75
75
|
def CreateChatCompletion(self, request):
|
|
76
|
-
r"""
|
|
76
|
+
r"""用于创建一次会话的SSE接口
|
|
77
77
|
|
|
78
78
|
:param request: Request instance for CreateChatCompletion.
|
|
79
79
|
:type request: :class:`tencentcloud.tdai.v20250717.models.CreateChatCompletionRequest`
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-tdai
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.6
|
|
4
4
|
Summary: Tencent Cloud Tdai 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.6
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.6
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.5
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|