tencentcloud-sdk-lke 3.0.1062 → 3.0.1064

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20231130/models.rb +279 -32
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 81c025adaf560011e5dba34530ba49095d9ee6c6
4
- data.tar.gz: d403e3838e362e11d30100868829296851916076
3
+ metadata.gz: fab5db83da0465d45fce74430762b37460db3fd9
4
+ data.tar.gz: 69af2a86bfb31c7d798f456b98715c2ebbe13c08
5
5
  SHA512:
6
- metadata.gz: d38871fb840fd9f3c7cbc723d591e969328f5fbc499c740ae1a232b802ab6786c0e6c03caecea1c88d7f71f7199b14653205a4b4c103f0ed28b18748608e5a85
7
- data.tar.gz: 38f37b75263fff3054f720941db49c4e1280fb6af41b3ce50f2680c60fd9f668d07fc478d78ca945d9067fc56e524b08d82d3032e69eb082c6544d04faf1be81
6
+ metadata.gz: 3482fd8ba95c9c102dca12239f73796c0faf557f1e986d2a8baf8d10769bb49908c2e80f22d179e2c8a430a8a496fef7c954f390bb44b084ddbf670921577140
7
+ data.tar.gz: 12e03941aecaceaef97cc12714146b9803c7b51822d4ed30d95b5bdd6fac358ec7046b8cfcd4fb66207ac8dc3ea62b88d135518d425bc501fda093bc3ed70929
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1062
1
+ 3.0.1064
@@ -17,6 +17,49 @@
17
17
  module TencentCloud
18
18
  module Lke
19
19
  module V20231130
20
+ # 智能通话
21
+ class AICallConfig < TencentCloud::Common::AbstractModel
22
+ # @param EnableVoiceInteract: 启用语音互动功能
23
+ # 注意:此字段可能返回 null,表示取不到有效值。
24
+ # @type EnableVoiceInteract: Boolean
25
+ # @param EnableVoiceCall: 启用语音通话
26
+ # 注意:此字段可能返回 null,表示取不到有效值。
27
+ # @type EnableVoiceCall: Boolean
28
+ # @param EnableDigitalHuman: 启用数智人
29
+ # 注意:此字段可能返回 null,表示取不到有效值。
30
+ # @type EnableDigitalHuman: Boolean
31
+ # @param Voice: 音色配置
32
+ # 注意:此字段可能返回 null,表示取不到有效值。
33
+ # @type Voice: :class:`Tencentcloud::Lke.v20231130.models.VoiceConfig`
34
+ # @param DigitalHuman: 数智人配置
35
+ # 注意:此字段可能返回 null,表示取不到有效值。
36
+ # @type DigitalHuman: :class:`Tencentcloud::Lke.v20231130.models.DigitalHumanConfig`
37
+
38
+ attr_accessor :EnableVoiceInteract, :EnableVoiceCall, :EnableDigitalHuman, :Voice, :DigitalHuman
39
+
40
+ def initialize(enablevoiceinteract=nil, enablevoicecall=nil, enabledigitalhuman=nil, voice=nil, digitalhuman=nil)
41
+ @EnableVoiceInteract = enablevoiceinteract
42
+ @EnableVoiceCall = enablevoicecall
43
+ @EnableDigitalHuman = enabledigitalhuman
44
+ @Voice = voice
45
+ @DigitalHuman = digitalhuman
46
+ end
47
+
48
+ def deserialize(params)
49
+ @EnableVoiceInteract = params['EnableVoiceInteract']
50
+ @EnableVoiceCall = params['EnableVoiceCall']
51
+ @EnableDigitalHuman = params['EnableDigitalHuman']
52
+ unless params['Voice'].nil?
53
+ @Voice = VoiceConfig.new
54
+ @Voice.deserialize(params['Voice'])
55
+ end
56
+ unless params['DigitalHuman'].nil?
57
+ @DigitalHuman = DigitalHumanConfig.new
58
+ @DigitalHuman.deserialize(params['DigitalHuman'])
59
+ end
60
+ end
61
+ end
62
+
20
63
  # Agent调试信息
21
64
  class AgentDebugInfo < TencentCloud::Common::AbstractModel
22
65
  # @param Input: 工具、大模型的输入信息,json
@@ -80,10 +123,13 @@ module TencentCloud
80
123
  # @param TargetAgentName: 挂号agent
81
124
  # 注意:此字段可能返回 null,表示取不到有效值。
82
125
  # @type TargetAgentName: String
126
+ # @param AgentIcon: Agent的图标
127
+ # 注意:此字段可能返回 null,表示取不到有效值。
128
+ # @type AgentIcon: String
83
129
 
84
- attr_accessor :Index, :Name, :Title, :Status, :Icon, :Debugging, :Switch, :WorkflowName, :Elapsed, :NodeName, :ReplyIndex, :SourceAgentName, :TargetAgentName
130
+ attr_accessor :Index, :Name, :Title, :Status, :Icon, :Debugging, :Switch, :WorkflowName, :Elapsed, :NodeName, :ReplyIndex, :SourceAgentName, :TargetAgentName, :AgentIcon
85
131
 
