tencentcloud-sdk-python-tdai 3.1.20__tar.gz → 3.1.50__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_tdai-3.1.20 → tencentcloud_sdk_python_tdai-3.1.50}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_tdai-3.1.20 → tencentcloud_sdk_python_tdai-3.1.50}/setup.py +1 -1
  3. {tencentcloud_sdk_python_tdai-3.1.20 → tencentcloud_sdk_python_tdai-3.1.50}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_tdai-3.1.20 → tencentcloud_sdk_python_tdai-3.1.50}/tencentcloud/tdai/v20250717/models.py +44 -14
  5. {tencentcloud_sdk_python_tdai-3.1.20 → tencentcloud_sdk_python_tdai-3.1.50}/tencentcloud_sdk_python_tdai.egg-info/PKG-INFO +2 -2
  6. tencentcloud_sdk_python_tdai-3.1.50/tencentcloud_sdk_python_tdai.egg-info/requires.txt +1 -0
  7. tencentcloud_sdk_python_tdai-3.1.20/tencentcloud_sdk_python_tdai.egg-info/requires.txt +0 -1
  8. {tencentcloud_sdk_python_tdai-3.1.20 → tencentcloud_sdk_python_tdai-3.1.50}/README.rst +0 -0
  9. {tencentcloud_sdk_python_tdai-3.1.20 → tencentcloud_sdk_python_tdai-3.1.50}/setup.cfg +0 -0
  10. {tencentcloud_sdk_python_tdai-3.1.20 → tencentcloud_sdk_python_tdai-3.1.50}/tencentcloud/tdai/__init__.py +0 -0
  11. {tencentcloud_sdk_python_tdai-3.1.20 → tencentcloud_sdk_python_tdai-3.1.50}/tencentcloud/tdai/v20250717/__init__.py +0 -0
  12. {tencentcloud_sdk_python_tdai-3.1.20 → tencentcloud_sdk_python_tdai-3.1.50}/tencentcloud/tdai/v20250717/errorcodes.py +0 -0
  13. {tencentcloud_sdk_python_tdai-3.1.20 → tencentcloud_sdk_python_tdai-3.1.50}/tencentcloud/tdai/v20250717/tdai_client.py +0 -0
  14. {tencentcloud_sdk_python_tdai-3.1.20 → tencentcloud_sdk_python_tdai-3.1.50}/tencentcloud/tdai/v20250717/tdai_client_async.py +0 -0
  15. {tencentcloud_sdk_python_tdai-3.1.20 → tencentcloud_sdk_python_tdai-3.1.50}/tencentcloud_sdk_python_tdai.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_tdai-3.1.20 → tencentcloud_sdk_python_tdai-3.1.50}/tencentcloud_sdk_python_tdai.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_tdai-3.1.20 → tencentcloud_sdk_python_tdai-3.1.50}/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.20
3
+ Version: 3.1.50
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.20
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.50
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.20,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.50,<4.0.0"],
12
12
 
13
13
  version=tencentcloud.__version__,
14
14
  description='Tencent Cloud Tdai SDK for Python',
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.20'
17
+ __version__ = '3.1.50'
@@ -31,6 +31,8 @@ class Agent(AbstractModel):
31
31
  :type AgentName: str
32
32
  :param _AgentInternalName: 智能体类型
33
33
  :type AgentInternalName: str
34
+ :param _DeployPlace: 架构:共享版-intranet,企业版-userVpc
35
+ :type DeployPlace: str
34
36
  :param _AgentStatus: 智能体状态
35
37
  :type AgentStatus: str
36
38
  :param _DefaultVersion: 默认版本
@@ -51,6 +53,7 @@ class Agent(AbstractModel):
51
53
  self._AgentId = None
52
54
  self._AgentName = None
53
55
  self._AgentInternalName = None
56
+ self._DeployPlace = None
54
57
  self._AgentStatus = None
