tencentcloud-sdk-trtc 3.0.1108 → 3.0.1122

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 921ec4a763b7de32b72a0a46f3b8b80fe8ccaeb0
4
- data.tar.gz: 9740e13b02e55f3b1e35b059cdb8a44aa850b293
3
+ metadata.gz: f3eae43465cd8a58ce19c00a84cd4175330a5994
4
+ data.tar.gz: 301fcff735cd7351f6295ddcd93ed58a58d160e1
5
5
  SHA512:
6
- metadata.gz: c64f51220218e38294b497444224c2fca40a050698e19c6df1a02d565829c4efc450aadfdcd7e79f0afdd9aba0100988a961d8c21817efa4e8e64a702bd767de
7
- data.tar.gz: 4f2dac18d9f77e7fefc44fbb74e7101e8a5a75492db0c78a9e6d14bfaad3b7577521719b2f828e92df7fb81fb5e86348f364f876b5bd2f0e2fb83db4e717be3f
6
+ metadata.gz: bec2a1d22109fee883f41d1ec39fb7464c0f4282992e2594b106cec8fd35ad882a30adb54304fd196b3c38d23d4b61b2ff78e8e47aee72d4e6300803291c7c43
7
+ data.tar.gz: a10b55244b88832a7605c59cc69d733cfe5e85480ebaf28fcedd81f2a47a4556717b6a13eca19536e390d8e619d35c9600ffb71eb337890072a4a02767b46fa0
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1108
1
+ 3.0.1122
@@ -1774,6 +1774,54 @@ module TencentCloud
1774
1774
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1775
1775
  end
1776
1776
 
1777
+ # 语音合成接口
1778
+
1779
+ # @param request: Request instance for TextToSpeech.
1780
+ # @type request: :class:`Tencentcloud::trtc::V20190722::TextToSpeechRequest`
1781
+ # @rtype: :class:`Tencentcloud::trtc::V20190722::TextToSpeechResponse`
1782
+ def TextToSpeech(request)
1783
+ body = send_request('TextToSpeech', request.serialize)
1784
+ response = JSON.parse(body)
1785
+ if response['Response'].key?('Error') == false
1786
+ model = TextToSpeechResponse.new
1787
+ model.deserialize(response['Response'])
1788
+ model
1789
+ else
1790
+ code = response['Response']['Error']['Code']
1791
+ message = response['Response']['Error']['Message']
1792
+ reqid = response['Response']['RequestId']
1793
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
1794
+ end
1795
+ rescue TencentCloud::Common::TencentCloudSDKException => e
1796
+ raise e
1797
+ rescue StandardError => e
1798
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1799
+ end
1800
+
1801
+ # SSE流式文本转语音
1802
+
1803
+ # @param request: Request instance for TextToSpeechSSE.
1804
+ # @type request: :class:`Tencentcloud::trtc::V20190722::TextToSpeechSSERequest`
1805
+ # @rtype: :class:`Tencentcloud::trtc::V20190722::TextToSpeechSSEResponse`
1806
+ def TextToSpeechSSE(request)
1807
+ body = send_request('TextToSpeechSSE', request.serialize)
1808
+ response = JSON.parse(body)
1809
+ if response['Response'].key?('Error') == false
1810
+ model = TextToSpeechSSEResponse.new
1811
+ model.deserialize(response['Response'])
1812
+ model
1813
+ else
1814
+ code = response['Response']['Error']['Code']
1815
+ message = response['Response']['Error']['Message']
1816
+ reqid = response['Response']['RequestId']
1817
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
1818
+ end
1819
+ rescue TencentCloud::Common::TencentCloudSDKException => e
1820
+ raise e
1821
+ rescue StandardError => e
1822
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1823
+ end
1824
+
1777
1825
  # 更新AIConversation参数
1778
1826
 
1779
1827
  # @param request: Request instance for UpdateAIConversation.
@@ -1872,6 +1920,30 @@ module TencentCloud
1872
1920
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1873
1921
  end
1874
1922
 