86
- def initialize(index=nil, name=nil, title=nil, status=nil, icon=nil, debugging=nil, switch=nil, workflowname=nil, elapsed=nil, nodename=nil, replyindex=nil, sourceagentname=nil, targetagentname=nil)
132
+ def initialize(index=nil, name=nil, title=nil, status=nil, icon=nil, debugging=nil, switch=nil, workflowname=nil, elapsed=nil, nodename=nil, replyindex=nil, sourceagentname=nil, targetagentname=nil, agenticon=nil)
87
133
  @Index = index
88
134
  @Name = name
89
135
  @Title = title
@@ -97,6 +143,7 @@ module TencentCloud
97
143
  @ReplyIndex = replyindex
98
144
  @SourceAgentName = sourceagentname
99
145
  @TargetAgentName = targetagentname
146
+ @AgentIcon = agenticon
100
147
  end
101
148
 
102
149
  def deserialize(params)
@@ -116,6 +163,7 @@ module TencentCloud
116
163
  @ReplyIndex = params['ReplyIndex']
117
164
  @SourceAgentName = params['SourceAgentName']
118
165
  @TargetAgentName = params['TargetAgentName']
166
+ @AgentIcon = params['AgentIcon']
119
167
  end
120
168
  end
121
169
 
@@ -136,15 +184,27 @@ module TencentCloud
136
184
  # @param References: 具体的参考来源
137
185
  # 注意:此字段可能返回 null,表示取不到有效值。
138
186
  # @type References: Array
187
+ # @param DisplayStatus: 展示正在执行的状态
188
+ # 注意:此字段可能返回 null,表示取不到有效值。
189
+ # @type DisplayStatus: String
190
+ # @param SandboxUrl: 云桌面的URL地址
191
+ # 注意:此字段可能返回 null,表示取不到有效值。
192
+ # @type SandboxUrl: String
193
+ # @param DisplayUrl: 云桌面里面通过浏览器打开的URL地址
194
+ # 注意:此字段可能返回 null,表示取不到有效值。
195
+ # @type DisplayUrl: String
139
196
 
140
- attr_accessor :Content, :DisplayContent, :DisplayType, :QuoteInfos, :References
197
+ attr_accessor :Content, :DisplayContent, :DisplayType, :QuoteInfos, :References, :DisplayStatus, :SandboxUrl, :DisplayUrl
141
198
 
142
- def initialize(content=nil, displaycontent=nil, displaytype=nil, quoteinfos=nil, references=nil)
199
+ def initialize(content=nil, displaycontent=nil, displaytype=nil, quoteinfos=nil, references=nil, displaystatus=nil, sandboxurl=nil, displayurl=nil)
143
200
  @Content = content
144
201
  @DisplayContent = displaycontent
145
202
  @DisplayType = displaytype
146
203
  @QuoteInfos = quoteinfos
147
204
  @References = references
205
+ @DisplayStatus = displaystatus
206
+ @SandboxUrl = sandboxurl
207
+ @DisplayUrl = displayurl
148
208
  end
149
209
 
150
210
  def deserialize(params)
@@ -167,6 +227,9 @@ module TencentCloud
167
227
  @References << agentreference_tmp
168
228
  end
169
229
  end
230
+ @DisplayStatus = params['DisplayStatus']
231
+ @SandboxUrl = params['SandboxUrl']
232
+ @DisplayUrl = params['DisplayUrl']
170
233
  end
171
234
  end
172
235
 
@@ -258,10 +321,13 @@ module TencentCloud
258
321
  # @param TraceId: TraceId
259
322
  # 注意:此字段可能返回 null,表示取不到有效值。
260
323
  # @type TraceId: String
324
+ # @param Files: 文件信息
325
+ # 注意:此字段可能返回 null,表示取不到有效值。
326
+ # @type Files: Array
261
327
 
262
- attr_accessor :SessionId, :RequestId, :RecordId, :Elapsed, :IsWorkflow, :WorkflowName, :Procedures, :TraceId
328
+ attr_accessor :SessionId, :RequestId, :RecordId, :Elapsed, :IsWorkflow, :WorkflowName, :Procedures, :TraceId, :Files
263
329
 
264
- def initialize(sessionid=nil, requestid=nil, recordid=nil, elapsed=nil, isworkflow=nil, workflowname=nil, procedures=nil, traceid=nil)
330
+ def initialize(sessionid=nil, requestid=nil, recordid=nil, elapsed=nil, isworkflow=nil, workflowname=nil, procedures=nil, traceid=nil, files=nil)
265
331
  @SessionId = sessionid
266
332
  @RequestId = requestid
267
333
  @RecordId = recordid
@@ -270,6 +336,7 @@ module TencentCloud
270
336
  @WorkflowName = workflowname
271
337
  @Procedures = procedures
272
338
  @TraceId = traceid
339
+ @Files = files
273
340
  end
274
341
 
275
342
  def deserialize(params)
