tencentcloud-sdk-ccc 3.0.1102 → 3.0.1105
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 +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20200210/models.rb +71 -5
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ae4edd4934cc48a4b03ff50824d8d41c77d5d4b7
|
4
|
+
data.tar.gz: dbde049615b638151b2bce10e0fb43e6549c9890
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 446b62fdbe8b56d6ca74c53520ba99d1932052edf69e4561dec8c72039e97925dc85163fd87c47f52d887b80505fecdfb4cbeab37f1a723a915c7ae2890b062c
|
7
|
+
data.tar.gz: 1684d65dbdf1ac823c4459b19ebb10e6dc9a2ecb1372e427a5d26ed2e65be88eb40d00317e6d3f3bffbbaeefdc38a0ac12250d1708993137d953a0b23223160e
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1105
|
data/lib/v20200210/models.rb
CHANGED
@@ -1334,13 +1334,19 @@ module TencentCloud
|
|
1334
1334
|
# 2. dify-inputs-user 为dify的user值
|
1335
1335
|
# 3. dify-inputs-conversation_id 为dify的conversation_id值
|
1336
1336
|
# @type Variables: Array
|
1337
|
-
|
1338
|
-
|
1337
|
+
# @param TopP: 模型topP
|
1338
|
+
# @type TopP: Float
|
1339
|
+
# @param VadLevel: vad的远场人声抑制能力(不会对asr识别效果造成影响),范围为[0, 3],默认为0。推荐设置为2,有较好的远场人声抑制能力。
|
1340
|
+
# @type VadLevel: Integer
|
1341
|
+
# @param ToneWord: 衔接语
|
1342
|
+
# @type ToneWord: :class:`Tencentcloud::Ccc.v20200210.models.ToneWordInfo`
|
1343
|
+
|
1344
|
+
attr_accessor :SdkAppId, :Callee, :LLMType, :APIKey, :APIUrl, :SystemPrompt, :Model, :VoiceType, :Callers, :WelcomeMessage, :WelcomeType, :WelcomeMessagePriority, :MaxDuration, :Languages, :InterruptMode, :InterruptSpeechDuration, :EndFunctionEnable, :EndFunctionDesc, :TransferFunctionEnable, :TransferItems, :NotifyDuration, :NotifyMessage, :NotifyMaxCount, :CustomTTSConfig, :PromptVariables, :VadSilenceTime, :ExtractConfig, :Temperature, :Variables, :TopP, :VadLevel, :ToneWord
|
1339
1345
|
extend Gem::Deprecate
|
1340
1346
|
deprecate :PromptVariables, :none, 2025, 7
|
1341
1347
|
deprecate :PromptVariables=, :none, 2025, 7
|
1342
1348
|
|
1343
|
-
def initialize(sdkappid=nil, callee=nil, llmtype=nil, apikey=nil, apiurl=nil, systemprompt=nil, model=nil, voicetype=nil, callers=nil, welcomemessage=nil, welcometype=nil, welcomemessagepriority=nil, maxduration=nil, languages=nil, interruptmode=nil, interruptspeechduration=nil, endfunctionenable=nil, endfunctiondesc=nil, transferfunctionenable=nil, transferitems=nil, notifyduration=nil, notifymessage=nil, notifymaxcount=nil, customttsconfig=nil, promptvariables=nil, vadsilencetime=nil, extractconfig=nil, temperature=nil, variables=nil)
|
1349
|
+
def initialize(sdkappid=nil, callee=nil, llmtype=nil, apikey=nil, apiurl=nil, systemprompt=nil, model=nil, voicetype=nil, callers=nil, welcomemessage=nil, welcometype=nil, welcomemessagepriority=nil, maxduration=nil, languages=nil, interruptmode=nil, interruptspeechduration=nil, endfunctionenable=nil, endfunctiondesc=nil, transferfunctionenable=nil, transferitems=nil, notifyduration=nil, notifymessage=nil, notifymaxcount=nil, customttsconfig=nil, promptvariables=nil, vadsilencetime=nil, extractconfig=nil, temperature=nil, variables=nil, topp=nil, vadlevel=nil, toneword=nil)
|
1344
1350
|
@SdkAppId = sdkappid
|
1345
1351
|
@Callee = callee
|
1346
1352
|
@LLMType = llmtype
|
@@ -1370,6 +1376,9 @@ module TencentCloud
|
|
1370
1376
|
@ExtractConfig = extractconfig
|
1371
1377
|
@Temperature = temperature
|
1372
1378
|
@Variables = variables
|
1379
|
+
@TopP = topp
|
1380
|
+
@VadLevel = vadlevel
|
1381
|
+
@ToneWord = toneword
|
1373
1382
|
end
|
1374
1383
|
|
1375
1384
|
def deserialize(params)
|
@@ -1430,6 +1439,12 @@ module TencentCloud
|
|
1430
1439
|
@Variables << variable_tmp
|
1431
1440
|
end
|
1432
1441
|
end
|
1442
|
+
@TopP = params['TopP']
|
1443
|
+
@VadLevel = params['VadLevel']
|
1444
|
+
unless params['ToneWord'].nil?
|
1445
|
+
@ToneWord = ToneWordInfo.new
|
1446
|
+
@ToneWord.deserialize(params['ToneWord'])
|
1447
|
+
end
|
1433
1448
|
end
|
1434
1449
|
end
|
1435
1450
|
|
@@ -5819,10 +5834,12 @@ module TencentCloud
|
|
5819
5834
|
# @type SkillGroupType: Integer
|
5820
5835
|
# @param Alias: 技能组内线号码
|
5821
5836
|
# @type Alias: String
|
5837
|
+
# @param RingAll: 是否同振
|
5838
|
+
# @type RingAll: Boolean
|
5822
5839
|
|
5823
|
-
attr_accessor :SkillGroupId, :SkillGroupName, :Type, :RoutePolicy, :UsingLastSeat, :MaxConcurrency, :LastModifyTimestamp, :SkillGroupType, :Alias
|
5840
|
+
attr_accessor :SkillGroupId, :SkillGroupName, :Type, :RoutePolicy, :UsingLastSeat, :MaxConcurrency, :LastModifyTimestamp, :SkillGroupType, :Alias, :RingAll
|
5824
5841
|
|
5825
|
-
def initialize(skillgroupid=nil, skillgroupname=nil, type=nil, routepolicy=nil, usinglastseat=nil, maxconcurrency=nil, lastmodifytimestamp=nil, skillgrouptype=nil, _alias=nil)
|
5842
|
+
def initialize(skillgroupid=nil, skillgroupname=nil, type=nil, routepolicy=nil, usinglastseat=nil, maxconcurrency=nil, lastmodifytimestamp=nil, skillgrouptype=nil, _alias=nil, ringall=nil)
|
5826
5843
|
@SkillGroupId = skillgroupid
|
5827
5844
|
@SkillGroupName = skillgroupname
|
5828
5845
|
@Type = type
|
@@ -5832,6 +5849,7 @@ module TencentCloud
|
|
5832
5849
|
@LastModifyTimestamp = lastmodifytimestamp
|
5833
5850
|
@SkillGroupType = skillgrouptype
|
5834
5851
|
@Alias = _alias
|
5852
|
+
@RingAll = ringall
|
5835
5853
|
end
|
5836
5854
|
|
5837
5855
|
def deserialize(params)
|
@@ -5844,6 +5862,7 @@ module TencentCloud
|
|
5844
5862
|
@LastModifyTimestamp = params['LastModifyTimestamp']
|
5845
5863
|
@SkillGroupType = params['SkillGroupType']
|
5846
5864
|
@Alias = params['Alias']
|
5865
|
+
@RingAll = params['RingAll']
|
5847
5866
|
end
|
5848
5867
|
end
|
5849
5868
|
|
@@ -6467,6 +6486,29 @@ module TencentCloud
|
|
6467
6486
|
end
|
6468
6487
|
end
|
6469
6488
|
|
6489
|
+
# 承接语气词信息
|
6490
|
+
class ToneWordInfo < TencentCloud::Common::AbstractModel
|
6491
|
+
# @param FirstSentenceTimeout: 首句超时时间,单位秒
|
6492
|
+
# @type FirstSentenceTimeout: Float
|
6493
|
+
# @param ZHToneWords: 承接语气词
|
6494
|
+
# @type ZHToneWords: :class:`Tencentcloud::Ccc.v20200210.models.ZHToneWordsInfo`
|
6495
|
+
|
6496
|
+
attr_accessor :FirstSentenceTimeout, :ZHToneWords
|
6497
|
+
|
6498
|
+
def initialize(firstsentencetimeout=nil, zhtonewords=nil)
|
6499
|
+
@FirstSentenceTimeout = firstsentencetimeout
|
6500
|
+
@ZHToneWords = zhtonewords
|
6501
|
+
end
|
6502
|
+
|
6503
|
+
def deserialize(params)
|
6504
|
+
@FirstSentenceTimeout = params['FirstSentenceTimeout']
|
6505
|
+
unless params['ZHToneWords'].nil?
|
6506
|
+
@ZHToneWords = ZHToneWordsInfo.new
|
6507
|
+
@ZHToneWords.deserialize(params['ZHToneWords'])
|
6508
|
+
end
|
6509
|
+
end
|
6510
|
+
end
|
6511
|
+
|
6470
6512
|
# TransferToManual请求参数结构体
|
6471
6513
|
class TransferToManualRequest < TencentCloud::Common::AbstractModel
|
6472
6514
|
# @param SdkAppId: 应用 ID(必填),可以查看 https://console.cloud.tencent.com/ccc
|
@@ -6870,6 +6912,30 @@ module TencentCloud
|
|
6870
6912
|
end
|
6871
6913
|
end
|
6872
6914
|
|
6915
|
+
# 承接语气词
|
6916
|
+
class ZHToneWordsInfo < TencentCloud::Common::AbstractModel
|
6917
|
+
# @param Neutral: 中性词列表
|
6918
|
+
# @type Neutral: Array
|
6919
|
+
# @param Positive: 正面词列表
|
6920
|
+
# @type Positive: Array
|
6921
|
+
# @param Negative: 负面词列表
|
6922
|
+
# @type Negative: Array
|
6923
|
+
|
6924
|
+
attr_accessor :Neutral, :Positive, :Negative
|
6925
|
+
|
6926
|
+
def initialize(neutral=nil, positive=nil, negative=nil)
|
6927
|
+
@Neutral = neutral
|
6928
|
+
@Positive = positive
|
6929
|
+
@Negative = negative
|
6930
|
+
end
|
6931
|
+
|
6932
|
+
def deserialize(params)
|
6933
|
+
@Neutral = params['Neutral']
|
6934
|
+
@Positive = params['Positive']
|
6935
|
+
@Negative = params['Negative']
|
6936
|
+
end
|
6937
|
+
end
|
6938
|
+
|
6873
6939
|
end
|
6874
6940
|
end
|
6875
6941
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-ccc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1105
|
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-
|
11
|
+
date: 2025-07-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|