tencentcloud-sdk-nlp 3.0.599 → 3.0.601

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e258b70d18348c16e55f7e3dbe93a76fc7a62c92
4
- data.tar.gz: 786bd4abb54647ee1a661531938eb30fca4fbc28
3
+ metadata.gz: 363ad481b97ed72b91288467b01ce9a7e87ee868
4
+ data.tar.gz: fe5442e6f4f476ba1c36f65df8b30a3bdf5c339e
5
5
  SHA512:
6
- metadata.gz: 34b4c2493a258ed71719d2c3ecd145d1c8c7f9def1f395e5b7010e422b4156a17b124ffeedcdbe49bee555b7c6acb0b8130d355fcc3a00c4e74dd94e08104fc8
7
- data.tar.gz: ea31224ff3bfe958a354b5af76c36c4bf41135486fa77cecd7f48a3aed3873da12907e36044d76100088aa9876e0c28405f555bf40d70fb957459fa3af64ce1f
6
+ metadata.gz: 41fc1c5014b2f3a4bef054cbeda8029b17e7941697cca53b952a066222fcbb54f1484772453e867097ab3e4d68f1c3c37492f1c0ff4160f515239d19e4bbb7e5
7
+ data.tar.gz: cbf197dce8d1e0a943bca8a71b7225306a64332e71b0bcff4158a65c569221881dc46929032698008de05cc4e5df9d8648ad449d7134a4228be98e2d9a221a3b
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.599
1
+ 3.0.601
@@ -29,6 +29,30 @@ module TencentCloud
29
29
  end
30
30
 
31
31
 
32
+ # 情感分析接口能够对带有情感色彩的主观性文本进行分析、处理、归纳和推理,识别出用户的情感倾向,是积极、中性还是消极,并且提供各自概率。
33
+
34
+ # @param request: Request instance for AnalyzeSentiment.
35
+ # @type request: :class:`Tencentcloud::nlp::V20190408::AnalyzeSentimentRequest`
36
+ # @rtype: :class:`Tencentcloud::nlp::V20190408::AnalyzeSentimentResponse`
37
+ def AnalyzeSentiment(request)
38
+ body = send_request('AnalyzeSentiment', request.serialize)
39
+ response = JSON.parse(body)
40
+ if response['Response'].key?('Error') == false
41
+ model = AnalyzeSentimentResponse.new
42
+ model.deserialize(response['Response'])
43
+ model
44
+ else
45
+ code = response['Response']['Error']['Code']
46
+ message = response['Response']['Error']['Message']
47
+ reqid = response['Response']['RequestId']
48
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
49
+ end
50
+ rescue TencentCloud::Common::TencentCloudSDKException => e
51
+ raise e
52
+ rescue StandardError => e
53
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
54
+ end
55
+
32
56
  # 因业务调整该接口将于北京时间2023年8月1日0点下线,届时该产品功能将无法正常使用,为了避免对您的业务造成影响,请您尽快做好相关业务调整。详见:https://cloud.tencent.com/document/product/271/90711
33
57
 
34
58
  # 利用人工智能算法,自动抽取文本中的关键信息并生成指定长度的文本摘要。可用于新闻标题生成、科技文献摘要生成和商品评论摘要等。
@@ -82,6 +106,78 @@ module TencentCloud
82
106
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
83
107
  end
84
108
 