@@ -288,6 +355,14 @@ module TencentCloud
288
355
  end
289
356
  end
290
357
  @TraceId = params['TraceId']
358
+ unless params['Files'].nil?
359
+ @Files = []
360
+ params['Files'].each do |i|
361
+ fileinfo_tmp = FileInfo.new
362
+ fileinfo_tmp.deserialize(i)
363
+ @Files << fileinfo_tmp
364
+ end
365
+ end
291
366
  end
292
367
  end
293
368
 
@@ -1713,19 +1788,24 @@ module TencentCloud
1713
1788
  # @param TmpSecretKey: 临时证书密钥Key
1714
1789
  # 注意:此字段可能返回 null,表示取不到有效值。
1715
1790
  # @type TmpSecretKey: String
1791
+ # @param AppId: 临时证书appid
1792
+ # 注意:此字段可能返回 null,表示取不到有效值。
1793
+ # @type AppId: Integer
1716
1794
 
1717
- attr_accessor :Token, :TmpSecretId, :TmpSecretKey
1795
+ attr_accessor :Token, :TmpSecretId, :TmpSecretKey, :AppId
1718
1796
 
1719
- def initialize(token=nil, tmpsecretid=nil, tmpsecretkey=nil)
1797
+ def initialize(token=nil, tmpsecretid=nil, tmpsecretkey=nil, appid=nil)
1720
1798
  @Token = token
1721
1799
  @TmpSecretId = tmpsecretid
1722
1800
  @TmpSecretKey = tmpsecretkey
1801
+ @AppId = appid
1723
1802
  end
1724
1803
 
1725
1804
  def deserialize(params)
1726
1805
  @Token = params['Token']
1727
1806
  @TmpSecretId = params['TmpSecretId']
1728
1807
  @TmpSecretKey = params['TmpSecretKey']
1808
+ @AppId = params['AppId']
1729
1809
  end
1730
1810
  end
1731
1811
 
@@ -3480,6 +3560,30 @@ module TencentCloud
3480
3560
  end
3481
3561
  end
3482
3562
 
3563
+ # 数智人配置
3564
+ class DigitalHumanConfig < TencentCloud::Common::AbstractModel
3565
+ # @param AssetKey: 数智人资产key
3566
+ # @type AssetKey: String
3567
+ # @param Name: 数智人名称
3568
+ # @type Name: String
3569
+ # @param Avatar: 图像
3570
+ # @type Avatar: String
3571
+
3572
+ attr_accessor :AssetKey, :Name, :Avatar
3573
+
3574
+ def initialize(assetkey=nil, name=nil, avatar=nil)
3575
+ @AssetKey = assetkey
3576
+ @Name = name
3577
+ @Avatar = avatar
3578
+ end
3579
+
3580
+ def deserialize(params)
3581
+ @AssetKey = params['AssetKey']
3582
+ @Name = params['Name']
3583
+ @Avatar = params['Avatar']
3584
+ end
3585
+ end
3586
+
3483
3587
  # 文档列表筛选标识位
3484
3588
  class DocFilterFlag < TencentCloud::Common::AbstractModel
3485
3589
  # @param Flag: 标识位
@@ -3882,15 +3986,19 @@ module TencentCloud
3882
3986
  # @param DocId: 解析后返回的DocID
3883
3987
  # 注意:此字段可能返回 null,表示取不到有效值。
3884
3988
  # @type DocId: String
3989
+ # @param CreatedAt: 创建时间
3990
+ # 注意:此字段可能返回 null,表示取不到有效值。
3991
+ # @type CreatedAt: String
3885
3992
 
3886
- attr_accessor :FileName, :FileSize, :FileUrl, :FileType, :DocId
3993
+ attr_accessor :FileName, :FileSize, :FileUrl, :FileType, :DocId, :CreatedAt
3887
3994
 
3888
- def initialize(filename=nil, filesize=nil, fileurl=nil, filetype=nil, docid=nil)
3995
+ def initialize(filename=nil, filesize=nil, fileurl=nil, filetype=nil, docid=nil, createdat=nil)
3889
3996
  @FileName = filename
3890
3997
  @FileSize = filesize
3891
3998
  @FileUrl = fileurl
3892
3999
  @FileType = filetype
3893
4000
  @DocId = docid
4001
+ @CreatedAt = createdat
3894
4002
  end
3895
4003
 
3896
4004
  def deserialize(params)
@@ -3899,6 +4007,7 @@ module TencentCloud
3899
4007
  @FileUrl = params['FileUrl']
3900
4008
  @FileType = params['FileType']
3901
4009
  @DocId = params['DocId']
4010
+ @CreatedAt = params['CreatedAt']
3902
4011
  end
3903
4012
  end
3904
4013
 
@@ -4357,28 +4466,32 @@ module TencentCloud
4357
4466
  class GetMsgRecordRequest < TencentCloud::Common::AbstractModel
4358
4467
  # @param Type: 类型
4359
4468
  # @type Type: Integer
4360
- # @param Count: 数量, 数量需大于2
4469
+ # @param Count: 数量, 数量需大于2, 最大1000
4361
4470
  # @type Count: Integer