55
58
  self._DefaultVersion = None
56
59
  self._AgentType = None
@@ -93,6 +96,17 @@ class Agent(AbstractModel):
93
96
  def AgentInternalName(self, AgentInternalName):
94
97
  self._AgentInternalName = AgentInternalName
95
98
 
99
+ @property
100
+ def DeployPlace(self):
101
+ r"""架构:共享版-intranet,企业版-userVpc
102
+ :rtype: str
103
+ """
104
+ return self._DeployPlace
105
+
106
+ @DeployPlace.setter
107
+ def DeployPlace(self, DeployPlace):
108
+ self._DeployPlace = DeployPlace
109
+
96
110
  @property
97
111
  def AgentStatus(self):
98
112
  r"""智能体状态
@@ -186,6 +200,7 @@ class Agent(AbstractModel):
186
200
  self._AgentId = params.get("AgentId")
187
201
  self._AgentName = params.get("AgentName")
188
202
  self._AgentInternalName = params.get("AgentInternalName")
203
+ self._DeployPlace = params.get("DeployPlace")
189
204
  self._AgentStatus = params.get("AgentStatus")
190
205
  self._DefaultVersion = params.get("DefaultVersion")
191
206
  self._AgentType = params.get("AgentType")
@@ -972,15 +987,15 @@ class CreateAgentInstanceRequest(AbstractModel):
972
987
 
973
988
  def __init__(self):
974
989
  r"""
975
- :param _AgentId: 智能体ID
990
+ :param _AgentId: <p>智能体ID</p>
976
991
  :type AgentId: str
977
- :param _AgentVersion: 智能体版本
992
+ :param _AgentVersion: <p>智能体版本</p>
978
993
  :type AgentVersion: str
979
- :param _InstanceName: 实例名
994
+ :param _InstanceName: <p>实例名</p>
980
995
  :type InstanceName: str
981
- :param _Parameters: 智能体实例的参数列表
996
+ :param _Parameters: <p>智能体实例的参数列表</p>
982
997
  :type Parameters: list of Parameter
983
- :param _Tags: 资源的标签信息
998
+ :param _Tags: <p>资源的标签信息</p>
984
999
  :type Tags: list of TagItem
985
1000
  """
986
1001
  self._AgentId = None
@@ -991,7 +1006,7 @@ class CreateAgentInstanceRequest(AbstractModel):
991
1006
 
992
1007
  @property
993
1008
  def AgentId(self):
994
- r"""智能体ID
1009
+ r"""<p>智能体ID</p>
995
1010
  :rtype: str
996
1011
  """
997
1012
  return self._AgentId
@@ -1002,7 +1017,7 @@ class CreateAgentInstanceRequest(AbstractModel):
1002
1017
 
1003
1018
  @property
1004
1019
  def AgentVersion(self):
1005
- r"""智能体版本
1020
+ r"""<p>智能体版本</p>
1006
1021
  :rtype: str
1007
1022
  """
1008
1023
  return self._AgentVersion
@@ -1013,7 +1028,7 @@ class CreateAgentInstanceRequest(AbstractModel):
1013
1028
 
1014
1029
  @property
1015
1030
  def InstanceName(self):
1016
- r"""实例名
1031
+ r"""<p>实例名</p>
1017
1032
  :rtype: str
1018
1033
  """
1019
1034
  return self._InstanceName
@@ -1024,7 +1039,7 @@ class CreateAgentInstanceRequest(AbstractModel):
1024
1039
 
1025
1040
  @property
1026
1041
  def Parameters(self):
1027
- r"""智能体实例的参数列表
1042
+ r"""<p>智能体实例的参数列表</p>
1028
1043
  :rtype: list of Parameter
