tencentcloud-sdk-python-trtc 3.0.1368__py2.py3-none-any.whl → 3.0.1369__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 +2 -2
- {tencentcloud_sdk_python_trtc-3.0.1368.dist-info → tencentcloud_sdk_python_trtc-3.0.1369.dist-info}/METADATA +2 -2
- tencentcloud_sdk_python_trtc-3.0.1369.dist-info/RECORD +10 -0
- tencentcloud_sdk_python_trtc-3.0.1368.dist-info/RECORD +0 -10
- {tencentcloud_sdk_python_trtc-3.0.1368.dist-info → tencentcloud_sdk_python_trtc-3.0.1369.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_trtc-3.0.1368.dist-info → tencentcloud_sdk_python_trtc-3.0.1369.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -11606,7 +11606,7 @@ class StartAIConversationRequest(AbstractModel):
|
|
|
11606
11606
|
:param _STTConfig: 语音识别配置。
|
|
11607
11607
|
:type STTConfig: :class:`tencentcloud.trtc.v20190722.models.STTConfig`
|
|
11608
11608
|
:param _LLMConfig: LLM配置。需符合openai规范,为JSON字符串,示例如下:
|
|
11609
|
-
<pre> { <br>   "LLMType":
|
|
11609
|
+
<pre> { <br>   "LLMType": "大模型类型", // String 必填,如:"openai" <br>   "Model": "您的模型名称", // String 必填,指定使用的模型<br> "APIKey": "您的LLM API密钥", // String 必填 <br>   "APIUrl": "https://api.xxx.com/chat/completions", // String 必填,LLM API访问的URL<br>   "Streaming": true // Boolean 非必填,指定是否使用流式传输<br>  } </pre>
|
|
11610
11610
|
|
|
11611
11611
|
:type LLMConfig: str
|
|
11612
11612
|
:param _TTSConfig: TTS配置,为JSON字符串,腾讯云TTS示例如下: <pre>{ <br>   "AppId": 您的应用ID, // Integer 必填<br>   "TTSType": "TTS类型", // String TTS类型, 固定为"tencent"<br>   "SecretId": "您的密钥ID", // String 必填<br>   "SecretKey": "您的密钥Key", // String 必填<br>   "VoiceType": 101001, // Integer 必填,音色 ID,包括标准音色与精品音色,精品音色拟真度更高,价格不同于标准音色,请参见<a href="https://cloud.tencent.com/document/product/1073/34112">语音合成计费概述</a>。完整的音色 ID 列表请参见<a href="https://cloud.tencent.com/document/product/1073/92668#55924b56-1a73-4663-a7a1-a8dd82d6e823">语音合成音色列表</a>。<br>   "Speed": 1.25, // Integer 非必填,语速,范围:[-2,6],分别对应不同语速: -2: 代表0.6倍 -1: 代表0.8倍 0: 代表1.0倍(默认) 1: 代表1.2倍 2: 代表1.5倍 6: 代表2.5倍 如果需要更细化的语速,可以保留小数点后 2 位,例如0.5/1.25/2.81等。 参数值与实际语速转换,可参考 <a href="https://sdk-1300466766.cos.ap-shanghai.myqcloud.com/sample/speed_sample.tar.gz">语速转换</a><br>   "Volume": 5, // Integer 非必填,音量大小,范围:[0,10],分别对应11个等级的音量,默认值为0,代表正常音量。<br>   "EmotionCategory": "angry", // String 非必填 控制合成音频的情感,仅支持多情感音色使用。取值: neutral(中性)、sad(悲伤)、happy(高兴)、angry(生气)、fear(恐惧)、news(新闻)、story(故事)、radio(广播)、poetry(诗歌)、call(客服)、sajiao(撒娇)、disgusted(厌恶)、amaze(震惊)、peaceful(平静)、exciting(兴奋)、aojiao(傲娇)、jieshuo(解说)。<br>   "EmotionIntensity": 150 // Integer 非必填 控制合成音频情感程度,取值范围为 [50,200],默认为 100;只有 EmotionCategory 不为空时生效。<br>   }</pre>
|
|
@@ -11696,7 +11696,7 @@ class StartAIConversationRequest(AbstractModel):
|
|
|
11696
11696
|
@property
|
|
11697
11697
|
def LLMConfig(self):
|
|
11698
11698
|
"""LLM配置。需符合openai规范,为JSON字符串,示例如下:
|
|
11699
|
-
<pre> { <br>   "LLMType":
|
|
11699
|
+
<pre> { <br>   "LLMType": "大模型类型", // String 必填,如:"openai" <br>   "Model": "您的模型名称", // String 必填,指定使用的模型<br> "APIKey": "您的LLM API密钥", // String 必填 <br>   "APIUrl": "https://api.xxx.com/chat/completions", // String 必填,LLM API访问的URL<br>   "Streaming": true // Boolean 非必填,指定是否使用流式传输<br>  } </pre>
|
|
11700
11700
|
|
|
11701
11701
|
:rtype: str
|
|
11702
11702
|
"""
|
|
@@ -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.1369
|
|
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.1369)
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
tencentcloud/__init__.py,sha256=pu4AjX8wOfEMh44AKSOxvUhQ2nnvdy667x1mIsYoxGU,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=d7SyQoJ9seqSVqwhzNHf5wxw5mgArg05uFHZf4pLMlM,567948
|
|
6
|
+
tencentcloud/trtc/v20190722/trtc_client.py,sha256=G592wfKp9NGEiju_hkgsbFBnFaE3pKw45WS9D0G2WWk,79427
|
|
7
|
+
tencentcloud_sdk_python_trtc-3.0.1369.dist-info/METADATA,sha256=ar__IOB7XnOug0yGmO1PxuzhR6B9SDrAR3_c4i7BsoE,1501
|
|
8
|
+
tencentcloud_sdk_python_trtc-3.0.1369.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
9
|
+
tencentcloud_sdk_python_trtc-3.0.1369.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
10
|
+
tencentcloud_sdk_python_trtc-3.0.1369.dist-info/RECORD,,
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=9AnCQEpeaSLMM-YJCkGwPqEt_3wNsUS73UySmvxjT3w,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=j6nosjZgwWuX0AXBZ6iJfTd25xZ6MMK4gpWU-vX5wus,567956
|
|
6
|
-
tencentcloud/trtc/v20190722/trtc_client.py,sha256=G592wfKp9NGEiju_hkgsbFBnFaE3pKw45WS9D0G2WWk,79427
|
|
7
|
-
tencentcloud_sdk_python_trtc-3.0.1368.dist-info/METADATA,sha256=A2wizPIxQV4iHGbMAwTEzEcbEySqb7uOrD9imIcIHO0,1501
|
|
8
|
-
tencentcloud_sdk_python_trtc-3.0.1368.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
9
|
-
tencentcloud_sdk_python_trtc-3.0.1368.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
10
|
-
tencentcloud_sdk_python_trtc-3.0.1368.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|