4362
4471
  # @param SessionId: 会话sessionid
4363
4472
  # @type SessionId: String
4364
- # @param LastRecordId: 最后一条记录ID
4365
- # @type LastRecordId: String
4366
4473
  # @param BotAppKey: 应用AppKey, 当Type=5[API访客]时, 该字段必填 :</br> 获取方式:</br> 1、应用发布后在应用页面[发布管理]-[调用信息]-[API管理]处获取</br> 2、参考 https://cloud.tencent.com/document/product/1759/109469 第二项
4367
4474
  # @type BotAppKey: String
4368
4475
  # @param Scene: 场景, 体验: 1; 正式: 2
4369
4476
  # @type Scene: Integer
4477
+ # @param LastRecordId: 最后一条记录ID, 消息从后往前获取
4478
+
4479
+ # MidRecordId与LastRecordId只能选择一个
4480
+ # @type LastRecordId: String
4370
4481
  # @param MidRecordId: 传该值,代表拉取该记录id的前后总共count条消息记录
4482
+
4483
+ # MidRecordId与LastRecordId只能选择一个
4371
4484
  # @type MidRecordId: String
4372
4485
 
4373
- attr_accessor :Type, :Count, :SessionId, :LastRecordId, :BotAppKey, :Scene, :MidRecordId
4486
+ attr_accessor :Type, :Count, :SessionId, :BotAppKey, :Scene, :LastRecordId, :MidRecordId
4374
4487
 
4375
- def initialize(type=nil, count=nil, sessionid=nil, lastrecordid=nil, botappkey=nil, scene=nil, midrecordid=nil)
4488
+ def initialize(type=nil, count=nil, sessionid=nil, botappkey=nil, scene=nil, lastrecordid=nil, midrecordid=nil)
4376
4489
  @Type = type
4377
4490
  @Count = count
4378
4491
  @SessionId = sessionid
4379
- @LastRecordId = lastrecordid
4380
4492
  @BotAppKey = botappkey
4381
4493
  @Scene = scene
4494
+ @LastRecordId = lastrecordid
4382
4495
  @MidRecordId = midrecordid
4383
4496
  end
4384
4497
 
@@ -4386,9 +4499,9 @@ module TencentCloud
4386
4499
  @Type = params['Type']
4387
4500
  @Count = params['Count']
4388
4501
  @SessionId = params['SessionId']
4389
- @LastRecordId = params['LastRecordId']
4390
4502
  @BotAppKey = params['BotAppKey']
4391
4503
  @Scene = params['Scene']
4504
+ @LastRecordId = params['LastRecordId']
4392
4505
  @MidRecordId = params['MidRecordId']
4393
4506
  end
4394
4507
  end
@@ -5129,10 +5242,13 @@ module TencentCloud
5129
5242
  # @param ImageTextRetrieval: 是否开启图文检索
5130
5243
  # 注意:此字段可能返回 null,表示取不到有效值。
5131
5244
  # @type ImageTextRetrieval: Boolean
5245
+ # @param AiCall: 配置语音通话参数
5246
+ # 注意:此字段可能返回 null,表示取不到有效值。
5247
+ # @type AiCall: :class:`Tencentcloud::Lke.v20231130.models.AICallConfig`
5132
5248
 
5133
- attr_accessor :Greeting, :RoleDescription, :Model, :Search, :Output, :Workflow, :SearchRange, :Pattern, :SearchStrategy, :SingleWorkflow, :Plugins, :ThoughtModel, :IntentAchievements, :ImageTextRetrieval
5249
+ attr_accessor :Greeting, :RoleDescription, :Model, :Search, :Output, :Workflow, :SearchRange, :Pattern, :SearchStrategy, :SingleWorkflow, :Plugins, :ThoughtModel, :IntentAchievements, :ImageTextRetrieval, :AiCall
5134
5250
 
5135
- def initialize(greeting=nil, roledescription=nil, model=nil, search=nil, output=nil, workflow=nil, searchrange=nil, pattern=nil, searchstrategy=nil, singleworkflow=nil, plugins=nil, thoughtmodel=nil, intentachievements=nil, imagetextretrieval=nil)
5251
+ def initialize(greeting=nil, roledescription=nil, model=nil, search=nil, output=nil, workflow=nil, searchrange=nil, pattern=nil, searchstrategy=nil, singleworkflow=nil, plugins=nil, thoughtmodel=nil, intentachievements=nil, imagetextretrieval=nil, aicall=nil)
5136
5252
  @Greeting = greeting
5137
5253
  @RoleDescription = roledescription
5138
5254
  @Model = model
@@ -5147,6 +5263,7 @@ module TencentCloud
5147
5263
  @ThoughtModel = thoughtmodel
5148
5264
  @IntentAchievements = intentachievements
5149
5265
  @ImageTextRetrieval = imagetextretrieval
5266
+ @AiCall = aicall
5150
5267
  end
5151
5268
 
5152
5269
  def deserialize(params)
