tencentcloud-sdk-python-trtc 3.0.1203__tar.gz → 3.0.1207__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.

Potentially problematic release.


This version of tencentcloud-sdk-python-trtc might be problematic. Click here for more details.

Files changed (16) hide show
  1. {tencentcloud-sdk-python-trtc-3.0.1203 → tencentcloud-sdk-python-trtc-3.0.1207}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-trtc-3.0.1203 → tencentcloud-sdk-python-trtc-3.0.1207}/setup.py +1 -1
  3. {tencentcloud-sdk-python-trtc-3.0.1203 → tencentcloud-sdk-python-trtc-3.0.1207}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-trtc-3.0.1203 → tencentcloud-sdk-python-trtc-3.0.1207}/tencentcloud/trtc/v20190722/errorcodes.py +3 -0
  5. {tencentcloud-sdk-python-trtc-3.0.1203 → tencentcloud-sdk-python-trtc-3.0.1207}/tencentcloud/trtc/v20190722/models.py +107 -30
  6. {tencentcloud-sdk-python-trtc-3.0.1203 → tencentcloud-sdk-python-trtc-3.0.1207}/tencentcloud/trtc/v20190722/trtc_client.py +3 -1
  7. {tencentcloud-sdk-python-trtc-3.0.1203 → tencentcloud-sdk-python-trtc-3.0.1207}/tencentcloud_sdk_python_trtc.egg-info/PKG-INFO +1 -1
  8. tencentcloud-sdk-python-trtc-3.0.1207/tencentcloud_sdk_python_trtc.egg-info/requires.txt +1 -0
  9. tencentcloud-sdk-python-trtc-3.0.1203/tencentcloud_sdk_python_trtc.egg-info/requires.txt +0 -1
  10. {tencentcloud-sdk-python-trtc-3.0.1203 → tencentcloud-sdk-python-trtc-3.0.1207}/README.rst +0 -0
  11. {tencentcloud-sdk-python-trtc-3.0.1203 → tencentcloud-sdk-python-trtc-3.0.1207}/setup.cfg +0 -0
  12. {tencentcloud-sdk-python-trtc-3.0.1203 → tencentcloud-sdk-python-trtc-3.0.1207}/tencentcloud/trtc/__init__.py +0 -0
  13. {tencentcloud-sdk-python-trtc-3.0.1203 → tencentcloud-sdk-python-trtc-3.0.1207}/tencentcloud/trtc/v20190722/__init__.py +0 -0
  14. {tencentcloud-sdk-python-trtc-3.0.1203 → tencentcloud-sdk-python-trtc-3.0.1207}/tencentcloud_sdk_python_trtc.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-trtc-3.0.1203 → tencentcloud-sdk-python-trtc-3.0.1207}/tencentcloud_sdk_python_trtc.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-trtc-3.0.1203 → tencentcloud-sdk-python-trtc-3.0.1207}/tencentcloud_sdk_python_trtc.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-trtc
3
- Version: 3.0.1203
3
+ Version: 3.0.1207
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
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
8
8
 