1923
+ # 声音克隆
1924
+
1925
+ # @param request: Request instance for VoiceClone.
1926
+ # @type request: :class:`Tencentcloud::trtc::V20190722::VoiceCloneRequest`
1927
+ # @rtype: :class:`Tencentcloud::trtc::V20190722::VoiceCloneResponse`
1928
+ def VoiceClone(request)
1929
+ body = send_request('VoiceClone', request.serialize)
1930
+ response = JSON.parse(body)
1931
+ if response['Response'].key?('Error') == false
1932
+ model = VoiceCloneResponse.new
1933
+ model.deserialize(response['Response'])
1934
+ model
1935
+ else
1936
+ code = response['Response']['Error']['Code']
1937
+ message = response['Response']['Error']['Message']
1938
+ reqid = response['Response']['RequestId']
1939
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
1940
+ end
1941
+ rescue TencentCloud::Common::TencentCloudSDKException => e
1942
+ raise e
1943
+ rescue StandardError => e
1944
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1945
+ end
1946
+
1875
1947
 
1876
1948
  end
1877
1949
  end
@@ -271,6 +271,22 @@ module TencentCloud
271
271
  end
272
272
  end
273
273
 
274
+ # TTS音频输出的格式
275
+ class AudioFormat < TencentCloud::Common::AbstractModel
276
+ # @param Format: 生成的音频格式,默认pcm,目前支持的格式列表:[pcm]。
277
+ # @type Format: String
278
+
279
+ attr_accessor :Format
280
+
281
+ def initialize(format=nil)
282
+ @Format = format
283
+ end
284
+
285
+ def deserialize(params)
286
+ @Format = params['Format']
287
+ end
288
+ end
289
+
274
290
  # 录制音频转码参数。
275
291
  class AudioParams < TencentCloud::Common::AbstractModel
276
292
  # @param SampleRate: 音频采样率枚举值:(注意1 代表48000HZ, 2 代表44100HZ, 3 代表16000HZ)
@@ -531,19 +547,20 @@ module TencentCloud
531
547
  class ControlAIConversationRequest < TencentCloud::Common::AbstractModel
532
548
  # @param TaskId: 任务唯一标识
533
549
  # @type TaskId: String
534
- # @param Command: 控制命令,目前支持命令如下:
535
-
536
- # - ServerPushText,服务端发送文本给AI机器人,AI机器人会播报该文本
550
+ # @param Command: 控制命令,目前支持命令如下:- ServerPushText,服务端发送文本给AI机器人,AI机器人会播报该文本. - InvokeLLM,服务端发送文本给大模型,触发对话
537
551
  # @type Command: String
538
552
  # @param ServerPushText: 服务端发送播报文本命令,当Command为ServerPushText时必填
539
553
  # @type ServerPushText: :class:`Tencentcloud::Trtc.v20190722.models.ServerPushText`
554
+ # @param InvokeLLM: 服务端发送命令主动请求大模型,当Command为InvokeLLM时会把content请求到大模型,头部增加X-Invoke-LLM="1"
555
+ # @type InvokeLLM: :class:`Tencentcloud::Trtc.v20190722.models.InvokeLLM`
540
556
 
541
- attr_accessor :TaskId, :Command, :ServerPushText
557
+ attr_accessor :TaskId, :Command, :ServerPushText, :InvokeLLM
542
558
 
543
- def initialize(taskid=nil, command=nil, serverpushtext=nil)
559
+ def initialize(taskid=nil, command=nil, serverpushtext=nil, invokellm=nil)
544
560
  @TaskId = taskid
545
561
  @Command = command
546
562
  @ServerPushText = serverpushtext
563
+ @InvokeLLM = invokellm
547
564
  end
548
565
 
549
566
  def deserialize(params)
@@ -553,6 +570,10 @@ module TencentCloud
553
570
  @ServerPushText = ServerPushText.new
554
571
  @ServerPushText.deserialize(params['ServerPushText'])
555
572
  end
573
+ unless params['InvokeLLM'].nil?
574
+ @InvokeLLM = InvokeLLM.new
575
+ @InvokeLLM.deserialize(params['InvokeLLM'])
576
+ end
556
577
  end
557
578
  end
558
579
 
@@ -3109,6 +3130,26 @@ module TencentCloud
3109
3130
  end
3110
3131
  end
3111
3132
 
3133
+ # 调用服务端主动发起请求到LLM
3134
+ class InvokeLLM < TencentCloud::Common::AbstractModel
3135
+ # @param Content: 请求LLM的内容
3136
+ # @type Content: String
3137
+ # @param Interrupt: 是否允许该文本打断机器人说话
3138
+ # @type Interrupt: Boolean
3139
+
3140
+ attr_accessor :Content, :Interrupt
3141
+
3142
+ def initialize(content=nil, interrupt=nil)
3143
+ @Content = content
3144
+ @Interrupt = interrupt
3145
+ end
3146
+
3147
+ def deserialize(params)
3148
+ @Content = params['Content']
3149
+ @Interrupt = params['Interrupt']
3150
+ end
3151
+ end
3152
+
3112
3153
  # MCU混流布局参数
