tencentcloud-sdk-python-trtc 3.0.1302__py2.py3-none-any.whl → 3.0.1305__py2.py3-none-any.whl
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.
Potentially problematic release.
This version of tencentcloud-sdk-python-trtc might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/trtc/v20190722/models.py +15 -0
- {tencentcloud_sdk_python_trtc-3.0.1302.dist-info → tencentcloud_sdk_python_trtc-3.0.1305.dist-info}/METADATA +2 -2
- tencentcloud_sdk_python_trtc-3.0.1305.dist-info/RECORD +10 -0
- tencentcloud_sdk_python_trtc-3.0.1302.dist-info/RECORD +0 -10
- {tencentcloud_sdk_python_trtc-3.0.1302.dist-info → tencentcloud_sdk_python_trtc-3.0.1305.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_trtc-3.0.1302.dist-info → tencentcloud_sdk_python_trtc-3.0.1305.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -10753,11 +10753,14 @@ class STTConfig(AbstractModel):
|
|
|
10753
10753
|
:type CustomParam: str
|
|
10754
10754
|
:param _VadSilenceTime: 语音识别vad的时间,范围为240-2000,默认为1000,单位为ms。更小的值会让语音识别分句更快。
|
|
10755
10755
|
:type VadSilenceTime: int
|
|
10756
|
+
:param _HotWordList: 热词表:该参数用于提升识别准确率。 单个热词限制:"热词|权重",单个热词不超过30个字符(最多10个汉字),权重[1-11]或者100,如:“腾讯云|5” 或 “ASR|11”; 热词表限制:多个热词用英文逗号分割,最多支持128个热词,如:“腾讯云|10,语音识别|5,ASR|11”;
|
|
10757
|
+
:type HotWordList: str
|
|
10756
10758
|
"""
|
|
10757
10759
|
self._Language = None
|
|
10758
10760
|
self._AlternativeLanguage = None
|
|
10759
10761
|
self._CustomParam = None
|
|
10760
10762
|
self._VadSilenceTime = None
|
|
10763
|
+
self._HotWordList = None
|
|
10761
10764
|
|
|
10762
10765
|
@property
|
|
10763
10766
|
def Language(self):
|
|
@@ -10833,12 +10836,24 @@ class STTConfig(AbstractModel):
|
|
|
10833
10836
|
def VadSilenceTime(self, VadSilenceTime):
|
|
10834
10837
|
self._VadSilenceTime = VadSilenceTime
|
|
10835
10838
|
|
|
10839
|
+
@property
|
|
10840
|
+
def HotWordList(self):
|
|
10841
|
+
"""热词表:该参数用于提升识别准确率。 单个热词限制:"热词|权重",单个热词不超过30个字符(最多10个汉字),权重[1-11]或者100,如:“腾讯云|5” 或 “ASR|11”; 热词表限制:多个热词用英文逗号分割,最多支持128个热词,如:“腾讯云|10,语音识别|5,ASR|11”;
|
|
10842
|
+
:rtype: str
|
|
10843
|
+
"""
|
|
10844
|
+
return self._HotWordList
|
|
10845
|
+
|
|
10846
|
+
@HotWordList.setter
|
|
10847
|
+
def HotWordList(self, HotWordList):
|
|
10848
|
+
self._HotWordList = HotWordList
|
|
10849
|
+
|
|
10836
10850
|
|
|
10837
10851
|
def _deserialize(self, params):
|
|
10838
10852
|
self._Language = params.get("Language")
|
|
10839
10853
|
self._AlternativeLanguage = params.get("AlternativeLanguage")
|
|
10840
10854
|
self._CustomParam = params.get("CustomParam")
|
|
10841
10855
|
self._VadSilenceTime = params.get("VadSilenceTime")
|
|
10856
|
+
self._HotWordList = params.get("HotWordList")
|
|
10842
10857
|
memeber_set = set(params.keys())
|
|
10843
10858
|
for name, value in vars(self).items():
|
|
10844
10859
|
property_name = name[1:]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-trtc
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.1305
|
|
4
4
|
Summary: Tencent Cloud Trtc 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 (==3.0.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common (==3.0.1305)
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
tencentcloud/__init__.py,sha256=TI5FnYNRxtRyqeeBGwh0ZzoXK-Wf-813BY4Yew65wb4,631
|
|
2
|
+
tencentcloud/trtc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
+
tencentcloud/trtc/v20190722/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
+
tencentcloud/trtc/v20190722/errorcodes.py,sha256=xHA8fGLzwp1OSMztNVB4c08EyyYW8WaOn3et3qE_m7I,11586
|
|
5
|
+
tencentcloud/trtc/v20190722/models.py,sha256=_4dGxUMphB8nIFFYBY59z3MWoeYlMuQ5MnvLaC99fY8,559514
|
|
6
|
+
tencentcloud/trtc/v20190722/trtc_client.py,sha256=oaomKfzcpEGOJYalgpYuTdCr7K0ugW3CV9jk-3t3Dn4,79095
|
|
7
|
+
tencentcloud_sdk_python_trtc-3.0.1305.dist-info/METADATA,sha256=i57NE_-027ygqjVB64EFaMZnCMDBIpIfejsfANerNjg,1501
|
|
8
|
+
tencentcloud_sdk_python_trtc-3.0.1305.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
9
|
+
tencentcloud_sdk_python_trtc-3.0.1305.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
10
|
+
tencentcloud_sdk_python_trtc-3.0.1305.dist-info/RECORD,,
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=PVkjQ4ZfvB-6-FrnVJnpT_wvAcNbwN1sAxPhWpTrOew,631
|
|
2
|
-
tencentcloud/trtc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
-
tencentcloud/trtc/v20190722/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
-
tencentcloud/trtc/v20190722/errorcodes.py,sha256=xHA8fGLzwp1OSMztNVB4c08EyyYW8WaOn3et3qE_m7I,11586
|
|
5
|
-
tencentcloud/trtc/v20190722/models.py,sha256=K2RUURuCkoYiI6t6xyReDPeBOHrG4V1R7aNxgE_hZWQ,558448
|
|
6
|
-
tencentcloud/trtc/v20190722/trtc_client.py,sha256=oaomKfzcpEGOJYalgpYuTdCr7K0ugW3CV9jk-3t3Dn4,79095
|
|
7
|
-
tencentcloud_sdk_python_trtc-3.0.1302.dist-info/METADATA,sha256=Leyl402m0T_PTjG0wxpicvifjeplPa-UGQCWmsEc1KQ,1501
|
|
8
|
-
tencentcloud_sdk_python_trtc-3.0.1302.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
9
|
-
tencentcloud_sdk_python_trtc-3.0.1302.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
10
|
-
tencentcloud_sdk_python_trtc-3.0.1302.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|