@@ -5206,6 +5323,10 @@ module TencentCloud
5206
5323
  end
5207
5324
  end
5208
5325
  @ImageTextRetrieval = params['ImageTextRetrieval']
5326
+ unless params['AiCall'].nil?
5327
+ @AiCall = AICallConfig.new
5328
+ @AiCall.deserialize(params['AiCall'])
5329
+ end
5209
5330
  end
5210
5331
  end
5211
5332
 
@@ -5377,15 +5498,18 @@ module TencentCloud
5377
5498
  # @type Status: String
5378
5499
  # @param IsEnable: 工作流是否启用
5379
5500
  # @type IsEnable: Boolean
5501
+ # @param AsyncWorkflow: 是否开启异步调用工作流
5502
+ # @type AsyncWorkflow: Boolean
5380
5503
 
5381
- attr_accessor :WorkflowId, :WorkflowName, :WorkflowDesc, :Status, :IsEnable
5504
+ attr_accessor :WorkflowId, :WorkflowName, :WorkflowDesc, :Status, :IsEnable, :AsyncWorkflow
5382
5505
 
5383
- def initialize(workflowid=nil, workflowname=nil, workflowdesc=nil, status=nil, isenable=nil)
5506
+ def initialize(workflowid=nil, workflowname=nil, workflowdesc=nil, status=nil, isenable=nil, asyncworkflow=nil)
5384
5507
  @WorkflowId = workflowid
5385
5508
  @WorkflowName = workflowname
5386
5509
  @WorkflowDesc = workflowdesc
5387
5510
  @Status = status
5388
5511
  @IsEnable = isenable
5512
+ @AsyncWorkflow = asyncworkflow
5389
5513
  end
5390
5514
 
5391
5515
  def deserialize(params)
@@ -5394,6 +5518,7 @@ module TencentCloud
5394
5518
  @WorkflowDesc = params['WorkflowDesc']
5395
5519
  @Status = params['Status']
5396
5520
  @IsEnable = params['IsEnable']
5521
+ @AsyncWorkflow = params['AsyncWorkflow']
5397
5522
  end
5398
5523
  end
5399
5524
 
@@ -7092,10 +7217,12 @@ module TencentCloud
7092
7217
  # @type RoleLenLimit: Integer
7093
7218
  # @param IsExclusive: 是否专属并发模型
7094
7219
  # @type IsExclusive: Boolean
7220
+ # @param SupportAiCallStatus: 模型支持智能通话效果
7221
+ # @type SupportAiCallStatus: Integer
7095
7222
 
7096
- attr_accessor :ModelName, :ModelDesc, :AliasName, :ResourceStatus, :PromptWordsLimit, :TopP, :Temperature, :MaxTokens, :Source, :Icon, :IsFree, :InputLenLimit, :SupportWorkflowStatus, :ModelCategory, :IsDefault, :RoleLenLimit, :IsExclusive
7223
+ attr_accessor :ModelName, :ModelDesc, :AliasName, :ResourceStatus, :PromptWordsLimit, :TopP, :Temperature, :MaxTokens, :Source, :Icon, :IsFree, :InputLenLimit, :SupportWorkflowStatus, :ModelCategory, :IsDefault, :RoleLenLimit, :IsExclusive, :SupportAiCallStatus
7097
7224
 
7098
- def initialize(modelname=nil, modeldesc=nil, aliasname=nil, resourcestatus=nil, promptwordslimit=nil, topp=nil, temperature=nil, maxtokens=nil, source=nil, icon=nil, isfree=nil, inputlenlimit=nil, supportworkflowstatus=nil, modelcategory=nil, isdefault=nil, rolelenlimit=nil, isexclusive=nil)
7225
+ def initialize(modelname=nil, modeldesc=nil, aliasname=nil, resourcestatus=nil, promptwordslimit=nil, topp=nil, temperature=nil, maxtokens=nil, source=nil, icon=nil, isfree=nil, inputlenlimit=nil, supportworkflowstatus=nil, modelcategory=nil, isdefault=nil, rolelenlimit=nil, isexclusive=nil, supportaicallstatus=nil)
7099
7226
  @ModelName = modelname
7100
7227
  @ModelDesc = modeldesc
7101
7228
  @AliasName = aliasname
@@ -7113,6 +7240,7 @@ module TencentCloud
7113
7240
  @IsDefault = isdefault
7114
7241
  @RoleLenLimit = rolelenlimit
7115
7242
  @IsExclusive = isexclusive
7243
+ @SupportAiCallStatus = supportaicallstatus
7116
7244
  end
7117
7245
 
7118
7246
  def deserialize(params)
@@ -7142,6 +7270,7 @@ module TencentCloud
7142
7270
  @IsDefault = params['IsDefault']
7143
7271
  @RoleLenLimit = params['RoleLenLimit']
7144
7272
  @IsExclusive = params['IsExclusive']
7273
+ @SupportAiCallStatus = params['SupportAiCallStatus']
7145
7274
  end
7146
7275
  end
7147
7276
 