3113
3154
  class LayoutParams < TencentCloud::Common::AbstractModel
3114
3155
  # @param Template: 混流布局模板ID,0为悬浮模板(默认);1为九宫格模板;2为屏幕分享模板;3为画中画模板;4为自定义模板。
@@ -4714,10 +4755,10 @@ module TencentCloud
4714
4755
 
4715
4756
  attr_accessor :Language, :AlternativeLanguage, :Model, :TranslationLanguage, :HotWordList, :VadSilenceTime
4716
4757
  extend Gem::Deprecate
4717
- deprecate :Model, :none, 2025, 7
4718
- deprecate :Model=, :none, 2025, 7
4719
- deprecate :TranslationLanguage, :none, 2025, 7
4720
- deprecate :TranslationLanguage=, :none, 2025, 7
4758
+ deprecate :Model, :none, 2025, 8
4759
+ deprecate :Model=, :none, 2025, 8
4760
+ deprecate :TranslationLanguage, :none, 2025, 8
4761
+ deprecate :TranslationLanguage=, :none, 2025, 8
4721
4762
 
4722
4763
  def initialize(language=nil, alternativelanguage=nil, model=nil, translationlanguage=nil, hotwordlist=nil, vadsilencetime=nil)
4723
4764
  @Language = language
@@ -5830,12 +5871,12 @@ module TencentCloud
5830
5871
 
5831
5872
  attr_accessor :SdkAppId, :RoomId, :RoomIdType, :UserId, :UserSig, :StreamUrl, :PrivateMapKey, :VideoEncodeParams, :AudioEncodeParams, :SourceUrl, :SeekSecond, :AutoPush, :RepeatNum, :MaxDuration, :Volume
5832
5873
  extend Gem::Deprecate
5833
- deprecate :VideoEncodeParams, :none, 2025, 7
5834
- deprecate :VideoEncodeParams=, :none, 2025, 7
5835
- deprecate :AudioEncodeParams, :none, 2025, 7
5836
- deprecate :AudioEncodeParams=, :none, 2025, 7
5837
- deprecate :SourceUrl, :none, 2025, 7
5838
- deprecate :SourceUrl=, :none, 2025, 7
5874
+ deprecate :VideoEncodeParams, :none, 2025, 8
5875
+ deprecate :VideoEncodeParams=, :none, 2025, 8
5876
+ deprecate :AudioEncodeParams, :none, 2025, 8
5877
+ deprecate :AudioEncodeParams=, :none, 2025, 8
5878
+ deprecate :SourceUrl, :none, 2025, 8
5879
+ deprecate :SourceUrl=, :none, 2025, 8
5839
5880
 
5840
5881
  def initialize(sdkappid=nil, roomid=nil, roomidtype=nil, userid=nil, usersig=nil, streamurl=nil, privatemapkey=nil, videoencodeparams=nil, audioencodeparams=nil, sourceurl=nil, seeksecond=nil, autopush=nil, repeatnum=nil, maxduration=nil, volume=nil)
5841
5882
  @SdkAppId = sdkappid
@@ -6472,6 +6513,118 @@ module TencentCloud
6472
6513
  end
6473
6514
  end
6474
6515
 