1029
1044
  """
1030
1045
  return self._Parameters
@@ -1035,7 +1050,7 @@ class CreateAgentInstanceRequest(AbstractModel):
1035
1050
 
1036
1051
  @property
1037
1052
  def Tags(self):
1038
- r"""资源的标签信息
1053
+ r"""<p>资源的标签信息</p>
1039
1054
  :rtype: list of TagItem
1040
1055
  """
1041
1056
  return self._Tags
@@ -1078,9 +1093,9 @@ class CreateAgentInstanceResponse(AbstractModel):
1078
1093
 
1079
1094
  def __init__(self):
1080
1095
  r"""
1081
- :param _InstanceId: 智能体实例ID
1096
+ :param _InstanceId: <p>智能体实例ID</p>
1082
1097
  :type InstanceId: str
1083
- :param _InstanceName: 智能体实例名称
1098
+ :param _InstanceName: <p>智能体实例名称</p>
1084
1099
  :type InstanceName: str
1085
1100
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1086
1101
  :type RequestId: str
@@ -1091,7 +1106,7 @@ class CreateAgentInstanceResponse(AbstractModel):
1091
1106
 
1092
1107
  @property
1093
1108
  def InstanceId(self):
1094
- r"""智能体实例ID
1109
+ r"""<p>智能体实例ID</p>
1095
1110
  :rtype: str
1096
1111
  """
1097
1112
  return self._InstanceId
@@ -1102,7 +1117,7 @@ class CreateAgentInstanceResponse(AbstractModel):
1102
1117
 
1103
1118
  @property
1104
1119
  def InstanceName(self):
1105
- r"""智能体实例名称
1120
+ r"""<p>智能体实例名称</p>
1106
1121
  :rtype: str
1107
1122
  """
1108
1123
  return self._InstanceName
@@ -2020,6 +2035,8 @@ class DescribeAgentsRequest(AbstractModel):
2020
2035
  :type AgentInternalName: str
2021
2036
  :param _AgentStatus: 智能体状态,为空时查询所有,如果填写则会根据AgentStatus筛选
2022
2037
  :type AgentStatus: str
2038
+ :param _DeployPlace: 架构,共享版-intranet,企业版-userVpc
2039
+ :type DeployPlace: str
2023
2040
  """
2024
2041
  self._Offset = None
2025
2042
  self._Limit = None
@@ -2027,6 +2044,7 @@ class DescribeAgentsRequest(AbstractModel):
2027
2044
  self._AgentName = None
2028
2045
  self._AgentInternalName = None
2029
2046
  self._AgentStatus = None
2047
+ self._DeployPlace = None
2030
2048
 
2031
2049
  @property
2032
2050
  def Offset(self):
@@ -2094,6 +2112,17 @@ class DescribeAgentsRequest(AbstractModel):
2094
2112
  def AgentStatus(self, AgentStatus):
2095
2113
  self._AgentStatus = AgentStatus
2096
2114
 
2115
+ @property
2116
+ def DeployPlace(self):
2117
+ r"""架构,共享版-intranet,企业版-userVpc
2118
+ :rtype: str
2119
+ """
2120
+ return self._DeployPlace
2121
+
2122
+ @DeployPlace.setter
2123
+ def DeployPlace(self, DeployPlace):
2124
+ self._DeployPlace = DeployPlace
2125
+
2097
2126
 
2098
2127
  def _deserialize(self, params):
2099
2128
  self._Offset = params.get("Offset")
@@ -2102,6 +2131,7 @@ class DescribeAgentsRequest(AbstractModel):
2102
2131
  self._AgentName = params.get("AgentName")
2103
2132
  self._AgentInternalName = params.get("AgentInternalName")
2104
2133
  self._AgentStatus = params.get("AgentStatus")
2134
+ self._DeployPlace = params.get("DeployPlace")
2105
2135
  memeber_set = set(params.keys())
2106
2136
  for name, value in vars(self).items():
2107
2137
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-tdai
3
- Version: 3.1.20
3
+ Version: 3.1.50
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.20
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.50
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.50
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.1.20