109
+ # 文本分类接口能够对用户输入的文章进行自动分类,将其映射到具体的类目上,用户只需要提供待分类的文本,而无需关注具体实现。该功能定义了一套较为完备的[三级分类体系](https://cloud.tencent.com/document/product/271/94286),积累了数百万的语料,经过多轮迭代优化打造了较先进的深度学习模型,以保证效果不断提升。
110
+
111
+ # @param request: Request instance for ClassifyContent.
112
+ # @type request: :class:`Tencentcloud::nlp::V20190408::ClassifyContentRequest`
113
+ # @rtype: :class:`Tencentcloud::nlp::V20190408::ClassifyContentResponse`
114
+ def ClassifyContent(request)
115
+ body = send_request('ClassifyContent', request.serialize)
116
+ response = JSON.parse(body)
117
+ if response['Response'].key?('Error') == false
118
+ model = ClassifyContentResponse.new
119
+ model.deserialize(response['Response'])
120
+ model
121
+ else
122
+ code = response['Response']['Error']['Code']
123
+ message = response['Response']['Error']['Message']
124
+ reqid = response['Response']['RequestId']
125
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
126
+ end
127
+ rescue TencentCloud::Common::TencentCloudSDKException => e
128
+ raise e
129
+ rescue StandardError => e
130
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
131
+ end
132
+
133
+ # 对联生成接口根据用户输入的命题关键词,智能生成一副完整的春联,包括上联、下联和横批。该接口利用先进的自然语言处理技术,确保生成的春联既符合传统对仗、对韵、对义的要求,又具有新意和创意,为用户提供独特的春节祝福。
134
+
135
+ # @param request: Request instance for ComposeCouplet.
136
+ # @type request: :class:`Tencentcloud::nlp::V20190408::ComposeCoupletRequest`
137
+ # @rtype: :class:`Tencentcloud::nlp::V20190408::ComposeCoupletResponse`
138
+ def ComposeCouplet(request)
139
+ body = send_request('ComposeCouplet', request.serialize)
140
+ response = JSON.parse(body)
141
+ if response['Response'].key?('Error') == false
142
+ model = ComposeCoupletResponse.new
143
+ model.deserialize(response['Response'])
144
+ model
145
+ else
146
+ code = response['Response']['Error']['Code']
147
+ message = response['Response']['Error']['Message']
148
+ reqid = response['Response']['RequestId']
149
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
150
+ end
151
+ rescue TencentCloud::Common::TencentCloudSDKException => e
152
+ raise e
153
+ rescue StandardError => e
154
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
155
+ end
156
+
157
+ # 诗词生成接口利用现代的自然语言处理和深度学习技术,模仿了古代著名诗人的风格,为用户产生独特的诗词。用户只需输入的命题关键词,接口就能自动生成一首七言律诗或五言律诗。
158
+
159
+ # @param request: Request instance for ComposePoetry.
160
+ # @type request: :class:`Tencentcloud::nlp::V20190408::ComposePoetryRequest`
161
+ # @rtype: :class:`Tencentcloud::nlp::V20190408::ComposePoetryResponse`
162
+ def ComposePoetry(request)
163
+ body = send_request('ComposePoetry', request.serialize)
164
+ response = JSON.parse(body)
165
+ if response['Response'].key?('Error') == false
166
+ model = ComposePoetryResponse.new
167
+ model.deserialize(response['Response'])
168
+ model
169
+ else
170
+ code = response['Response']['Error']['Code']
171
+ message = response['Response']['Error']['Message']
172
+ reqid = response['Response']['RequestId']
173
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
174
+ end
175
+ rescue TencentCloud::Common::TencentCloudSDKException => e
176
+ raise e
177
+ rescue StandardError => e
178
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
179
+ end
180
+
85
181
  # 因业务调整该接口将于北京时间2023年8月1日0点下线,届时该产品功能将无法正常使用,为了避免对您的业务造成影响,请您尽快做好相关业务调整。详见:https://cloud.tencent.com/document/product/271/90711
86
182
 
87
183
  # 根据指定的名称、描述创建自定义词库。
@@ -17,6 +17,57 @@
17
17
  module TencentCloud
18
18
  module Nlp
19
19
  module V20190408
20
+ # AnalyzeSentiment请求参数结构体
21
+ class AnalyzeSentimentRequest < TencentCloud::Common::AbstractModel
22
+ # @param Text: 待分析的文本(仅支持UTF-8格式,不超过200字)。
23
+ # @type Text: String
24
+
25
+ attr_accessor :Text
26
+
27
+ def initialize(text=nil)
28
+ @Text = text
29
+ end
30
+
31
+ def deserialize(params)
32
+ @Text = params['Text']
33
+ end
34
+ end
35
+
36
+ # AnalyzeSentiment返回参数结构体
37
+ class AnalyzeSentimentResponse < TencentCloud::Common::AbstractModel
38
+ # @param Positive: 正面情感概率。
39
+ # @type Positive: Float
40
+ # @param Neutral: 中性情感概率。
41
+ # @type Neutral: Float
42
+ # @param Negative: 负面情感概率。
43
+ # @type Negative: Float
44
+ # @param Sentiment: 情感分类结果:
45
+ # positive:正面情感
46
+ # negative:负面情感
47
+ # neutral:中性、无情感
48
+ # @type Sentiment: String
49
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
50
+ # @type RequestId: String
51
+
52
+ attr_accessor :Positive, :Neutral, :Negative, :Sentiment, :RequestId
53
+
54
+ def initialize(positive=nil, neutral=nil, negative=nil, sentiment=nil, requestid=nil)
55
+ @Positive = positive
56
+ @Neutral = neutral
57
+ @Negative = negative
58
+ @Sentiment = sentiment
59
+ @RequestId = requestid
60
+ end
61
+
62
+ def deserialize(params)
63
+ @Positive = params['Positive']
64
+ @Neutral = params['Neutral']
65
+ @Negative = params['Negative']
66
+ @Sentiment = params['Sentiment']
67
+ @RequestId = params['RequestId']
68
+ end
69
+ end
70
+
20
71
  # AutoSummarization请求参数结构体