6516
+ # TextToSpeech请求参数结构体
6517
+ class TextToSpeechRequest < TencentCloud::Common::AbstractModel
6518
+ # @param Text: 需要转语音的文字内容,长度范围:[1, 255]
6519
+ # @type Text: String
6520
+ # @param Voice: 文本转语音的声音配置
6521
+ # @type Voice: :class:`Tencentcloud::Trtc.v20190722.models.Voice`
6522
+ # @param SdkAppId: TRTC的SdkAppId
6523
+ # @type SdkAppId: Integer
6524
+ # @param AudioFormat: 文本转语音的输出音频的格式
6525
+ # @type AudioFormat: :class:`Tencentcloud::Trtc.v20190722.models.AudioFormat`
6526
+ # @param APIKey: TTS的API密钥
6527
+ # @type APIKey: String
6528
+
6529
+ attr_accessor :Text, :Voice, :SdkAppId, :AudioFormat, :APIKey
6530
+
6531
+ def initialize(text=nil, voice=nil, sdkappid=nil, audioformat=nil, apikey=nil)
6532
+ @Text = text
6533
+ @Voice = voice
6534
+ @SdkAppId = sdkappid
6535
+ @AudioFormat = audioformat
6536
+ @APIKey = apikey
6537
+ end
6538
+
6539
+ def deserialize(params)
6540
+ @Text = params['Text']
6541
+ unless params['Voice'].nil?
6542
+ @Voice = Voice.new
6543
+ @Voice.deserialize(params['Voice'])
6544
+ end
6545
+ @SdkAppId = params['SdkAppId']
6546
+ unless params['AudioFormat'].nil?
6547
+ @AudioFormat = AudioFormat.new
6548
+ @AudioFormat.deserialize(params['AudioFormat'])
6549
+ end
6550
+ @APIKey = params['APIKey']
6551
+ end
6552
+ end
6553
+
6554
+ # TextToSpeech返回参数结构体
6555
+ class TextToSpeechResponse < TencentCloud::Common::AbstractModel
6556
+ # @param Audio: Base64编码的音频数据
6557
+ # @type Audio: String
6558
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6559
+ # @type RequestId: String
6560
+
6561
+ attr_accessor :Audio, :RequestId
6562
+
6563
+ def initialize(audio=nil, requestid=nil)
6564
+ @Audio = audio
6565
+ @RequestId = requestid
6566
+ end
6567
+
6568
+ def deserialize(params)
6569
+ @Audio = params['Audio']
6570
+ @RequestId = params['RequestId']
6571
+ end
6572
+ end
6573
+
6574
+ # TextToSpeechSSE请求参数结构体
6575
+ class TextToSpeechSSERequest < TencentCloud::Common::AbstractModel
6576
+ # @param Text: 需要转语音的文字内容,长度范围:[1, 255]
6577
+ # @type Text: String
6578
+ # @param Voice: 文本转语音的声音配置
6579
+ # @type Voice: :class:`Tencentcloud::Trtc.v20190722.models.Voice`
6580
+ # @param SdkAppId: TRTC的SdkAppId
6581
+ # @type SdkAppId: Integer
6582
+ # @param AudioFormat: 文本转语音的输出音频的格式
6583
+ # @type AudioFormat: :class:`Tencentcloud::Trtc.v20190722.models.AudioFormat`
6584
+ # @param APIKey: TTS的API密钥
6585
+ # @type APIKey: String
6586
+
6587
+ attr_accessor :Text, :Voice, :SdkAppId, :AudioFormat, :APIKey
6588
+
6589
+ def initialize(text=nil, voice=nil, sdkappid=nil, audioformat=nil, apikey=nil)
6590
+ @Text = text
6591
+ @Voice = voice
6592
+ @SdkAppId = sdkappid
6593
+ @AudioFormat = audioformat
6594
+ @APIKey = apikey
6595
+ end
6596
+
6597
+ def deserialize(params)
6598
+ @Text = params['Text']
6599
+ unless params['Voice'].nil?
6600
+ @Voice = Voice.new
6601
+ @Voice.deserialize(params['Voice'])
6602
+ end
6603
+ @SdkAppId = params['SdkAppId']
6604
+ unless params['AudioFormat'].nil?
6605
+ @AudioFormat = AudioFormat.new
6606
+ @AudioFormat.deserialize(params['AudioFormat'])
6607
+ end
6608
+ @APIKey = params['APIKey']
6609
+ end
6610
+ end
6611
+
6612
+ # TextToSpeechSSE返回参数结构体
6613
+ class TextToSpeechSSEResponse < TencentCloud::Common::AbstractModel
6614
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。本接口为流式响应接口,当请求成功时,RequestId 会被放在 HTTP 响应的 Header "X-TC-RequestId" 中。
6615
+ # @type RequestId: String
6616
+
6617
+ attr_accessor :RequestId
6618
+
6619
+ def initialize(requestid=nil)
6620
+ @RequestId = requestid
6621
+ end
6622
+
6623
+ def deserialize(params)
6624
+ @RequestId = params['RequestId']
6625
+ end
6626
+ end
6627
+
6475
6628
  # 返回的质量数据,时间:值
6476
6629
  class TimeValue < TencentCloud::Common::AbstractModel
6477
6630
  # @param Time: 时间,unix时间戳(1590065877s)
@@ -6517,10 +6670,10 @@ module TencentCloud
6517
6670
 
6518
6671
  attr_accessor :UserId, :UserSig, :IMAdminUserId, :IMAdminUserSig, :MaxIdleTime, :TranscriptionMode, :TargetUserId, :TargetUserIdList, :VoicePrint
