tencentcloud-sdk-asr 3.0.851 → 3.0.852

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20190614/models.rb +24 -2
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0f90516afb7321b35f34fab2634611ba25e88ca5
4
- data.tar.gz: aaebf17b77c936bf8e7393ddcd0483efb28f06ac
3
+ metadata.gz: 8a5f8f432125e2a57a368942dd828fa7297b3422
4
+ data.tar.gz: 5d3e44524c6a6a45c899e2ac801a1d8bec3bd975
5
5
  SHA512:
6
- metadata.gz: a8cb495640c807896401410370f965170e22bbf1ac1ce547a0f4002f1711a620bb9641bf764cd39883191f4dbf918fd7507f1ecd7998aa2a97f7415645149b70
7
- data.tar.gz: 78c3cf0f9dd152dabd9c9212ebd22971f90c79da2141530612c076e3cfb949dd1524963deecd22d7fff9fe8396572322dba0b477ac7741fe8d932d6eb9de1dff
6
+ metadata.gz: f6e1423a9092383dd7857e637382691c12236441d317c9f29eb119027786a40685f4b797c7ebcf8848db2864882d8a0ebccb41d5d80842d798014711bacf0c97
7
+ data.tar.gz: b424f84f9708ea9d0eb4617938d4afda098f58d758a4cab0dd4cc1b3e7e3e14bf8df263b7834c59b551fb503896869792a3582e1aee194f475c238f3ae2d880c
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.851
1
+ 3.0.852
@@ -458,13 +458,33 @@ module TencentCloud
458
458
  # @type SentenceMaxLength: Integer
459
459
  # @param Extra: 附加参数**(该参数无意义,忽略即可)**
460
460
  # @type Extra: String
461
+ # @param HotwordList: 临时热词表:该参数用于提升识别准确率。
462
+
463
+ # - 单个热词限制:"热词|权重",单个热词不超过30个字符(最多10个汉字),权重[1-11]或者100,如:“腾讯云|5” 或“ASR|11”;
464
+
465
+ # - 临时热词表限制:多个热词用英文逗号分割,最多支持128个热词,如:“腾讯云|10,语音识别|5,ASR|11”;
466
+
467
+ # - 参数 hotword_id(热词表) 与 hotword_list(临时热词表) 区别:
468
+
469
+ # - hotword_id:热词表。需要先在控制台或接口创建热词表,获得对应hotword_id传入参数来使用热词功能;
470
+
471
+ # - hotword_list:临时热词表。每次请求时直接传入临时热词表来使用热词功能,云端不保留临时热词表。适用于有极大量热词需求的用户;
472
+
473
+ # 注意:
461
474
 
462
- attr_accessor :EngineModelType, :ChannelNum, :ResTextFormat, :SourceType, :Data, :DataLen, :Url, :CallbackUrl, :SpeakerDiarization, :SpeakerNumber, :HotwordId, :ReinforceHotword, :CustomizationId, :EmotionRecognition, :EmotionalEnergy, :ConvertNumMode, :FilterDirty, :FilterPunc, :FilterModal, :SentenceMaxLength, :Extra
475
+ # - 如果同时传入了 hotword_id hotword_list,会优先使用 hotword_list;
476
+
477
+ # - 热词权重设置为11时,当前热词将升级为超级热词,建议仅将重要且必须生效的热词设置到11,设置过多权重为11的热词将影响整体字准率。
478
+
479
+ # - 热词权重设置为100时,当前热词开启热词增强同音替换功能(仅支持8k_zh,16k_zh),举例:热词配置“蜜制|100”时,与“蜜制”同拼音(mizhi)的“秘制”的识别结果会被强制替换成“蜜制”。因此建议客户根据自己的实际情况开启该功能。建议仅将重要且必须生效的热词设置到100,设置过多权重为100的热词将影响整体字准率。
480
+ # @type HotwordList: String
481
+
482
+ attr_accessor :EngineModelType, :ChannelNum, :ResTextFormat, :SourceType, :Data, :DataLen, :Url, :CallbackUrl, :SpeakerDiarization, :SpeakerNumber, :HotwordId, :ReinforceHotword, :CustomizationId, :EmotionRecognition, :EmotionalEnergy, :ConvertNumMode, :FilterDirty, :FilterPunc, :FilterModal, :SentenceMaxLength, :Extra, :HotwordList
463
483
  extend Gem::Deprecate
464
484
  deprecate :ReinforceHotword, :none, 2024, 6
465
485
  deprecate :ReinforceHotword=, :none, 2024, 6
466
486
 
467
- def initialize(enginemodeltype=nil, channelnum=nil, restextformat=nil, sourcetype=nil, data=nil, datalen=nil, url=nil, callbackurl=nil, speakerdiarization=nil, speakernumber=nil, hotwordid=nil, reinforcehotword=nil, customizationid=nil, emotionrecognition=nil, emotionalenergy=nil, convertnummode=nil, filterdirty=nil, filterpunc=nil, filtermodal=nil, sentencemaxlength=nil, extra=nil)
487
+ def initialize(enginemodeltype=nil, channelnum=nil, restextformat=nil, sourcetype=nil, data=nil, datalen=nil, url=nil, callbackurl=nil, speakerdiarization=nil, speakernumber=nil, hotwordid=nil, reinforcehotword=nil, customizationid=nil, emotionrecognition=nil, emotionalenergy=nil, convertnummode=nil, filterdirty=nil, filterpunc=nil, filtermodal=nil, sentencemaxlength=nil, extra=nil, hotwordlist=nil)
468
488
  @EngineModelType = enginemodeltype
469
489
  @ChannelNum = channelnum
470
490
  @ResTextFormat = restextformat
@@ -486,6 +506,7 @@ module TencentCloud
486
506
  @FilterModal = filtermodal
487
507
  @SentenceMaxLength = sentencemaxlength
488
508
  @Extra = extra
509
+ @HotwordList = hotwordlist
489
510
  end
490
511
 
491
512
  def deserialize(params)
@@ -510,6 +531,7 @@ module TencentCloud
510
531
  @FilterModal = params['FilterModal']
511
532
  @SentenceMaxLength = params['SentenceMaxLength']
512
533
  @Extra = params['Extra']
534
+ @HotwordList = params['HotwordList']
513
535
  end
514
536
  end
515
537
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-asr
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.851
4
+ version: 3.0.852
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-06-25 00:00:00.000000000 Z
11
+ date: 2024-06-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common