@@ -7827,10 +7956,13 @@ module TencentCloud
7827
7956
  # @param ExtraInfo: 扩展信息
7828
7957
  # 注意:此字段可能返回 null,表示取不到有效值。
7829
7958
  # @type ExtraInfo: :class:`Tencentcloud::Lke.v20231130.models.ExtraInfo`
7959
+ # @param WorkFlow: 工作流信息
7960
+ # 注意:此字段可能返回 null,表示取不到有效值。
7961
+ # @type WorkFlow: :class:`Tencentcloud::Lke.v20231130.models.WorkflowInfo`
7830
7962
 
7831
- attr_accessor :Content, :SessionId, :RecordId, :RelatedRecordId, :IsFromSelf, :FromName, :FromAvatar, :Timestamp, :HasRead, :Score, :CanRating, :CanFeedback, :Type, :References, :Reasons, :IsLlmGenerated, :ImageUrls, :TokenStat, :ReplyMethod, :OptionCards, :TaskFlow, :FileInfos, :QuoteInfos, :AgentThought, :ExtraInfo
7963
+ attr_accessor :Content, :SessionId, :RecordId, :RelatedRecordId, :IsFromSelf, :FromName, :FromAvatar, :Timestamp, :HasRead, :Score, :CanRating, :CanFeedback, :Type, :References, :Reasons, :IsLlmGenerated, :ImageUrls, :TokenStat, :ReplyMethod, :OptionCards, :TaskFlow, :FileInfos, :QuoteInfos, :AgentThought, :ExtraInfo, :WorkFlow
7832
7964
 
7833
- def initialize(content=nil, sessionid=nil, recordid=nil, relatedrecordid=nil, isfromself=nil, fromname=nil, fromavatar=nil, timestamp=nil, hasread=nil, score=nil, canrating=nil, canfeedback=nil, type=nil, references=nil, reasons=nil, isllmgenerated=nil, imageurls=nil, tokenstat=nil, replymethod=nil, optioncards=nil, taskflow=nil, fileinfos=nil, quoteinfos=nil, agentthought=nil, extrainfo=nil)
7965
+ def initialize(content=nil, sessionid=nil, recordid=nil, relatedrecordid=nil, isfromself=nil, fromname=nil, fromavatar=nil, timestamp=nil, hasread=nil, score=nil, canrating=nil, canfeedback=nil, type=nil, references=nil, reasons=nil, isllmgenerated=nil, imageurls=nil, tokenstat=nil, replymethod=nil, optioncards=nil, taskflow=nil, fileinfos=nil, quoteinfos=nil, agentthought=nil, extrainfo=nil, workflow=nil)
7834
7966
  @Content = content
7835
7967
  @SessionId = sessionid
7836
7968
  @RecordId = recordid
@@ -7856,6 +7988,7 @@ module TencentCloud
7856
7988
  @QuoteInfos = quoteinfos
7857
7989
  @AgentThought = agentthought
7858
7990
  @ExtraInfo = extrainfo
7991
+ @WorkFlow = workflow
7859
7992
  end
7860
7993
 
7861
7994
  def deserialize(params)
@@ -7917,6 +8050,10 @@ module TencentCloud
7917
8050
  @ExtraInfo = ExtraInfo.new
7918
8051
  @ExtraInfo.deserialize(params['ExtraInfo'])
7919
8052
  end
8053
+ unless params['WorkFlow'].nil?
8054
+ @WorkFlow = WorkflowInfo.new
8055
+ @WorkFlow.deserialize(params['WorkFlow'])
8056
+ end
7920
8057
  end
7921
8058
  end
7922
8059
 
@@ -7990,7 +8127,7 @@ module TencentCloud
7990
8127
  # @type Name: String
7991
8128
  # @param Desc: 参数描述
7992
8129
  # @type Desc: String
7993
- # @param Type: 参数类型,0:string, 1:int, 2:float,3:bool 4:object 5:array_string, 6:array_int, 7:array_float, 8:array_bool, 9:array_object
8130
+ # @param Type: 参数类型,0:string, 1:int, 2:float,3:bool 4:object 5:array_string, 6:array_int, 7:array_float, 8:array_bool, 9:array_object, 99:null, 100:upspecified
7994
8131
  # @type Type: Integer
7995
8132
  # @param IsRequired: 参数是否必填
7996
8133
  # @type IsRequired: Boolean
@@ -8000,10 +8137,14 @@ module TencentCloud
8000
8137
  # @type SubParams: Array
8001
8138
  # @param GlobalHidden: 插件参数配置是否隐藏不可见,true-隐藏不可见,false-可见
8002
8139
  # @type GlobalHidden: Boolean
8140
+ # @param OneOf: OneOf类型参数
8141
+ # @type OneOf: Array
8142
+ # @param AnyOf: AnyOf类型参数
8143
+ # @type AnyOf: Array
8003
8144
 
8004
- attr_accessor :Name, :Desc, :Type, :IsRequired, :DefaultValue, :SubParams, :GlobalHidden
8145
+ attr_accessor :Name, :Desc, :Type, :IsRequired, :DefaultValue, :SubParams, :GlobalHidden, :OneOf, :AnyOf
8005
8146
 