21
72
  class AutoSummarizationRequest < TencentCloud::Common::AbstractModel
22
73
  # @param Text: 待处理的文本(仅支持UTF-8格式,不超过2000字)
@@ -110,6 +161,38 @@ module TencentCloud
110
161
  end
111
162
  end
112
163
 
164
+ # 分类详细信息
165
+ class Category < TencentCloud::Common::AbstractModel
166
+ # @param Id: 分类id。
167
+ # 注意:此字段可能返回 null,表示取不到有效值。
168
+ # @type Id: Integer
169
+ # @param Label: 分类英文名。
170
+ # 注意:此字段可能返回 null,表示取不到有效值。
171
+ # @type Label: String
172
+ # @param Name: 分类中文名。
173
+ # 注意:此字段可能返回 null,表示取不到有效值。
174
+ # @type Name: String
175
+ # @param Score: 分类置信度。
176
+ # 注意:此字段可能返回 null,表示取不到有效值。
177
+ # @type Score: Float
178
+
179
+ attr_accessor :Id, :Label, :Name, :Score
180
+
181
+ def initialize(id=nil, label=nil, name=nil, score=nil)
182
+ @Id = id
183
+ @Label = label
184
+ @Name = name
185
+ @Score = score
186
+ end
187
+
188
+ def deserialize(params)
189
+ @Id = params['Id']
190
+ @Label = params['Label']
191
+ @Name = params['Name']
192
+ @Score = params['Score']
193
+ end
194
+ end
195
+
113
196
  # ChatBot请求参数结构体
114
197
  class ChatBotRequest < TencentCloud::Common::AbstractModel
115
198
  # @param Query: 用户请求的query
@@ -210,6 +293,160 @@ module TencentCloud
210
293
  end
211
294
  end
212
295
 
