tencentcloud-sdk-python-tdai 3.1.82__tar.gz → 3.1.101__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.101}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_tdai-3.1.82 → tencentcloud_sdk_python_tdai-3.1.101}/setup.py +1 -1
- {tencentcloud_sdk_python_tdai-3.1.82 → tencentcloud_sdk_python_tdai-3.1.101}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_tdai-3.1.82 → tencentcloud_sdk_python_tdai-3.1.101}/tencentcloud/tdai/v20250717/models.py +233 -4
- {tencentcloud_sdk_python_tdai-3.1.82 → tencentcloud_sdk_python_tdai-3.1.101}/tencentcloud_sdk_python_tdai.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_tdai-3.1.101/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.101}/README.rst +0 -0
- {tencentcloud_sdk_python_tdai-3.1.82 → tencentcloud_sdk_python_tdai-3.1.101}/setup.cfg +0 -0
- {tencentcloud_sdk_python_tdai-3.1.82 → tencentcloud_sdk_python_tdai-3.1.101}/tencentcloud/tdai/__init__.py +0 -0
- {tencentcloud_sdk_python_tdai-3.1.82 → tencentcloud_sdk_python_tdai-3.1.101}/tencentcloud/tdai/v20250717/__init__.py +0 -0
- {tencentcloud_sdk_python_tdai-3.1.82 → tencentcloud_sdk_python_tdai-3.1.101}/tencentcloud/tdai/v20250717/errorcodes.py +0 -0
- {tencentcloud_sdk_python_tdai-3.1.82 → tencentcloud_sdk_python_tdai-3.1.101}/tencentcloud/tdai/v20250717/tdai_client.py +0 -0
- {tencentcloud_sdk_python_tdai-3.1.82 → tencentcloud_sdk_python_tdai-3.1.101}/tencentcloud/tdai/v20250717/tdai_client_async.py +0 -0
- {tencentcloud_sdk_python_tdai-3.1.82 → tencentcloud_sdk_python_tdai-3.1.101}/tencentcloud_sdk_python_tdai.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_tdai-3.1.82 → tencentcloud_sdk_python_tdai-3.1.101}/tencentcloud_sdk_python_tdai.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_tdai-3.1.82 → tencentcloud_sdk_python_tdai-3.1.101}/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.101
|
|
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.101
|
|
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.101,<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:]
|
|
@@ -1467,17 +1484,59 @@ class CreateChatCompletionRequest(AbstractModel):
|
|
|
1467
1484
|
|
|
1468
1485
|
def __init__(self):
|
|
1469
1486
|
r"""
|
|
1470
|
-
:param
|
|
1487
|
+
:param _InputContent: <p>输入内容</p>
|
|
1488
|
+
:type InputContent: str
|
|
1489
|
+
:param _InstanceId: <p>实例ID</p>
|
|
1490
|
+
:type InstanceId: str
|
|
1491
|
+
:param _ChatId: <p>对话窗口ID,空值表示新的会话</p>
|
|
1492
|
+
:type ChatId: str
|
|
1493
|
+
:param _IsHidden: <p>是否隐藏</p>
|
|
1471
1494
|
:type IsHidden: bool
|
|
1472
|
-
:param _IsChatHidden:
|
|
1495
|
+
:param _IsChatHidden: <p>是否隐藏会话</p>
|
|
1473
1496
|
:type IsChatHidden: bool
|
|
1474
1497
|
"""
|
|
1498
|
+
self._InputContent = None
|
|
1499
|
+
self._InstanceId = None
|
|
1500
|
+
self._ChatId = None
|
|
1475
1501
|
self._IsHidden = None
|
|
1476
1502
|
self._IsChatHidden = None
|
|
1477
1503
|
|
|
1504
|
+
@property
|
|
1505
|
+
def InputContent(self):
|
|
1506
|
+
r"""<p>输入内容</p>
|
|
1507
|
+
:rtype: str
|
|
1508
|
+
"""
|
|
1509
|
+
return self._InputContent
|
|
1510
|
+
|
|
1511
|
+
@InputContent.setter
|
|
1512
|
+
def InputContent(self, InputContent):
|
|
1513
|
+
self._InputContent = InputContent
|
|
1514
|
+
|
|
1515
|
+
@property
|
|
1516
|
+
def InstanceId(self):
|
|
1517
|
+
r"""<p>实例ID</p>
|
|
1518
|
+
:rtype: str
|
|
1519
|
+
"""
|
|
1520
|
+
return self._InstanceId
|
|
1521
|
+
|
|
1522
|
+
@InstanceId.setter
|
|
1523
|
+
def InstanceId(self, InstanceId):
|
|
1524
|
+
self._InstanceId = InstanceId
|
|
1525
|
+
|
|
1526
|
+
@property
|
|
1527
|
+
def ChatId(self):
|
|
1528
|
+
r"""<p>对话窗口ID,空值表示新的会话</p>
|
|
1529
|
+
:rtype: str
|
|
1530
|
+
"""
|
|
1531
|
+
return self._ChatId
|
|
1532
|
+
|
|
1533
|
+
@ChatId.setter
|
|
1534
|
+
def ChatId(self, ChatId):
|
|
1535
|
+
self._ChatId = ChatId
|
|
1536
|
+
|
|
1478
1537
|
@property
|
|
1479
1538
|
def IsHidden(self):
|
|
1480
|
-
r"""
|
|
1539
|
+
r"""<p>是否隐藏</p>
|
|
1481
1540
|
:rtype: bool
|
|
1482
1541
|
"""
|
|
1483
1542
|
return self._IsHidden
|
|
@@ -1488,7 +1547,7 @@ class CreateChatCompletionRequest(AbstractModel):
|
|
|
1488
1547
|
|
|
1489
1548
|
@property
|
|
1490
1549
|
def IsChatHidden(self):
|
|
1491
|
-
r"""
|
|
1550
|
+
r"""<p>是否隐藏会话</p>
|
|
1492
1551
|
:rtype: bool
|
|
1493
1552
|
"""
|
|
1494
1553
|
return self._IsChatHidden
|
|
@@ -1499,6 +1558,9 @@ class CreateChatCompletionRequest(AbstractModel):
|
|
|
1499
1558
|
|
|
1500
1559
|
|
|
1501
1560
|
def _deserialize(self, params):
|
|
1561
|
+
self._InputContent = params.get("InputContent")
|
|
1562
|
+
self._InstanceId = params.get("InstanceId")
|
|
1563
|
+
self._ChatId = params.get("ChatId")
|
|
1502
1564
|
self._IsHidden = params.get("IsHidden")
|
|
1503
1565
|
self._IsChatHidden = params.get("IsChatHidden")
|
|
1504
1566
|
memeber_set = set(params.keys())
|
|
@@ -1732,6 +1794,173 @@ class CreateChatCompletionResponse(AbstractModel):
|
|
|
1732
1794
|
self._RequestId = params.get("RequestId")
|
|
1733
1795
|
|
|
1734
1796
|
|
|
1797
|
+
class CreatingProgress(AbstractModel):
|
|
1798
|
+
r"""发货步骤描述
|
|
1799
|
+
|
|
1800
|
+
"""
|
|
1801
|
+
|
|
1802
|
+
def __init__(self):
|
|
1803
|
+
r"""
|
|
1804
|
+
:param _TotalSteps: <p>总步骤数</p>
|
|
1805
|
+
:type TotalSteps: int
|
|
1806
|
+
:param _CurrentStep: <p>当前步骤</p>
|
|
1807
|
+
:type CurrentStep: int
|
|
1808
|
+
:param _Steps: <p>步骤详情</p>
|
|
1809
|
+
:type Steps: list of CreatingStepInfo
|
|
1810
|
+
"""
|
|
1811
|
+
self._TotalSteps = None
|
|
1812
|
+
self._CurrentStep = None
|
|
1813
|
+
self._Steps = None
|
|
1814
|
+
|
|
1815
|
+
@property
|
|
1816
|
+
def TotalSteps(self):
|
|
1817
|
+
r"""<p>总步骤数</p>
|
|
1818
|
+
:rtype: int
|
|
1819
|
+
"""
|
|
1820
|
+
return self._TotalSteps
|
|
1821
|
+
|
|
1822
|
+
@TotalSteps.setter
|
|
1823
|
+
def TotalSteps(self, TotalSteps):
|
|
1824
|
+
self._TotalSteps = TotalSteps
|
|
1825
|
+
|
|
1826
|
+
@property
|
|
1827
|
+
def CurrentStep(self):
|
|
1828
|
+
r"""<p>当前步骤</p>
|
|
1829
|
+
:rtype: int
|
|
1830
|
+
"""
|
|
1831
|
+
return self._CurrentStep
|
|
1832
|
+
|
|
1833
|
+
@CurrentStep.setter
|
|
1834
|
+
def CurrentStep(self, CurrentStep):
|
|
1835
|
+
self._CurrentStep = CurrentStep
|
|
1836
|
+
|
|
1837
|
+
@property
|
|
1838
|
+
def Steps(self):
|
|
1839
|
+
r"""<p>步骤详情</p>
|
|
1840
|
+
:rtype: list of CreatingStepInfo
|
|
1841
|
+
"""
|
|
1842
|
+
return self._Steps
|
|
1843
|
+
|
|
1844
|
+
@Steps.setter
|
|
1845
|
+
def Steps(self, Steps):
|
|
1846
|
+
self._Steps = Steps
|
|
1847
|
+
|
|
1848
|
+
|
|
1849
|
+
def _deserialize(self, params):
|
|
1850
|
+
self._TotalSteps = params.get("TotalSteps")
|
|
1851
|
+
self._CurrentStep = params.get("CurrentStep")
|
|
1852
|
+
if params.get("Steps") is not None:
|
|
1853
|
+
self._Steps = []
|
|
1854
|
+
for item in params.get("Steps"):
|
|
1855
|
+
obj = CreatingStepInfo()
|
|
1856
|
+
obj._deserialize(item)
|
|
1857
|
+
self._Steps.append(obj)
|
|
1858
|
+
memeber_set = set(params.keys())
|
|
1859
|
+
for name, value in vars(self).items():
|
|
1860
|
+
property_name = name[1:]
|
|
1861
|
+
if property_name in memeber_set:
|
|
1862
|
+
memeber_set.remove(property_name)
|
|
1863
|
+
if len(memeber_set) > 0:
|
|
1864
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
1865
|
+
|
|
1866
|
+
|
|
1867
|
+
|
|
1868
|
+
class CreatingStepInfo(AbstractModel):
|
|
1869
|
+
r"""发货步骤详情
|
|
1870
|
+
|
|
1871
|
+
"""
|
|
1872
|
+
|
|
1873
|
+
def __init__(self):
|
|
1874
|
+
r"""
|
|
1875
|
+
:param _StepName: <p>步骤名称</p>
|
|
1876
|
+
:type StepName: str
|
|
1877
|
+
:param _StepDesc: <p>步骤描述</p>
|
|
1878
|
+
:type StepDesc: str
|
|
1879
|
+
:param _Status: <p>步骤状态</p>
|
|
1880
|
+
:type Status: str
|
|
1881
|
+
:param _FinishTime: <p>完成时间</p>
|
|
1882
|
+
:type FinishTime: str
|
|
1883
|
+
:param _ErrMsg: <p>错误信息描述</p>
|
|
1884
|
+
:type ErrMsg: str
|
|
1885
|
+
"""
|
|
1886
|
+
self._StepName = None
|
|
1887
|
+
self._StepDesc = None
|
|
1888
|
+
self._Status = None
|
|
1889
|
+
self._FinishTime = None
|
|
1890
|
+
self._ErrMsg = None
|
|
1891
|
+
|
|
1892
|
+
@property
|
|
1893
|
+
def StepName(self):
|
|
1894
|
+
r"""<p>步骤名称</p>
|
|
1895
|
+
:rtype: str
|
|
1896
|
+
"""
|
|
1897
|
+
return self._StepName
|
|
1898
|
+
|
|
1899
|
+
@StepName.setter
|
|
1900
|
+
def StepName(self, StepName):
|
|
1901
|
+
self._StepName = StepName
|
|
1902
|
+
|
|
1903
|
+
@property
|
|
1904
|
+
def StepDesc(self):
|
|
1905
|
+
r"""<p>步骤描述</p>
|
|
1906
|
+
:rtype: str
|
|
1907
|
+
"""
|
|
1908
|
+
return self._StepDesc
|
|
1909
|
+
|
|
1910
|
+
@StepDesc.setter
|
|
1911
|
+
def StepDesc(self, StepDesc):
|
|
1912
|
+
self._StepDesc = StepDesc
|
|
1913
|
+
|
|
1914
|
+
@property
|
|
1915
|
+
def Status(self):
|
|
1916
|
+
r"""<p>步骤状态</p>
|
|
1917
|
+
:rtype: str
|
|
1918
|
+
"""
|
|
1919
|
+
return self._Status
|
|
1920
|
+
|
|
1921
|
+
@Status.setter
|
|
1922
|
+
def Status(self, Status):
|
|
1923
|
+
self._Status = Status
|
|
1924
|
+
|
|
1925
|
+
@property
|
|
1926
|
+
def FinishTime(self):
|
|
1927
|
+
r"""<p>完成时间</p>
|
|
1928
|
+
:rtype: str
|
|
1929
|
+
"""
|
|
1930
|
+
return self._FinishTime
|
|
1931
|
+
|
|
1932
|
+
@FinishTime.setter
|
|
1933
|
+
def FinishTime(self, FinishTime):
|
|
1934
|
+
self._FinishTime = FinishTime
|
|
1935
|
+
|
|
1936
|
+
@property
|
|
1937
|
+
def ErrMsg(self):
|
|
1938
|
+
r"""<p>错误信息描述</p>
|
|
1939
|
+
:rtype: str
|
|
1940
|
+
"""
|
|
1941
|
+
return self._ErrMsg
|
|
1942
|
+
|
|
1943
|
+
@ErrMsg.setter
|
|
1944
|
+
def ErrMsg(self, ErrMsg):
|
|
1945
|
+
self._ErrMsg = ErrMsg
|
|
1946
|
+
|
|
1947
|
+
|
|
1948
|
+
def _deserialize(self, params):
|
|
1949
|
+
self._StepName = params.get("StepName")
|
|
1950
|
+
self._StepDesc = params.get("StepDesc")
|
|
1951
|
+
self._Status = params.get("Status")
|
|
1952
|
+
self._FinishTime = params.get("FinishTime")
|
|
1953
|
+
self._ErrMsg = params.get("ErrMsg")
|
|
1954
|
+
memeber_set = set(params.keys())
|
|
1955
|
+
for name, value in vars(self).items():
|
|
1956
|
+
property_name = name[1:]
|
|
1957
|
+
if property_name in memeber_set:
|
|
1958
|
+
memeber_set.remove(property_name)
|
|
1959
|
+
if len(memeber_set) > 0:
|
|
1960
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
1961
|
+
|
|
1962
|
+
|
|
1963
|
+
|
|
1735
1964
|
class DescribeAgentDutyTaskDetailRequest(AbstractModel):
|
|
1736
1965
|
r"""DescribeAgentDutyTaskDetail请求参数结构体
|
|
1737
1966
|
|
|
@@ -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.101
|
|
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.101
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.101
|
|
@@ -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
|