9
9
  setup(
10
10
  name='tencentcloud-sdk-python-trtc',
11
- install_requires=["tencentcloud-sdk-python-common==3.0.1203"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1207"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Trtc SDK for Python',
14
14
  long_description=open('README.rst').read(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1203'
17
+ __version__ = '3.0.1207'
@@ -206,6 +206,9 @@ INVALIDPARAMETER_STRROOMID = 'InvalidParameter.StrRoomId'
206
206
  # StreamId参数错误。
207
207
  INVALIDPARAMETER_STREAMID = 'InvalidParameter.StreamId'
208
208
 
209
+ # StreamUrl参数校验失败
210
+ INVALIDPARAMETER_STREAMURL = 'InvalidParameter.StreamUrl'
211
+
209
212
  # TaskId 参数错误。
210
213
  INVALIDPARAMETER_TASKID = 'InvalidParameter.TaskId'
211
214
 
@@ -166,14 +166,18 @@ class AgentConfig(AbstractModel):
166
166
  :param _TargetUserId: 机器人拉流的UserId, 填写后,机器人会拉取该UserId的流进行实时处理
167
167
  注意:此字段可能返回 null,表示取不到有效值。
168
168
  :type TargetUserId: str
169
- :param _MaxIdleTime: 房间内推流用户全部退出后超过MaxIdleTime秒,后台自动关闭任务,默认值是60s。
169
+ :param _MaxIdleTime: 房间内超过MaxIdleTime 没有推流,后台自动关闭任务,默认值是60s。
170
170
  注意:此字段可能返回 null,表示取不到有效值。
171
171
  :type MaxIdleTime: int
172
+ :param _WelcomeMessage: 机器人的欢迎语
173
+ 注意:此字段可能返回 null,表示取不到有效值。
174
+ :type WelcomeMessage: str
172
175
  """
173
176
  self._UserId = None
174
177
  self._UserSig = None
175
178
  self._TargetUserId = None
176
179
  self._MaxIdleTime = None
180
+ self._WelcomeMessage = None
177
181
 
178
182
  @property
179
183
  def UserId(self):
@@ -207,12 +211,21 @@ class AgentConfig(AbstractModel):
207
211
  def MaxIdleTime(self, MaxIdleTime):
208
212
  self._MaxIdleTime = MaxIdleTime
209
213
 
214
+ @property
215
+ def WelcomeMessage(self):
216
+ return self._WelcomeMessage
217
+
218
+ @WelcomeMessage.setter
219
+ def WelcomeMessage(self, WelcomeMessage):
220
+ self._WelcomeMessage = WelcomeMessage
221
+
210
222
 
211
223
  def _deserialize(self, params):
212
224
  self._UserId = params.get("UserId")
213
225
  self._UserSig = params.get("UserSig")
214
226
  self._TargetUserId = params.get("TargetUserId")
215
227
  self._MaxIdleTime = params.get("MaxIdleTime")
228
+ self._WelcomeMessage = params.get("WelcomeMessage")
216
229
  memeber_set = set(params.keys())
217
230
  for name, value in vars(self).items():
218
231
  property_name = name[1:]
@@ -717,6 +730,8 @@ class CreateCloudRecordingRequest(AbstractModel):
717
730
  :param _SdkAppId: TRTC的[SdkAppId](https://cloud.tencent.com/document/product/647/46351#sdkappid),和录制的房间所对应的SdkAppId相同。
718
731
  :type SdkAppId: int
719
732
  :param _RoomId: TRTC的[RoomId](https://cloud.tencent.com/document/product/647/46351#roomid),录制的TRTC房间所对应的RoomId。
733
+ 注:房间号类型默认为整型,若房间号类型为字符串,请通过RoomIdType指定。
734
+
720
735
  :type RoomId: str
721
736
  :param _UserId: 录制机器人的UserId,用于进房发起录制任务。
722
737
  【*注意】这个UserId不能与当前房间内的主播观众[UserId](https://cloud.tencent.com/document/product/647/46351#userid)重复。如果一个房间发起多个录制任务时,机器人的userid也不能相互重复,否则会中断前一个录制任务。建议可以把房间ID作为UserId的标识的一部分,即录制机器人UserId在房间内唯一。
@@ -1271,7 +1286,7 @@ class DescribeAIConversationResponse(AbstractModel):
1271
1286
  :type StartTime: str
1272
1287
  :param _Status: 任务状态。有4个值:1、Idle表示任务未开始2、Preparing表示任务准备中3、InProgress表示任务正在运行4、Stopped表示任务已停止,正在清理资源中
1273
1288
  :type Status: str
1274
- :param _TaskId: 唯一标识一次任务。
1289
+ :param _TaskId: 任务的唯一标识,在启动任务时生成
1275
1290
  :type TaskId: str
1276
1291
  :param _SessionId: 开启对话任务时填写的SessionId,如果没写则不返回。
1277
1292
  :type SessionId: str
@@ -7551,39 +7566,48 @@ class RecognizeConfig(AbstractModel):
7551
7566
 
7552
7567
  def __init__(self):
7553
7568
  r"""
7554
- :param _Language: 语音识别支持的语言,默认是"zh"。目前全量支持的语言如下,等号左面是语言英文名,右面是Language字段需要填写的值,该值遵循[ISO639](https://en.wikipedia.org/wiki/List_of_ISO_639_language_codes):
7555
- 中文 Chinese = "zh"
7556
- 中文繁体 Chinese_TW = "zh-TW"
7557
- 中文方言 Chinese_DIALECT = "zh-dialect"
7558
- English = "en"
7559
- Vietnamese = "vi"
7560
- Japanese = "ja"
7561
- Korean = "ko"
7562
- Indonesia = "id"
7563
- Thai = "th"
7564
- Portuguese = "pt"
7565
- Turkish = "tr"
7566
- Arabic = "ar"
7567
- Spanish = "es"
7568
- Hindi = "hi"
7569
- French = "fr"
7570
- Malay = "ms"
7571
- Filipino = "fil"
7572
- German = "de"
7573
- Italian = "it"
7574
- Russian = "ru"
7569
+ :param _Language: 语音转文字支持识别的语言,默认是"zh" 中文
7570
+ 目前全量支持的语言如下,等号左面是语言英文名,右面是Language字段需要填写的值,该值遵循[ISO639](https://en.wikipedia.org/wiki/List_of_ISO_639_language_codes):
7571
+ 可通过购买「语音转文本时长包」解锁或领取包月套餐体验版解锁此功能。
7572
+
7573
+ 语音转文本支持语言类型如下:
7574
+ - Chinese = "zh" # 中文
7575
+ - Chinese_TW = "zh-TW" # 中国台湾
7576
+ - English = "en" # 英语
7577
+ - Chinese_YUE = "zh-yue" # 中国粤语
7578
+ - Chinese_DIALECT = "zh-dialect" # 中国方言
7579
+ - English = "en" # 英语
7580
+ - Vietnamese = "vi" # 越南语
7581
+ - Japanese = "ja" # 日语
7582
+ - Korean = "ko" # 汉语
7583
+ - Indonesia = "id" # 印度尼西亚语
7584
+ - Thai = "th" # 泰语
7585
+ - Portuguese = "pt" # 葡萄牙语
7586
+ - Turkish = "tr" # 土耳其语
7587
+ - Arabic = "ar" # 阿拉伯语
7588
+ - Spanish = "es" # 西班牙语
7589
+ - Hindi = "hi" # 印地语
7590
+ - French = "fr" # 法语
7591
+ - Malay = "ms" # 马来语
7592
+ - Filipino = "fil" # 菲律宾语
7593
+ - German = "de" # 德语
7594
+ - Italian = "it" # 意大利语
7595
+ - Russian = "ru" # 俄语
7575
7596
 
7576
7597
  注意:
7577
7598
  如果缺少满足您需求的语言,请联系我们技术人员。
7599
+ 示例值:zh
7578
7600
  :type Language: str
7579
- :param _AlternativeLanguage: 额外的可能替代语言,最多3个,仅高级版支持。Language指定中文方言时,不能设置该字段。
7601
+ :param _AlternativeLanguage: 发起模糊识别额外可能替代语言类型,最多填写3种语言类型。
7602
+ 注:Language指定为"zh-dialect" # 中国方言 时,不支持模糊识别,该字段无效
7580
7603
  :type AlternativeLanguage: list of str
7581
7604
  :param _Model: 使用的模型,目前支持tencent和google,默认是tencent。
7582
7605
  :type Model: str
7583
7606
  :param _TranslationLanguage: 翻译功能支持的语言,如果填写,则会启用翻译,不填则只会使用语音识别。
7607
+ 注:文本翻译功能需要购买「语音转文本时长包」解锁或领取包月套餐-体验版解。
7584
7608
  目前全量支持的语言如下,等号左面是语言英文名,右面是Language字段需要填写的值,该值遵循[ISO639](https://en.wikipedia.org/wiki/List_of_ISO_639_language_codes):
7585
7609
  Chinese = "zh"
7586
- Chinese_TW = "zh-TW"
7610
+ Chinese_TW = "zh-TW"
7587
7611
  English = "en"
7588
7612
  Vietnamese = "vi"
7589
7613
  Japanese = "ja"
@@ -7604,6 +7628,7 @@ Russian = "ru"
7604
7628
 
7605
7629
  注意:
7606
7630
  如果缺少满足您需求的语言,请联系我们技术人员。
7631
+ 示例值:en
7607
7632
  :type TranslationLanguage: str
7608
7633
  """
7609
7634
  self._Language = None
@@ -8208,7 +8233,8 @@ class STTConfig(AbstractModel):
8208
8233
  如果缺少满足您需求的语言,请联系我们技术人员。
8209
8234
  注意:此字段可能返回 null,表示取不到有效值。
8210
8235
  :type Language: str
8211
- :param _AlternativeLanguage: 额外识别可能替代语言,最多3个, 需高级版支持,Language指定方言时,不允许设置该字段
8236
+ :param _AlternativeLanguage: 发起模糊识别额外可能替代语言类型,最多填写3种语言类型,
8237
+ 注:Language指定为"zh-dialect" # 中国方言 时,不支持模糊识别,该字段无效
8212
8238
 
8213
8239
  注意:此字段可能返回 null,表示取不到有效值。
8214
8240
  :type AlternativeLanguage: list of str
@@ -8572,9 +8598,12 @@ class ServerPushText(AbstractModel):
8572
8598
  :type Text: str
8573
8599
  :param _Interrupt: 是否允许该文本打断机器人说话
8574
8600
  :type Interrupt: bool
8601
+ :param _StopAfterPlay: 播报完文本后,是否自动关闭对话任务
8602
+ :type StopAfterPlay: bool
8575
8603
  """
8576
8604
  self._Text = None
8577
8605
  self._Interrupt = None
8606
+ self._StopAfterPlay = None
8578
8607
 
8579
8608
  @property
8580
8609
  def Text(self):
@@ -8592,10 +8621,19 @@ class ServerPushText(AbstractModel):
8592
8621
  def Interrupt(self, Interrupt):
8593
8622
  self._Interrupt = Interrupt
8594
8623
 
8624
+ @property
8625
+ def StopAfterPlay(self):
8626
+ return self._StopAfterPlay
8627
+
8628
+ @StopAfterPlay.setter
8629
+ def StopAfterPlay(self, StopAfterPlay):
8630
+ self._StopAfterPlay = StopAfterPlay
8631
+
8595
8632
 
8596
8633
  def _deserialize(self, params):
8597
8634
  self._Text = params.get("Text")
8598
8635
  self._Interrupt = params.get("Interrupt")
8636
+ self._StopAfterPlay = params.get("StopAfterPlay")
8599
8637
  memeber_set = set(params.keys())
8600
8638
  for name, value in vars(self).items():
8601
8639
  property_name = name[1:]
@@ -8747,18 +8785,18 @@ class StartAIConversationRequest(AbstractModel):
8747
8785
  :type RoomId: str
8748
8786
  :param _AgentConfig: 机器人参数
8749
8787
  :type AgentConfig: :class:`tencentcloud.trtc.v20190722.models.AgentConfig`
8750
- :param _SessionId: 调用方传入的唯一Id,服务端用来去重。
8788
+ :param _SessionId: 调用方传入的唯一Id,可用于客户侧防止重复发起任务以及可以通过该字段查询任务状态。
8751
8789
  :type SessionId: str
8752
8790
  :param _RoomIdType: TRTC房间号的类型,0代表数字房间号,1代表字符串房间号。不填默认是数字房间号。
8753
8791
  :type RoomIdType: int
8754
8792
  :param _STTConfig: 语音识别配置。
8755
8793
  :type STTConfig: :class:`tencentcloud.trtc.v20190722.models.STTConfig`
8756
8794
  :param _LLMConfig: LLM配置。需符合openai规范,为JSON字符串,示例如下:
8757
- <pre> { <br> &emsp; "LLMType": “大模型类型", // String 必填,目前固定为"openai" <br> &emsp; "Model": "您的模型名称", // String 必填,指定使用的模型<br> "APIKey": "您的OpenAI API密钥", // String 必填,相当于环境变量中的OPENAI_API_KEY<br> &emsp; "APIBaseUrl": "https://api.openai.com", // String 必填,OpenAI API的基础URL<br> &emsp; "Streaming": true // Boolean 非必填,指定是否使用流式传输<br> &emsp;} </pre>
8795
+ <pre> { <br> &emsp; "LLMType": “大模型类型", // String 必填,如:"openai" <br> &emsp; "Model": "您的模型名称", // String 必填,指定使用的模型<br> "APIKey": "您的LLM API密钥", // String 必填 <br> &emsp; "APIUrl": "https://api.xxx.com/chat/completions", // String 必填,LLM API访问的URL<br> &emsp; "Streaming": true // Boolean 非必填,指定是否使用流式传输<br> &emsp;} </pre>
8758
8796
 
8759
8797
  :type LLMConfig: str
8760
- :param _TTSConfig: TTS配置。目前支持腾讯云TTS, 为JSON字符串,示例如下:
8761
- <pre>{ <br> &emsp; "AppId": "您的应用ID", // String 必填<br> &emsp; "TTSType": "TTS类型", // String TTS类型, 固定为"tencent"<br> &emsp; "SercetId": "您的密钥ID", // String 必填<br> &emsp; "SercetKey": "您的密钥Key", // String 必填<br> &emsp; "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> &emsp; "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> &emsp; "Volume": 5, // Integer 非必填,音量大小,范围:[0,10],分别对应11个等级的音量,默认值为0,代表正常音量。<br> &emsp; "PrimaryLanguage": "zh-CN" // String 非必填,主要语言<br> &emsp;}</pre>
8798
+ :param _TTSConfig: TTS配置,为JSON字符串,腾讯云TTS示例如下:
8799
+ <pre>{ <br> &emsp; "AppId": 您的应用ID, // Integer 必填<br> &emsp; "TTSType": "TTS类型", // String TTS类型, 固定为"tencent"<br> &emsp; "SecretId": "您的密钥ID", // String 必填<br> &emsp; "SecretKey": "您的密钥Key", // String 必填<br> &emsp; "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> &emsp; "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> &emsp; "Volume": 5, // Integer 非必填,音量大小,范围:[0,10],分别对应11个等级的音量,默认值为0,代表正常音量。<br> &emsp; "PrimaryLanguage": "zh-CN" // String 非必填,主要语言<br> &emsp;}</pre>
8762
8800
  :type TTSConfig: str
8763
8801
  """
8764
8802
  self._SdkAppId = None
@@ -9528,6 +9566,15 @@ class StartStreamIngestRequest(AbstractModel):
9528
9566
  :type SourceUrl: list of str
9529
9567
  :param _SeekSecond: 指定视频从某个秒时间戳播放
9530
9568
  :type SeekSecond: int
9569
+ :param _AutoPush: 开启自动旁路推流,请确认控制台已经开启该功能。
9570
+ :type AutoPush: bool
9571
+ :param _RepeatNum: 循环播放次数, 取值范围[-1, 1000], 默认1次。
9572
+ - 0 无效值
9573
+ - -1 循环播放, 需要主动调用停止接口或设置MaxDuration
9574
+
9575
+ :type RepeatNum: int
9576
+ :param _MaxDuration: 循环播放最大时长,仅支持RepeatNum设置-1时生效,取值范围[1, 10080],单位分钟。
9577
+ :type MaxDuration: int
9531
9578
  """
9532
9579
  self._SdkAppId = None
9533
9580
  self._RoomId = None
@@ -9540,6 +9587,9 @@ class StartStreamIngestRequest(AbstractModel):
9540
9587
  self._AudioEncodeParams = None
9541
9588
  self._SourceUrl = None
9542
9589
  self._SeekSecond = None
9590
+ self._AutoPush = None
9591
+ self._RepeatNum = None
9592
+ self._MaxDuration = None
9543
9593
 
9544
9594
  @property
9545
9595
  def SdkAppId(self):
@@ -9641,6 +9691,30 @@ class StartStreamIngestRequest(AbstractModel):
9641
9691
  def SeekSecond(self, SeekSecond):
9642
9692
  self._SeekSecond = SeekSecond
9643
9693
 
9694
+ @property
9695
+ def AutoPush(self):
9696
+ return self._AutoPush
9697
+
9698
+ @AutoPush.setter
9699
+ def AutoPush(self, AutoPush):
9700
+ self._AutoPush = AutoPush
9701
+
9702
+ @property
9703
+ def RepeatNum(self):
9704
+ return self._RepeatNum
9705
+
9706
+ @RepeatNum.setter
9707
+ def RepeatNum(self, RepeatNum):
9708
+ self._RepeatNum = RepeatNum
9709
+
9710
+ @property
9711
+ def MaxDuration(self):
9712
+ return self._MaxDuration
9713
+
9714
+ @MaxDuration.setter
9715
+ def MaxDuration(self, MaxDuration):
9716
+ self._MaxDuration = MaxDuration
9717
+
9644
9718
 
9645
9719
  def _deserialize(self, params):
9646
9720
  self._SdkAppId = params.get("SdkAppId")
@@ -9658,6 +9732,9 @@ class StartStreamIngestRequest(AbstractModel):
9658
9732
  self._AudioEncodeParams._deserialize(params.get("AudioEncodeParams"))
9659
9733
  self._SourceUrl = params.get("SourceUrl")
9660
9734
  self._SeekSecond = params.get("SeekSecond")
9735
+ self._AutoPush = params.get("AutoPush")
9736
+ self._RepeatNum = params.get("RepeatNum")
9737
+ self._MaxDuration = params.get("MaxDuration")
9661
9738
  memeber_set = set(params.keys())
9662
9739
  for name, value in vars(self).items():
9663
9740
  property_name = name[1:]
@@ -1015,7 +1015,9 @@ class TrtcClient(AbstractClient):
1015
1015
 
1016
1016
 
1017
1017
  def StartAIConversation(self, request):
1018
- """启动一个任务,机器人将进入TRTC房间,与指定成员进行AI对话
1018
+ """启动AI对话任务,AI通道机器人进入TRTC房间,与房间内指定的成员进行AI对话,适用于智能客服,AI口语教师等场景
1019
+
1020
+ TRTC AI对话功能内置语音转文本能力,同时提供通道服务,即客户可灵活指定第三方AI模型(LLM)服务和文本转音频(TTS)服务,更多[功能说明](https://cloud.tencent.com/document/product/647/108901)。
1019
1021
 
1020
1022
  :param request: Request instance for StartAIConversation.
1021
1023
  :type request: :class:`tencentcloud.trtc.v20190722.models.StartAIConversationRequest`
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-trtc
3
- Version: 3.0.1203
3
+ Version: 3.0.1207
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
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common==3.0.1207
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1203