296
+ # ClassifyContent请求参数结构体
297
+ class ClassifyContentRequest < TencentCloud::Common::AbstractModel
298
+ # @param Title: 待分类的文章的标题(仅支持UTF-8格式,不超过100字符)。
299
+ # @type Title: String
300
+ # @param Content: 待分类文章的内容, 每个元素对应一个段落。(仅支持UTF-8格式,文章内容长度总和不超过2000字符)
301
+ # @type Content: Array
302
+
303
+ attr_accessor :Title, :Content
304
+
305
+ def initialize(title=nil, content=nil)
306
+ @Title = title
307
+ @Content = content
308
+ end
309
+
310
+ def deserialize(params)
311
+ @Title = params['Title']
312
+ @Content = params['Content']
313
+ end
314
+ end
315
+
316
+ # ClassifyContent返回参数结构体
317
+ class ClassifyContentResponse < TencentCloud::Common::AbstractModel
318
+ # @param FirstClassification: 一级分类。分类详情见附录-三级分类体系表。
319
+ # @type FirstClassification: :class:`Tencentcloud::Nlp.v20190408.models.Category`
320
+ # @param SecondClassification: 二级分类。分类详情见附录-三级分类体系表。
321
+ # @type SecondClassification: :class:`Tencentcloud::Nlp.v20190408.models.Category`
322
+ # @param ThirdClassification: 三级分类。分类详情见附录-三级分类体系表。
323
+ # 注意:此字段可能返回 null,表示取不到有效值。
324
+ # @type ThirdClassification: :class:`Tencentcloud::Nlp.v20190408.models.Category`
325
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
326
+ # @type RequestId: String
327
+
328
+ attr_accessor :FirstClassification, :SecondClassification, :ThirdClassification, :RequestId
329
+
330
+ def initialize(firstclassification=nil, secondclassification=nil, thirdclassification=nil, requestid=nil)
331
+ @FirstClassification = firstclassification
332
+ @SecondClassification = secondclassification
333
+ @ThirdClassification = thirdclassification
334
+ @RequestId = requestid
335
+ end
336
+
337
+ def deserialize(params)
338
+ unless params['FirstClassification'].nil?
339
+ @FirstClassification = Category.new
340
+ @FirstClassification.deserialize(params['FirstClassification'])
341
+ end
342
+ unless params['SecondClassification'].nil?
343
+ @SecondClassification = Category.new
344
+ @SecondClassification.deserialize(params['SecondClassification'])
345
+ end
346
+ unless params['ThirdClassification'].nil?
347
+ @ThirdClassification = Category.new
348
+ @ThirdClassification.deserialize(params['ThirdClassification'])
349
+ end
350
+ @RequestId = params['RequestId']
351
+ end
352
+ end
353
+
354
+ # ComposeCouplet请求参数结构体
355
+ class ComposeCoupletRequest < TencentCloud::Common::AbstractModel
356
+ # @param Text: 生成对联的关键词。长度需>=2,当长度>2时,自动截取前两个字作为关键字。内容需为常用汉字(不含有数字、英文、韩语、日语、符号等等其他)。
357
+ # @type Text: String
358
+ # @param TargetType: 返回的文本结果为繁体还是简体。0:简体;1:繁体。默认为0。
359
+ # @type TargetType: Integer
360
+
361
+ attr_accessor :Text, :TargetType
362
+
363
+ def initialize(text=nil, targettype=nil)
364
+ @Text = text
365
+ @TargetType = targettype
366
+ end
367
+
368
+ def deserialize(params)
369
+ @Text = params['Text']
370
+ @TargetType = params['TargetType']
371
+ end
372
+ end
373
+
374
+ # ComposeCouplet返回参数结构体
375
+ class ComposeCoupletResponse < TencentCloud::Common::AbstractModel
376
+ # @param TopScroll: 横批。
377
+ # @type TopScroll: String
378
+ # @param Content: 上联与下联。
379
+ # @type Content: Array
380
+ # @param RandomCause: 当对联随机生成时,展示随机生成原因。
381
+ # @type RandomCause: String
382
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
383
+ # @type RequestId: String
384
+
385
+ attr_accessor :TopScroll, :Content, :RandomCause, :RequestId
386
+
387
+ def initialize(topscroll=nil, content=nil, randomcause=nil, requestid=nil)
388
+ @TopScroll = topscroll
389
+ @Content = content
390
+ @RandomCause = randomcause
391
+ @RequestId = requestid
392
+ end
393
+
394
+ def deserialize(params)
395
+ @TopScroll = params['TopScroll']
396
+ @Content = params['Content']
397
+ @RandomCause = params['RandomCause']
398
+ @RequestId = params['RequestId']
399
+ end
400
+ end
401
+
402
+ # ComposePoetry请求参数结构体
403
+ class ComposePoetryRequest < TencentCloud::Common::AbstractModel
404
+ # @param Text: 生成诗词的关键词。
405
+ # @type Text: String
406
+ # @param PoetryType: 生成诗词的类型。0:藏头或藏身;1:藏头;2:藏身。默认为0。
407
+ # @type PoetryType: Integer
408
+ # @param Genre: 诗的体裁。0:五言律诗或七言律诗;5:五言律诗;7:七言律诗。默认为0。
409
+ # @type Genre: Integer
410
+
411
+ attr_accessor :Text, :PoetryType, :Genre
412
+
413
+ def initialize(text=nil, poetrytype=nil, genre=nil)
414
+ @Text = text
415
+ @PoetryType = poetrytype
416
+ @Genre = genre
417
+ end
418
+
419
+ def deserialize(params)
420
+ @Text = params['Text']
421
+ @PoetryType = params['PoetryType']
422
+ @Genre = params['Genre']
423
+ end
424
+ end
425
+
426
+ # ComposePoetry返回参数结构体
427
+ class ComposePoetryResponse < TencentCloud::Common::AbstractModel
428
+ # @param Title: 诗题,即输入的生成诗词的关键词。
429
+ # @type Title: String
430
+ # @param Content: 诗的内容。
431
+ # @type Content: Array
432
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
433
+ # @type RequestId: String
434
+
435
+ attr_accessor :Title, :Content, :RequestId
436
+
437
+ def initialize(title=nil, content=nil, requestid=nil)
438
+ @Title = title
439
+ @Content = content
440
+ @RequestId = requestid
441
+ end
442
+
443
+ def deserialize(params)
444
+ @Title = params['Title']
445
+ @Content = params['Content']
446
+ @RequestId = params['RequestId']
447
+ end
448
+ end
449
+
213
450
  # 复合粒度分词和词性标注的结果。
214
451
  class CompoundParticiple < TencentCloud::Common::AbstractModel
215
452
  # @param Word: 基础词。
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-nlp
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.599
4
+ version: 3.0.601
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-06-26 00:00:00.000000000 Z
11
+ date: 2023-06-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common