6519
6672
  extend Gem::Deprecate
6520
- deprecate :IMAdminUserId, :none, 2025, 7
6521
- deprecate :IMAdminUserId=, :none, 2025, 7
6522
- deprecate :IMAdminUserSig, :none, 2025, 7
6523
- deprecate :IMAdminUserSig=, :none, 2025, 7
6673
+ deprecate :IMAdminUserId, :none, 2025, 8
6674
+ deprecate :IMAdminUserId=, :none, 2025, 8
6675
+ deprecate :IMAdminUserSig, :none, 2025, 8
6676
+ deprecate :IMAdminUserSig=, :none, 2025, 8
6524
6677
 
6525
6678
  def initialize(userid=nil, usersig=nil, imadminuserid=nil, imadminusersig=nil, maxidletime=nil, transcriptionmode=nil, targetuserid=nil, targetuseridlist=nil, voiceprint=nil)
6526
6679
  @UserId = userid
@@ -7020,6 +7173,74 @@ module TencentCloud
7020
7173
  end
7021
7174
  end
7022
7175
 
7176
+ # TTS的声音参数
7177
+ class Voice < TencentCloud::Common::AbstractModel
7178
+ # @param VoiceId: TTS的声音的ID
7179
+ # @type VoiceId: String
7180
+
7181
+ attr_accessor :VoiceId
7182
+
7183
+ def initialize(voiceid=nil)
7184
+ @VoiceId = voiceid
7185
+ end
7186
+
7187
+ def deserialize(params)
7188
+ @VoiceId = params['VoiceId']
7189
+ end
7190
+ end
7191
+
7192
+ # VoiceClone请求参数结构体
7193
+ class VoiceCloneRequest < TencentCloud::Common::AbstractModel
7194
+ # @param SdkAppId: TRTC的SdkAppId
7195
+ # @type SdkAppId: Integer
7196
+ # @param APIKey: TTS的API密钥
7197
+ # @type APIKey: String
7198
+ # @param VoiceName: 声音克隆的名字
7199
+ # @type VoiceName: String
7200
+ # @param PromptAudio: 声音克隆的参考音频,必须为16k单声道的wav的base64字符串, 长度在5秒~12秒之间
7201
+ # @type PromptAudio: String
7202
+ # @param PromptText: 声音克隆的参考文本,为参考音频对应的文字。
7203
+ # @type PromptText: String
7204
+
7205
+ attr_accessor :SdkAppId, :APIKey, :VoiceName, :PromptAudio, :PromptText
7206
+
7207
+ def initialize(sdkappid=nil, apikey=nil, voicename=nil, promptaudio=nil, prompttext=nil)
7208
+ @SdkAppId = sdkappid
7209
+ @APIKey = apikey
7210
+ @VoiceName = voicename
7211
+ @PromptAudio = promptaudio
7212
+ @PromptText = prompttext
7213
+ end
7214
+
7215
+ def deserialize(params)
7216
+ @SdkAppId = params['SdkAppId']
7217
+ @APIKey = params['APIKey']
7218
+ @VoiceName = params['VoiceName']
7219
+ @PromptAudio = params['PromptAudio']
7220
+ @PromptText = params['PromptText']
7221
+ end
7222
+ end
7223
+
7224
+ # VoiceClone返回参数结构体
7225
+ class VoiceCloneResponse < TencentCloud::Common::AbstractModel
7226
+ # @param VoiceId: 克隆出的音色ID,可以用此id进行语音合成
7227
+ # @type VoiceId: String
7228
+ # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7229
+ # @type RequestId: String
7230
+
7231
+ attr_accessor :VoiceId, :RequestId
7232
+
7233
+ def initialize(voiceid=nil, requestid=nil)
7234
+ @VoiceId = voiceid
7235
+ @RequestId = requestid
7236
+ end
7237
+
7238
+ def deserialize(params)
7239
+ @VoiceId = params['VoiceId']
7240
+ @RequestId = params['RequestId']
7241
+ end
7242
+ end
7243
+
7023
7244
  # 声纹配置参数
7024
7245
  class VoicePrint < TencentCloud::Common::AbstractModel
7025
7246
  # @param Mode: 默认为0,表示不启用声纹。1表示启用声纹,此时需要填写voiceprint id。
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-trtc
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1108
4
+ version: 3.0.1122
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-07-24 00:00:00.000000000 Z
11
+ date: 2025-08-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common