8006
- def initialize(name=nil, desc=nil, type=nil, isrequired=nil, defaultvalue=nil, subparams=nil, globalhidden=nil)
8147
+ def initialize(name=nil, desc=nil, type=nil, isrequired=nil, defaultvalue=nil, subparams=nil, globalhidden=nil, oneof=nil, anyof=nil)
8007
8148
  @Name = name
8008
8149
  @Desc = desc
8009
8150
  @Type = type
@@ -8011,6 +8152,8 @@ module TencentCloud
8011
8152
  @DefaultValue = defaultvalue
8012
8153
  @SubParams = subparams
8013
8154
  @GlobalHidden = globalhidden
8155
+ @OneOf = oneof
8156
+ @AnyOf = anyof
8014
8157
  end
8015
8158
 
8016
8159
  def deserialize(params)
@@ -8028,6 +8171,22 @@ module TencentCloud
8028
8171
  end
8029
8172
  end
8030
8173
  @GlobalHidden = params['GlobalHidden']
8174
+ unless params['OneOf'].nil?
8175
+ @OneOf = []
8176
+ params['OneOf'].each do |i|
8177
+ plugintoolreqparam_tmp = PluginToolReqParam.new
8178
+ plugintoolreqparam_tmp.deserialize(i)
8179
+ @OneOf << plugintoolreqparam_tmp
8180
+ end
8181
+ end
8182
+ unless params['AnyOf'].nil?
8183
+ @AnyOf = []
8184
+ params['AnyOf'].each do |i|
8185
+ plugintoolreqparam_tmp = PluginToolReqParam.new
8186
+ plugintoolreqparam_tmp.deserialize(i)
8187
+ @AnyOf << plugintoolreqparam_tmp
8188
+ end
8189
+ end
8031
8190
  end
8032
8191
  end
8033
8192
 
@@ -8140,10 +8299,12 @@ module TencentCloud
8140
8299
  # @param Agent: Agent调试信息
8141
8300
  # 注意:此字段可能返回 null,表示取不到有效值。
8142
8301
  # @type Agent: :class:`Tencentcloud::Lke.v20231130.models.AgentDebugInfo`
8302
+ # @param CustomVariables: 自定义参数
8303
+ # @type CustomVariables: Array
8143
8304
 
8144
- attr_accessor :Content, :System, :Histories, :Knowledge, :TaskFlow, :WorkFlow, :Agent
8305
+ attr_accessor :Content, :System, :Histories, :Knowledge, :TaskFlow, :WorkFlow, :Agent, :CustomVariables
8145
8306
 
8146
- def initialize(content=nil, system=nil, histories=nil, knowledge=nil, taskflow=nil, workflow=nil, agent=nil)
8307
+ def initialize(content=nil, system=nil, histories=nil, knowledge=nil, taskflow=nil, workflow=nil, agent=nil, customvariables=nil)
8147
8308
  @Content = content
8148
8309
  @System = system
8149
8310
  @Histories = histories
@@ -8151,6 +8312,7 @@ module TencentCloud
8151
8312
  @TaskFlow = taskflow
8152
8313
  @WorkFlow = workflow
8153
8314
  @Agent = agent
8315
+ @CustomVariables = customvariables
8154
8316
  end
8155
8317
 
8156
8318
  def deserialize(params)
@@ -8184,6 +8346,7 @@ module TencentCloud
8184
8346
  @Agent = AgentDebugInfo.new
8185
8347
  @Agent.deserialize(params['Agent'])
8186
8348
  end
8349
+ @CustomVariables = params['CustomVariables']
8187
8350
  end
8188
8351
  end
8189
8352
 
@@ -10068,6 +10231,33 @@ module TencentCloud
10068
10231
  end
10069
10232
  end
10070
10233
 
10234
+ # 音色参数
10235
+ class VoiceConfig < TencentCloud::Common::AbstractModel
10236
+ # @param VoiceType: 公有云音色id
10237
+ # 注意:此字段可能返回 null,表示取不到有效值。
10238
+ # @type VoiceType: Integer
10239
+ # @param TimbreKey: 音色key
10240
+ # 注意:此字段可能返回 null,表示取不到有效值。
10241
+ # @type TimbreKey: String
10242
+ # @param VoiceName: 音色名称
10243
+ # 注意:此字段可能返回 null,表示取不到有效值。
10244
+ # @type VoiceName: String
10245
+
10246
+ attr_accessor :VoiceType, :TimbreKey, :VoiceName
10247
+
10248
+ def initialize(voicetype=nil, timbrekey=nil, voicename=nil)
10249
+ @VoiceType = voicetype
10250
+ @TimbreKey = timbrekey
10251
+ @VoiceName = voicename
10252
+ end
10253
+
10254
+ def deserialize(params)
10255
+ @VoiceType = params['VoiceType']
10256
+ @TimbreKey = params['TimbreKey']
10257
+ @VoiceName = params['VoiceName']
10258
+ end
10259
+ end
10260
+
10071
10261
  # 解析为 word 文档的结果
