tencentcloud-sdk-python-faceid 3.0.1237__tar.gz → 3.0.1244__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.1237 → tencentcloud-sdk-python-faceid-3.0.1244}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-faceid-3.0.1237 → tencentcloud-sdk-python-faceid-3.0.1244}/setup.py +1 -1
- {tencentcloud-sdk-python-faceid-3.0.1237 → tencentcloud-sdk-python-faceid-3.0.1244}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-faceid-3.0.1237 → tencentcloud-sdk-python-faceid-3.0.1244}/tencentcloud/faceid/v20180301/models.py +28 -0
- {tencentcloud-sdk-python-faceid-3.0.1237 → tencentcloud-sdk-python-faceid-3.0.1244}/tencentcloud_sdk_python_faceid.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-faceid-3.0.1244/tencentcloud_sdk_python_faceid.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-faceid-3.0.1237/tencentcloud_sdk_python_faceid.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-faceid-3.0.1237 → tencentcloud-sdk-python-faceid-3.0.1244}/README.rst +0 -0
- {tencentcloud-sdk-python-faceid-3.0.1237 → tencentcloud-sdk-python-faceid-3.0.1244}/setup.cfg +0 -0
- {tencentcloud-sdk-python-faceid-3.0.1237 → tencentcloud-sdk-python-faceid-3.0.1244}/tencentcloud/faceid/__init__.py +0 -0
- {tencentcloud-sdk-python-faceid-3.0.1237 → tencentcloud-sdk-python-faceid-3.0.1244}/tencentcloud/faceid/v20180301/__init__.py +0 -0
- {tencentcloud-sdk-python-faceid-3.0.1237 → tencentcloud-sdk-python-faceid-3.0.1244}/tencentcloud/faceid/v20180301/errorcodes.py +0 -0
- {tencentcloud-sdk-python-faceid-3.0.1237 → tencentcloud-sdk-python-faceid-3.0.1244}/tencentcloud/faceid/v20180301/faceid_client.py +0 -0
- {tencentcloud-sdk-python-faceid-3.0.1237 → tencentcloud-sdk-python-faceid-3.0.1244}/tencentcloud_sdk_python_faceid.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-faceid-3.0.1237 → tencentcloud-sdk-python-faceid-3.0.1244}/tencentcloud_sdk_python_faceid.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-faceid-3.0.1237 → tencentcloud-sdk-python-faceid-3.0.1244}/tencentcloud_sdk_python_faceid.egg-info/top_level.txt +0 -0
{tencentcloud-sdk-python-faceid-3.0.1237 → tencentcloud-sdk-python-faceid-3.0.1244}/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.1244"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Faceid SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -3751,6 +3751,8 @@ class GetEidTokenConfig(AbstractModel):
|
|
|
3751
3751
|
:type IsSupportHMTResidentPermitOCR: bool
|
|
3752
3752
|
:param _MouthOpenRecognition: 用户语音回答过程中是否开启张嘴识别检测,默认不开启,仅在意愿核身问答模式中使用。
|
|
3753
3753
|
:type MouthOpenRecognition: bool
|
|
3754
|
+
:param _Speed: 意愿核身语音播报速度,配置后问答模式和点头模式的语音播报环节都会生效,默认值为0: 0:智能语速(根据播报文案的长度自动调整语音播报速度) 1:固定1倍速 2:固定1.2倍速 3:固定1.5倍速
|
|
3755
|
+
:type Speed: int
|
|
3754
3756
|
"""
|
|
3755
3757
|
self._InputType = None
|
|
3756
3758
|
self._UseIntentionVerify = None
|
|
@@ -3761,6 +3763,7 @@ class GetEidTokenConfig(AbstractModel):
|
|
|
3761
3763
|
self._IntentionRecognition = None
|
|
3762
3764
|
self._IsSupportHMTResidentPermitOCR = None
|
|
3763
3765
|
self._MouthOpenRecognition = None
|
|
3766
|
+
self._Speed = None
|
|
3764
3767
|
|
|
3765
3768
|
@property
|
|
3766
3769
|
def InputType(self):
|
|
@@ -3834,6 +3837,14 @@ class GetEidTokenConfig(AbstractModel):
|
|
|
3834
3837
|
def MouthOpenRecognition(self, MouthOpenRecognition):
|
|
3835
3838
|
self._MouthOpenRecognition = MouthOpenRecognition
|
|
3836
3839
|
|
|
3840
|
+
@property
|
|
3841
|
+
def Speed(self):
|
|
3842
|
+
return self._Speed
|
|
3843
|
+
|
|
3844
|
+
@Speed.setter
|
|
3845
|
+
def Speed(self, Speed):
|
|
3846
|
+
self._Speed = Speed
|
|
3847
|
+
|
|
3837
3848
|
|
|
3838
3849
|
def _deserialize(self, params):
|
|
3839
3850
|
self._InputType = params.get("InputType")
|
|
@@ -3855,6 +3866,7 @@ class GetEidTokenConfig(AbstractModel):
|
|
|
3855
3866
|
self._IntentionRecognition = params.get("IntentionRecognition")
|
|
3856
3867
|
self._IsSupportHMTResidentPermitOCR = params.get("IsSupportHMTResidentPermitOCR")
|
|
3857
3868
|
self._MouthOpenRecognition = params.get("MouthOpenRecognition")
|
|
3869
|
+
self._Speed = params.get("Speed")
|
|
3858
3870
|
memeber_set = set(params.keys())
|
|
3859
3871
|
for name, value in vars(self).items():
|
|
3860
3872
|
property_name = name[1:]
|
|
@@ -7924,10 +7936,17 @@ class RuleIdConfig(AbstractModel):
|
|
|
7924
7936
|
:type IntentionType: int
|
|
7925
7937
|
:param _MouthOpenRecognition: 用户语音回答过程中是否开启张嘴识别检测,默认不开启,仅在意愿核身问答模式中使用。
|
|
7926
7938
|
:type MouthOpenRecognition: bool
|
|
7939
|
+
:param _Speed: 意愿核身语音播报速度,配置后问答模式和点头模式的语音播报环节都会生效,默认值为0:
|
|
7940
|
+
0:智能语速(根据播报文案的长度自动调整语音播报速度)
|
|
7941
|
+
1:固定1倍速
|
|
7942
|
+
2:固定1.2倍速
|
|
7943
|
+
3:固定1.5倍速
|
|
7944
|
+
:type Speed: int
|
|
7927
7945
|
"""
|
|
7928
7946
|
self._IntentionRecognition = None
|
|
7929
7947
|
self._IntentionType = None
|
|
7930
7948
|
self._MouthOpenRecognition = None
|
|
7949
|
+
self._Speed = None
|
|
7931
7950
|
|
|
7932
7951
|
@property
|
|
7933
7952
|
def IntentionRecognition(self):
|
|
@@ -7953,11 +7972,20 @@ class RuleIdConfig(AbstractModel):
|
|
|
7953
7972
|
def MouthOpenRecognition(self, MouthOpenRecognition):
|
|
7954
7973
|
self._MouthOpenRecognition = MouthOpenRecognition
|
|
7955
7974
|
|
|
7975
|
+
@property
|
|
7976
|
+
def Speed(self):
|
|
7977
|
+
return self._Speed
|
|
7978
|
+
|
|
7979
|
+
@Speed.setter
|
|
7980
|
+
def Speed(self, Speed):
|
|
7981
|
+
self._Speed = Speed
|
|
7982
|
+
|
|
7956
7983
|
|
|
7957
7984
|
def _deserialize(self, params):
|
|
7958
7985
|
self._IntentionRecognition = params.get("IntentionRecognition")
|
|
7959
7986
|
self._IntentionType = params.get("IntentionType")
|
|
7960
7987
|
self._MouthOpenRecognition = params.get("MouthOpenRecognition")
|
|
7988
|
+
self._Speed = params.get("Speed")
|
|
7961
7989
|
memeber_set = set(params.keys())
|
|
7962
7990
|
for name, value in vars(self).items():
|
|
7963
7991
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1244
|
tencentcloud-sdk-python-faceid-3.0.1237/tencentcloud_sdk_python_faceid.egg-info/requires.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1237
|
{tencentcloud-sdk-python-faceid-3.0.1237 → tencentcloud-sdk-python-faceid-3.0.1244}/README.rst
RENAMED
|
File without changes
|
{tencentcloud-sdk-python-faceid-3.0.1237 → tencentcloud-sdk-python-faceid-3.0.1244}/setup.cfg
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|