tencentcloud-sdk-python-ccc 3.1.72__tar.gz → 3.1.95__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_ccc-3.1.72 → tencentcloud_sdk_python_ccc-3.1.95}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_ccc-3.1.72 → tencentcloud_sdk_python_ccc-3.1.95}/setup.py +1 -1
- {tencentcloud_sdk_python_ccc-3.1.72 → tencentcloud_sdk_python_ccc-3.1.95}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_ccc-3.1.72 → tencentcloud_sdk_python_ccc-3.1.95}/tencentcloud/ccc/v20200210/ccc_client.py +23 -0
- {tencentcloud_sdk_python_ccc-3.1.72 → tencentcloud_sdk_python_ccc-3.1.95}/tencentcloud/ccc/v20200210/ccc_client_async.py +18 -0
- {tencentcloud_sdk_python_ccc-3.1.72 → tencentcloud_sdk_python_ccc-3.1.95}/tencentcloud/ccc/v20200210/models.py +1446 -88
- {tencentcloud_sdk_python_ccc-3.1.72 → tencentcloud_sdk_python_ccc-3.1.95}/tencentcloud_sdk_python_ccc.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_ccc-3.1.95/tencentcloud_sdk_python_ccc.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_ccc-3.1.72/tencentcloud_sdk_python_ccc.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_ccc-3.1.72 → tencentcloud_sdk_python_ccc-3.1.95}/README.rst +0 -0
- {tencentcloud_sdk_python_ccc-3.1.72 → tencentcloud_sdk_python_ccc-3.1.95}/setup.cfg +0 -0
- {tencentcloud_sdk_python_ccc-3.1.72 → tencentcloud_sdk_python_ccc-3.1.95}/tencentcloud/ccc/__init__.py +0 -0
- {tencentcloud_sdk_python_ccc-3.1.72 → tencentcloud_sdk_python_ccc-3.1.95}/tencentcloud/ccc/v20200210/__init__.py +0 -0
- {tencentcloud_sdk_python_ccc-3.1.72 → tencentcloud_sdk_python_ccc-3.1.95}/tencentcloud/ccc/v20200210/errorcodes.py +0 -0
- {tencentcloud_sdk_python_ccc-3.1.72 → tencentcloud_sdk_python_ccc-3.1.95}/tencentcloud_sdk_python_ccc.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_ccc-3.1.72 → tencentcloud_sdk_python_ccc-3.1.95}/tencentcloud_sdk_python_ccc.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_ccc-3.1.72 → tencentcloud_sdk_python_ccc-3.1.95}/tencentcloud_sdk_python_ccc.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-ccc
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.95
|
|
4
4
|
Summary: Tencent Cloud Ccc 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.95
|
|
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-ccc',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.95,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Ccc SDK for Python',
|
|
@@ -703,6 +703,29 @@ class CccClient(AbstractClient):
|
|
|
703
703
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
704
704
|
|
|
705
705
|
|
|
706
|
+
def DescribeAICallInteractionRecords(self, request):
|
|
707
|
+
r"""获取AI 会话交互事件流
|
|
708
|
+
|
|
709
|
+
:param request: Request instance for DescribeAICallInteractionRecords.
|
|
710
|
+
:type request: :class:`tencentcloud.ccc.v20200210.models.DescribeAICallInteractionRecordsRequest`
|
|
711
|
+
:rtype: :class:`tencentcloud.ccc.v20200210.models.DescribeAICallInteractionRecordsResponse`
|
|
712
|
+
|
|
713
|
+
"""
|
|
714
|
+
try:
|
|
715
|
+
params = request._serialize()
|
|
716
|
+
headers = request.headers
|
|
717
|
+
body = self.call("DescribeAICallInteractionRecords", params, headers=headers)
|
|
718
|
+
response = json.loads(body)
|
|
719
|
+
model = models.DescribeAICallInteractionRecordsResponse()
|
|
720
|
+
model._deserialize(response["Response"])
|
|
721
|
+
return model
|
|
722
|
+
except Exception as e:
|
|
723
|
+
if isinstance(e, TencentCloudSDKException):
|
|
724
|
+
raise
|
|
725
|
+
else:
|
|
726
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
727
|
+
|
|
728
|
+
|
|
706
729
|
def DescribeAILatency(self, request):
|
|
707
730
|
r"""调用该接口,可以通过 Session ID 查询指定会话在特定时间段内,AI服务的处理时延明细与统计数据,时延信息包括:
|
|
708
731
|
- 端到端(ETE)时延:统计从用户语音输入到 AI 返回完整响应的整体耗时。
|
|
@@ -557,6 +557,24 @@ class CccClient(AbstractClient):
|
|
|
557
557
|
|
|
558
558
|
return await self.call_and_deserialize(**kwargs)
|
|
559
559
|
|
|
560
|
+
async def DescribeAICallInteractionRecords(
|
|
561
|
+
self,
|
|
562
|
+
request: models.DescribeAICallInteractionRecordsRequest,
|
|
563
|
+
opts: Dict = None,
|
|
564
|
+
) -> models.DescribeAICallInteractionRecordsResponse:
|
|
565
|
+
"""
|
|
566
|
+
获取AI 会话交互事件流
|
|
567
|
+
"""
|
|
568
|
+
|
|
569
|
+
kwargs = {}
|
|
570
|
+
kwargs["action"] = "DescribeAICallInteractionRecords"
|
|
571
|
+
kwargs["params"] = request._serialize()
|
|
572
|
+
kwargs["resp_cls"] = models.DescribeAICallInteractionRecordsResponse
|
|
573
|
+
kwargs["headers"] = request.headers
|
|
574
|
+
kwargs["opts"] = opts or {}
|
|
575
|
+
|
|
576
|
+
return await self.call_and_deserialize(**kwargs)
|
|
577
|
+
|
|
560
578
|
async def DescribeAILatency(
|
|
561
579
|
self,
|
|
562
580
|
request: models.DescribeAILatencyRequest,
|