10072
10262
  class WordRecognizeInfo < TencentCloud::Common::AbstractModel
10073
10263
  # @param PageNumber: 输入文件的页码数
@@ -10104,14 +10294,26 @@ module TencentCloud
10104
10294
  # @param RunNodes: 节点信息
10105
10295
  # 注意:此字段可能返回 null,表示取不到有效值。
10106
10296
  # @type RunNodes: Array
10297
+ # @param OptionCards: 选项卡
10298
+ # 注意:此字段可能返回 null,表示取不到有效值。
10299
+ # @type OptionCards: Array
10300
+ # @param Outputs: 多气泡的输出结果
10301
+ # 注意:此字段可能返回 null,表示取不到有效值。
10302
+ # @type Outputs: Array
10303
+ # @param WorkflowReleaseTime: 工作流发布时间,unix时间戳
10304
+ # 注意:此字段可能返回 null,表示取不到有效值。
10305
+ # @type WorkflowReleaseTime: String
10107
10306
 
10108
- attr_accessor :WorkflowId, :WorkflowName, :WorkflowRunId, :RunNodes
10307
+ attr_accessor :WorkflowId, :WorkflowName, :WorkflowRunId, :RunNodes, :OptionCards, :Outputs, :WorkflowReleaseTime
10109
10308
 
10110
- def initialize(workflowid=nil, workflowname=nil, workflowrunid=nil, runnodes=nil)
10309
+ def initialize(workflowid=nil, workflowname=nil, workflowrunid=nil, runnodes=nil, optioncards=nil, outputs=nil, workflowreleasetime=nil)
10111
10310
  @WorkflowId = workflowid
10112
10311
  @WorkflowName = workflowname
10113
10312
  @WorkflowRunId = workflowrunid
10114
10313
  @RunNodes = runnodes
10314
+ @OptionCards = optioncards
10315
+ @Outputs = outputs
10316
+ @WorkflowReleaseTime = workflowreleasetime
10115
10317
  end
10116
10318
 
10117
10319
  def deserialize(params)
@@ -10126,6 +10328,51 @@ module TencentCloud
10126
10328
  @RunNodes << workflowrunnodeinfo_tmp
10127
10329
  end
10128
10330
  end
10331
+ @OptionCards = params['OptionCards']
10332
+ @Outputs = params['Outputs']
10333
+ @WorkflowReleaseTime = params['WorkflowReleaseTime']
10334
+ end
10335
+ end
10336
+
10337
+ # 工作流信息
10338
+ class WorkflowInfo < TencentCloud::Common::AbstractModel
10339
+ # @param WorkflowId: 工作流ID
10340
+ # 注意:此字段可能返回 null,表示取不到有效值。
10341
+ # @type WorkflowId: String
10342
+ # @param WorkflowName: 工作流名称
10343
+ # 注意:此字段可能返回 null,表示取不到有效值。
10344
+ # @type WorkflowName: String
10345
+ # @param WorkflowRunId: 工作流运行ID
10346
+ # 注意:此字段可能返回 null,表示取不到有效值。
10347
+ # @type WorkflowRunId: String
10348
+ # @param OptionCards: 选项卡
10349
+ # 注意:此字段可能返回 null,表示取不到有效值。
10350
+ # @type OptionCards: Array
10351
+ # @param Outputs: 多气泡的输出结果
10352
+ # 注意:此字段可能返回 null,表示取不到有效值。
10353
+ # @type Outputs: Array
10354
+ # @param WorkflowReleaseTime: 工作流发布时间,unix时间戳
10355
+ # 注意:此字段可能返回 null,表示取不到有效值。
10356
+ # @type WorkflowReleaseTime: String
10357
+
10358
+ attr_accessor :WorkflowId, :WorkflowName, :WorkflowRunId, :OptionCards, :Outputs, :WorkflowReleaseTime
10359
+
10360
+ def initialize(workflowid=nil, workflowname=nil, workflowrunid=nil, optioncards=nil, outputs=nil, workflowreleasetime=nil)
10361
+ @WorkflowId = workflowid
10362
+ @WorkflowName = workflowname
10363
+ @WorkflowRunId = workflowrunid
10364
+ @OptionCards = optioncards
10365
+ @Outputs = outputs
10366
+ @WorkflowReleaseTime = workflowreleasetime
10367
+ end
10368
+
10369
+ def deserialize(params)
10370
+ @WorkflowId = params['WorkflowId']
10371
+ @WorkflowName = params['WorkflowName']
10372
+ @WorkflowRunId = params['WorkflowRunId']
10373
+ @OptionCards = params['OptionCards']
10374
+ @Outputs = params['Outputs']
10375
+ @WorkflowReleaseTime = params['WorkflowReleaseTime']
10129
10376
  end
10130
10377
  end
10131
10378
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-lke
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1062
4
+ version: 3.0.1064
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-05-19 00:00:00.000000000 Z
11
+ date: 2025-05-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common