tencentcloud-sdk-python-tdai 3.1.82__tar.gz → 3.1.93__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.82 → tencentcloud_sdk_python_tdai-3.1.93}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_tdai-3.1.82 → tencentcloud_sdk_python_tdai-3.1.93}/setup.py +1 -1
- {tencentcloud_sdk_python_tdai-3.1.82 → tencentcloud_sdk_python_tdai-3.1.93}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_tdai-3.1.82 → tencentcloud_sdk_python_tdai-3.1.93}/tencentcloud/tdai/v20250717/models.py +184 -0
- {tencentcloud_sdk_python_tdai-3.1.82 → tencentcloud_sdk_python_tdai-3.1.93}/tencentcloud_sdk_python_tdai.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_tdai-3.1.93/tencentcloud_sdk_python_tdai.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_tdai-3.1.82/tencentcloud_sdk_python_tdai.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_tdai-3.1.82 → tencentcloud_sdk_python_tdai-3.1.93}/README.rst +0 -0
- {tencentcloud_sdk_python_tdai-3.1.82 → tencentcloud_sdk_python_tdai-3.1.93}/setup.cfg +0 -0
- {tencentcloud_sdk_python_tdai-3.1.82 → tencentcloud_sdk_python_tdai-3.1.93}/tencentcloud/tdai/__init__.py +0 -0
- {tencentcloud_sdk_python_tdai-3.1.82 → tencentcloud_sdk_python_tdai-3.1.93}/tencentcloud/tdai/v20250717/__init__.py +0 -0
- {tencentcloud_sdk_python_tdai-3.1.82 → tencentcloud_sdk_python_tdai-3.1.93}/tencentcloud/tdai/v20250717/errorcodes.py +0 -0
- {tencentcloud_sdk_python_tdai-3.1.82 → tencentcloud_sdk_python_tdai-3.1.93}/tencentcloud/tdai/v20250717/tdai_client.py +0 -0
- {tencentcloud_sdk_python_tdai-3.1.82 → tencentcloud_sdk_python_tdai-3.1.93}/tencentcloud/tdai/v20250717/tdai_client_async.py +0 -0
- {tencentcloud_sdk_python_tdai-3.1.82 → tencentcloud_sdk_python_tdai-3.1.93}/tencentcloud_sdk_python_tdai.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_tdai-3.1.82 → tencentcloud_sdk_python_tdai-3.1.93}/tencentcloud_sdk_python_tdai.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_tdai-3.1.82 → tencentcloud_sdk_python_tdai-3.1.93}/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.93
|
|
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.93
|
|
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.93,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Tdai SDK for Python',
|
|
@@ -395,6 +395,8 @@ class AgentInstance(AbstractModel):
|
|
|
395
395
|
:type LastActiveTime: str
|
|
396
396
|
:param _Description: <p>无</p>
|
|
397
397
|
:type Description: str
|
|
398
|
+
:param _CreatingProgress: <p>发货进度详情</p>
|
|
399
|
+
:type CreatingProgress: :class:`tencentcloud.tdai.v20250717.models.CreatingProgress`
|
|
398
400
|
"""
|
|
399
401
|
self._InstanceId = None
|
|
400
402
|
self._InstanceName = None
|
|
@@ -415,6 +417,7 @@ class AgentInstance(AbstractModel):
|
|
|
415
417
|
self._AllowedActions = None
|
|
416
418
|
self._LastActiveTime = None
|
|
417
419
|
self._Description = None
|
|
420
|
+
self._CreatingProgress = None
|
|
418
421
|
|
|
419
422
|
@property
|
|
420
423
|
def InstanceId(self):
|
|
@@ -625,6 +628,17 @@ class AgentInstance(AbstractModel):
|
|
|
625
628
|
def Description(self, Description):
|
|
626
629
|
self._Description = Description
|
|
627
630
|
|
|
631
|
+
@property
|
|
632
|
+
def CreatingProgress(self):
|
|
633
|
+
r"""<p>发货进度详情</p>
|
|
634
|
+
:rtype: :class:`tencentcloud.tdai.v20250717.models.CreatingProgress`
|
|
635
|
+
"""
|
|
636
|
+
return self._CreatingProgress
|
|
637
|
+
|
|
638
|
+
@CreatingProgress.setter
|
|
639
|
+
def CreatingProgress(self, CreatingProgress):
|
|
640
|
+
self._CreatingProgress = CreatingProgress
|
|
641
|
+
|
|
628
642
|
|
|
629
643
|
def _deserialize(self, params):
|
|
630
644
|
self._InstanceId = params.get("InstanceId")
|
|
@@ -658,6 +672,9 @@ class AgentInstance(AbstractModel):
|
|
|
658
672
|
self._AllowedActions = params.get("AllowedActions")
|
|
659
673
|
self._LastActiveTime = params.get("LastActiveTime")
|
|
660
674
|
self._Description = params.get("Description")
|
|
675
|
+
if params.get("CreatingProgress") is not None:
|
|
676
|
+
self._CreatingProgress = CreatingProgress()
|
|
677
|
+
self._CreatingProgress._deserialize(params.get("CreatingProgress"))
|
|
661
678
|
memeber_set = set(params.keys())
|
|
662
679
|
for name, value in vars(self).items():
|
|
663
680
|
property_name = name[1:]
|
|
@@ -1732,6 +1749,173 @@ class CreateChatCompletionResponse(AbstractModel):
|
|
|
1732
1749
|
self._RequestId = params.get("RequestId")
|
|
1733
1750
|
|
|
1734
1751
|
|
|
1752
|
+
class CreatingProgress(AbstractModel):
|
|
1753
|
+
r"""发货步骤描述
|
|
1754
|
+
|
|
1755
|
+
"""
|
|
1756
|
+
|
|
1757
|
+
def __init__(self):
|
|
1758
|
+
r"""
|
|
1759
|
+
:param _TotalSteps: <p>总步骤数</p>
|
|
1760
|
+
:type TotalSteps: int
|
|
1761
|
+
:param _CurrentStep: <p>当前步骤</p>
|
|
1762
|
+
:type CurrentStep: int
|
|
1763
|
+
:param _Steps: <p>步骤详情</p>
|
|
1764
|
+
:type Steps: list of CreatingStepInfo
|
|
1765
|
+
"""
|
|
1766
|
+
self._TotalSteps = None
|
|
1767
|
+
self._CurrentStep = None
|
|
1768
|
+
self._Steps = None
|
|
1769
|
+
|
|
1770
|
+
@property
|
|
1771
|
+
def TotalSteps(self):
|
|
1772
|
+
r"""<p>总步骤数</p>
|
|
1773
|
+
:rtype: int
|
|
1774
|
+
"""
|
|
1775
|
+
return self._TotalSteps
|
|
1776
|
+
|
|
1777
|
+
@TotalSteps.setter
|
|
1778
|
+
def TotalSteps(self, TotalSteps):
|
|
1779
|
+
self._TotalSteps = TotalSteps
|
|
1780
|
+
|
|
1781
|
+
@property
|
|
1782
|
+
def CurrentStep(self):
|
|
1783
|
+
r"""<p>当前步骤</p>
|
|
1784
|
+
:rtype: int
|
|
1785
|
+
"""
|
|
1786
|
+
return self._CurrentStep
|
|
1787
|
+
|
|
1788
|
+
@CurrentStep.setter
|
|
1789
|
+
def CurrentStep(self, CurrentStep):
|
|
1790
|
+
self._CurrentStep = CurrentStep
|
|
1791
|
+
|
|
1792
|
+
@property
|
|
1793
|
+
def Steps(self):
|
|
1794
|
+
r"""<p>步骤详情</p>
|
|
1795
|
+
:rtype: list of CreatingStepInfo
|
|
1796
|
+
"""
|
|
1797
|
+
return self._Steps
|
|
1798
|
+
|
|
1799
|
+
@Steps.setter
|
|
1800
|
+
def Steps(self, Steps):
|
|
1801
|
+
self._Steps = Steps
|
|
1802
|
+
|
|
1803
|
+
|
|
1804
|
+
def _deserialize(self, params):
|
|
1805
|
+
self._TotalSteps = params.get("TotalSteps")
|
|
1806
|
+
self._CurrentStep = params.get("CurrentStep")
|
|
1807
|
+
if params.get("Steps") is not None:
|
|
1808
|
+
self._Steps = []
|
|
1809
|
+
for item in params.get("Steps"):
|
|
1810
|
+
obj = CreatingStepInfo()
|
|
1811
|
+
obj._deserialize(item)
|
|
1812
|
+
self._Steps.append(obj)
|
|
1813
|
+
memeber_set = set(params.keys())
|
|
1814
|
+
for name, value in vars(self).items():
|
|
1815
|
+
property_name = name[1:]
|
|
1816
|
+
if property_name in memeber_set:
|
|
1817
|
+
memeber_set.remove(property_name)
|
|
1818
|
+
if len(memeber_set) > 0:
|
|
1819
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
1820
|
+
|
|
1821
|
+
|
|
1822
|
+
|
|
1823
|
+
class CreatingStepInfo(AbstractModel):
|
|
1824
|
+
r"""发货步骤详情
|
|
1825
|
+
|
|
1826
|
+
"""
|
|
1827
|
+
|
|
1828
|
+
def __init__(self):
|
|
1829
|
+
r"""
|
|
1830
|
+
:param _StepName: <p>步骤名称</p>
|
|
1831
|
+
:type StepName: str
|
|
1832
|
+
:param _StepDesc: <p>步骤描述</p>
|
|
1833
|
+
:type StepDesc: str
|
|
1834
|
+
:param _Status: <p>步骤状态</p>
|
|
1835
|
+
:type Status: str
|
|
1836
|
+
:param _FinishTime: <p>完成时间</p>
|
|
1837
|
+
:type FinishTime: str
|
|
1838
|
+
:param _ErrMsg: <p>错误信息描述</p>
|
|
1839
|
+
:type ErrMsg: str
|
|
1840
|
+
"""
|
|
1841
|
+
self._StepName = None
|
|
1842
|
+
self._StepDesc = None
|
|
1843
|
+
self._Status = None
|
|
1844
|
+
self._FinishTime = None
|
|
1845
|
+
self._ErrMsg = None
|
|
1846
|
+
|
|
1847
|
+
@property
|
|
1848
|
+
def StepName(self):
|
|
1849
|
+
r"""<p>步骤名称</p>
|
|
1850
|
+
:rtype: str
|
|
1851
|
+
"""
|
|
1852
|
+
return self._StepName
|
|
1853
|
+
|
|
1854
|
+
@StepName.setter
|
|
1855
|
+
def StepName(self, StepName):
|
|
1856
|
+
self._StepName = StepName
|
|
1857
|
+
|
|
1858
|
+
@property
|
|
1859
|
+
def StepDesc(self):
|
|
1860
|
+
r"""<p>步骤描述</p>
|
|
1861
|
+
:rtype: str
|
|
1862
|
+
"""
|
|
1863
|
+
return self._StepDesc
|
|
1864
|
+
|
|
1865
|
+
@StepDesc.setter
|
|
1866
|
+
def StepDesc(self, StepDesc):
|
|
1867
|
+
self._StepDesc = StepDesc
|
|
1868
|
+
|
|
1869
|
+
@property
|
|
1870
|
+
def Status(self):
|
|
1871
|
+
r"""<p>步骤状态</p>
|
|
1872
|
+
:rtype: str
|
|
1873
|
+
"""
|
|
1874
|
+
return self._Status
|
|
1875
|
+
|
|
1876
|
+
@Status.setter
|
|
1877
|
+
def Status(self, Status):
|
|
1878
|
+
self._Status = Status
|
|
1879
|
+
|
|
1880
|
+
@property
|
|
1881
|
+
def FinishTime(self):
|
|
1882
|
+
r"""<p>完成时间</p>
|
|
1883
|
+
:rtype: str
|
|
1884
|
+
"""
|
|
1885
|
+
return self._FinishTime
|
|
1886
|
+
|
|
1887
|
+
@FinishTime.setter
|
|
1888
|
+
def FinishTime(self, FinishTime):
|
|
1889
|
+
self._FinishTime = FinishTime
|
|
1890
|
+
|
|
1891
|
+
@property
|
|
1892
|
+
def ErrMsg(self):
|
|
1893
|
+
r"""<p>错误信息描述</p>
|
|
1894
|
+
:rtype: str
|
|
1895
|
+
"""
|
|
1896
|
+
return self._ErrMsg
|
|
1897
|
+
|
|
1898
|
+
@ErrMsg.setter
|
|
1899
|
+
def ErrMsg(self, ErrMsg):
|
|
1900
|
+
self._ErrMsg = ErrMsg
|
|
1901
|
+
|
|
1902
|
+
|
|
1903
|
+
def _deserialize(self, params):
|
|
1904
|
+
self._StepName = params.get("StepName")
|
|
1905
|
+
self._StepDesc = params.get("StepDesc")
|
|
1906
|
+
self._Status = params.get("Status")
|
|
1907
|
+
self._FinishTime = params.get("FinishTime")
|
|
1908
|
+
self._ErrMsg = params.get("ErrMsg")
|
|
1909
|
+
memeber_set = set(params.keys())
|
|
1910
|
+
for name, value in vars(self).items():
|
|
1911
|
+
property_name = name[1:]
|
|
1912
|
+
if property_name in memeber_set:
|
|
1913
|
+
memeber_set.remove(property_name)
|
|
1914
|
+
if len(memeber_set) > 0:
|
|
1915
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
1916
|
+
|
|
1917
|
+
|
|
1918
|
+
|
|
1735
1919
|
class DescribeAgentDutyTaskDetailRequest(AbstractModel):
|
|
1736
1920
|
r"""DescribeAgentDutyTaskDetail请求参数结构体
|
|
1737
1921
|
|
|
@@ -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.93
|
|
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.93
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.93
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.82
|
|
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
|