tencentcloud-sdk-python-tdai 3.1.93__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.
Files changed (17) hide show
  1. {tencentcloud_sdk_python_tdai-3.1.93 → tencentcloud_sdk_python_tdai-3.1.101}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_tdai-3.1.93 → tencentcloud_sdk_python_tdai-3.1.101}/setup.py +1 -1
  3. {tencentcloud_sdk_python_tdai-3.1.93 → tencentcloud_sdk_python_tdai-3.1.101}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_tdai-3.1.93 → tencentcloud_sdk_python_tdai-3.1.101}/tencentcloud/tdai/v20250717/models.py +49 -4
  5. {tencentcloud_sdk_python_tdai-3.1.93 → tencentcloud_sdk_python_tdai-3.1.101}/tencentcloud_sdk_python_tdai.egg-info/PKG-INFO +2 -2
  6. tencentcloud_sdk_python_tdai-3.1.101/tencentcloud_sdk_python_tdai.egg-info/requires.txt +1 -0
  7. tencentcloud_sdk_python_tdai-3.1.93/tencentcloud_sdk_python_tdai.egg-info/requires.txt +0 -1
  8. {tencentcloud_sdk_python_tdai-3.1.93 → tencentcloud_sdk_python_tdai-3.1.101}/README.rst +0 -0
  9. {tencentcloud_sdk_python_tdai-3.1.93 → tencentcloud_sdk_python_tdai-3.1.101}/setup.cfg +0 -0
  10. {tencentcloud_sdk_python_tdai-3.1.93 → tencentcloud_sdk_python_tdai-3.1.101}/tencentcloud/tdai/__init__.py +0 -0
  11. {tencentcloud_sdk_python_tdai-3.1.93 → tencentcloud_sdk_python_tdai-3.1.101}/tencentcloud/tdai/v20250717/__init__.py +0 -0
  12. {tencentcloud_sdk_python_tdai-3.1.93 → tencentcloud_sdk_python_tdai-3.1.101}/tencentcloud/tdai/v20250717/errorcodes.py +0 -0
  13. {tencentcloud_sdk_python_tdai-3.1.93 → tencentcloud_sdk_python_tdai-3.1.101}/tencentcloud/tdai/v20250717/tdai_client.py +0 -0
  14. {tencentcloud_sdk_python_tdai-3.1.93 → tencentcloud_sdk_python_tdai-3.1.101}/tencentcloud/tdai/v20250717/tdai_client_async.py +0 -0
  15. {tencentcloud_sdk_python_tdai-3.1.93 → tencentcloud_sdk_python_tdai-3.1.101}/tencentcloud_sdk_python_tdai.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_tdai-3.1.93 → tencentcloud_sdk_python_tdai-3.1.101}/tencentcloud_sdk_python_tdai.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_tdai-3.1.93 → 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.93
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.93
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.93,<4.0.0"],
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',
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.93'
17
+ __version__ = '3.1.101'
@@ -1484,17 +1484,59 @@ class CreateChatCompletionRequest(AbstractModel):
1484
1484
 
1485
1485
  def __init__(self):
1486
1486
  r"""
1487
- :param _IsHidden: 是否隐藏
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>
1488
1494
  :type IsHidden: bool
1489
- :param _IsChatHidden: 是否隐藏会话
1495
+ :param _IsChatHidden: <p>是否隐藏会话</p>
1490
1496
  :type IsChatHidden: bool
1491
1497
  """
1498
+ self._InputContent = None
1499
+ self._InstanceId = None
1500
+ self._ChatId = None
1492
1501
  self._IsHidden = None
1493
1502
  self._IsChatHidden = None
1494
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
+
1495
1537
  @property
1496
1538
  def IsHidden(self):
1497
- r"""是否隐藏
1539
+ r"""<p>是否隐藏</p>
1498
1540
  :rtype: bool
1499
1541
  """
1500
1542
  return self._IsHidden
@@ -1505,7 +1547,7 @@ class CreateChatCompletionRequest(AbstractModel):
1505
1547
 
1506
1548
  @property
1507
1549
  def IsChatHidden(self):
1508
- r"""是否隐藏会话
1550
+ r"""<p>是否隐藏会话</p>
1509
1551
  :rtype: bool
1510
1552
  """
1511
1553
  return self._IsChatHidden
@@ -1516,6 +1558,9 @@ class CreateChatCompletionRequest(AbstractModel):
1516
1558
 
1517
1559
 
1518
1560
  def _deserialize(self, params):
1561
+ self._InputContent = params.get("InputContent")
1562
+ self._InstanceId = params.get("InstanceId")
1563
+ self._ChatId = params.get("ChatId")
1519
1564
  self._IsHidden = params.get("IsHidden")
1520
1565
  self._IsChatHidden = params.get("IsChatHidden")
1521
1566
  memeber_set = set(params.keys())
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-tdai
3
- Version: 3.1.93
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.93
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.93