tencentcloud-sdk-python-faceid 3.0.1233__tar.gz → 3.0.1238__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-faceid-3.0.1233 → tencentcloud-sdk-python-faceid-3.0.1238}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-faceid-3.0.1233 → tencentcloud-sdk-python-faceid-3.0.1238}/setup.py +1 -1
- {tencentcloud-sdk-python-faceid-3.0.1233 → tencentcloud-sdk-python-faceid-3.0.1238}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-faceid-3.0.1233 → tencentcloud-sdk-python-faceid-3.0.1238}/tencentcloud/faceid/v20180301/models.py +16 -0
- {tencentcloud-sdk-python-faceid-3.0.1233 → tencentcloud-sdk-python-faceid-3.0.1238}/tencentcloud_sdk_python_faceid.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-faceid-3.0.1238/tencentcloud_sdk_python_faceid.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-faceid-3.0.1233/tencentcloud_sdk_python_faceid.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-faceid-3.0.1233 → tencentcloud-sdk-python-faceid-3.0.1238}/README.rst +0 -0
- {tencentcloud-sdk-python-faceid-3.0.1233 → tencentcloud-sdk-python-faceid-3.0.1238}/setup.cfg +0 -0
- {tencentcloud-sdk-python-faceid-3.0.1233 → tencentcloud-sdk-python-faceid-3.0.1238}/tencentcloud/faceid/__init__.py +0 -0
- {tencentcloud-sdk-python-faceid-3.0.1233 → tencentcloud-sdk-python-faceid-3.0.1238}/tencentcloud/faceid/v20180301/__init__.py +0 -0
- {tencentcloud-sdk-python-faceid-3.0.1233 → tencentcloud-sdk-python-faceid-3.0.1238}/tencentcloud/faceid/v20180301/errorcodes.py +0 -0
- {tencentcloud-sdk-python-faceid-3.0.1233 → tencentcloud-sdk-python-faceid-3.0.1238}/tencentcloud/faceid/v20180301/faceid_client.py +0 -0
- {tencentcloud-sdk-python-faceid-3.0.1233 → tencentcloud-sdk-python-faceid-3.0.1238}/tencentcloud_sdk_python_faceid.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-faceid-3.0.1233 → tencentcloud-sdk-python-faceid-3.0.1238}/tencentcloud_sdk_python_faceid.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-faceid-3.0.1233 → tencentcloud-sdk-python-faceid-3.0.1238}/tencentcloud_sdk_python_faceid.egg-info/top_level.txt +0 -0
{tencentcloud-sdk-python-faceid-3.0.1233 → tencentcloud-sdk-python-faceid-3.0.1238}/setup.py
RENAMED
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-faceid',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1238"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Faceid SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -7924,10 +7924,17 @@ class RuleIdConfig(AbstractModel):
|
|
|
7924
7924
|
:type IntentionType: int
|
|
7925
7925
|
:param _MouthOpenRecognition: 用户语音回答过程中是否开启张嘴识别检测,默认不开启,仅在意愿核身问答模式中使用。
|
|
7926
7926
|
:type MouthOpenRecognition: bool
|
|
7927
|
+
:param _Speed: 意愿核身语音播报速度,配置后问答模式和点头模式的语音播报环节都会生效,默认值为0:
|
|
7928
|
+
0:智能语速(根据播报文案的长度自动调整语音播报速度)
|
|
7929
|
+
1:固定1倍速
|
|
7930
|
+
2:固定1.2倍速
|
|
7931
|
+
3:固定1.5倍速
|
|
7932
|
+
:type Speed: int
|
|
7927
7933
|
"""
|
|
7928
7934
|
self._IntentionRecognition = None
|
|
7929
7935
|
self._IntentionType = None
|
|
7930
7936
|
self._MouthOpenRecognition = None
|
|
7937
|
+
self._Speed = None
|
|
7931
7938
|
|
|
7932
7939
|
@property
|
|
7933
7940
|
def IntentionRecognition(self):
|
|
@@ -7953,11 +7960,20 @@ class RuleIdConfig(AbstractModel):
|
|
|
7953
7960
|
def MouthOpenRecognition(self, MouthOpenRecognition):
|
|
7954
7961
|
self._MouthOpenRecognition = MouthOpenRecognition
|
|
7955
7962
|
|
|
7963
|
+
@property
|
|
7964
|
+
def Speed(self):
|
|
7965
|
+
return self._Speed
|
|
7966
|
+
|
|
7967
|
+
@Speed.setter
|
|
7968
|
+
def Speed(self, Speed):
|
|
7969
|
+
self._Speed = Speed
|
|
7970
|
+
|
|
7956
7971
|
|
|
7957
7972
|
def _deserialize(self, params):
|
|
7958
7973
|
self._IntentionRecognition = params.get("IntentionRecognition")
|
|
7959
7974
|
self._IntentionType = params.get("IntentionType")
|
|
7960
7975
|
self._MouthOpenRecognition = params.get("MouthOpenRecognition")
|
|
7976
|
+
self._Speed = params.get("Speed")
|
|
7961
7977
|
memeber_set = set(params.keys())
|
|
7962
7978
|
for name, value in vars(self).items():
|
|
7963
7979
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1238
|
tencentcloud-sdk-python-faceid-3.0.1233/tencentcloud_sdk_python_faceid.egg-info/requires.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1233
|
{tencentcloud-sdk-python-faceid-3.0.1233 → tencentcloud-sdk-python-faceid-3.0.1238}/README.rst
RENAMED
|
File without changes
|
{tencentcloud-sdk-python-faceid-3.0.1233 → tencentcloud-sdk-python-faceid-3.0.1238}/setup.cfg
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|