tencentcloud-sdk-lke 3.0.1094 → 3.0.1098
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/v20231130/models.rb +154 -23
- 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: a26e8eda18bbf40a0402d1b748e080eb99b89a1c
|
4
|
+
data.tar.gz: bc4c31c2eb195ed930751826b4d9c92c4acc5129
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 553898c478a5589256980e1ce524fa3d7fa5607ca0a3d889a83d14519bbe07a8983091d8f765bc12dd9b6277fcc15ef8fa1e9f8e3db1d123dbe9b3639b040bd6
|
7
|
+
data.tar.gz: 4cc38727eb8d7c725e8fbd9886d60dc81802a03c1578b8cf92c2d2d23b00417928a56c6d1e2f5c8c34c6b0c9390e193b855bac3b879c29267ad9f67974a8c02e
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1098
|
data/lib/v20231130/models.rb
CHANGED
@@ -202,6 +202,49 @@ module TencentCloud
|
|
202
202
|
end
|
203
203
|
end
|
204
204
|
|
205
|
+
# Agent 知识库检索插件支持多知识库搜索
|
206
|
+
class AgentKnowledge < TencentCloud::Common::AbstractModel
|
207
|
+
# @param KnowledgeBizId: 知识库id
|
208
|
+
# @type KnowledgeBizId: String
|
209
|
+
# @param KnowledgeType: 0-应用内知识库
|
210
|
+
# 1-共享知识库
|
211
|
+
# @type KnowledgeType: Integer
|
212
|
+
# @param Filter: 0-全部知识
|
213
|
+
# 1-按文档和问答
|
214
|
+
# 2-按标签
|
215
|
+
# @type Filter: Integer
|
216
|
+
# @param DocBizIds: 文档id
|
217
|
+
# @type DocBizIds: Array
|
218
|
+
# @param AllQa: true:包含所有问答
|
219
|
+
# false:不包含问答
|
220
|
+
# @type AllQa: Boolean
|
221
|
+
# @param Tag: 文档标签过滤器
|
222
|
+
# @type Tag: :class:`Tencentcloud::Lke.v20231130.models.AgentKnowledgeFilterTag`
|
223
|
+
|
224
|
+
attr_accessor :KnowledgeBizId, :KnowledgeType, :Filter, :DocBizIds, :AllQa, :Tag
|
225
|
+
|
226
|
+
def initialize(knowledgebizid=nil, knowledgetype=nil, filter=nil, docbizids=nil, allqa=nil, tag=nil)
|
227
|
+
@KnowledgeBizId = knowledgebizid
|
228
|
+
@KnowledgeType = knowledgetype
|
229
|
+
@Filter = filter
|
230
|
+
@DocBizIds = docbizids
|
231
|
+
@AllQa = allqa
|
232
|
+
@Tag = tag
|
233
|
+
end
|
234
|
+
|
235
|
+
def deserialize(params)
|
236
|
+
@KnowledgeBizId = params['KnowledgeBizId']
|
237
|
+
@KnowledgeType = params['KnowledgeType']
|
238
|
+
@Filter = params['Filter']
|
239
|
+
@DocBizIds = params['DocBizIds']
|
240
|
+
@AllQa = params['AllQa']
|
241
|
+
unless params['Tag'].nil?
|
242
|
+
@Tag = AgentKnowledgeFilterTag.new
|
243
|
+
@Tag.deserialize(params['Tag'])
|
244
|
+
end
|
245
|
+
end
|
246
|
+
end
|
247
|
+
|
205
248
|
# 标签过滤器
|
206
249
|
class AgentKnowledgeAttrLabel < TencentCloud::Common::AbstractModel
|
207
250
|
# @param AttributeBizId: 属性ID
|
@@ -237,13 +280,19 @@ module TencentCloud
|
|
237
280
|
# @type DocAndAnswer: :class:`Tencentcloud::Lke.v20231130.models.AgentKnowledgeFilterDocAndAnswer`
|
238
281
|
# @param Tag: 标签过滤器
|
239
282
|
# @type Tag: :class:`Tencentcloud::Lke.v20231130.models.AgentKnowledgeFilterTag`
|
283
|
+
# @param KnowledgeList: 知识库列表
|
284
|
+
# @type KnowledgeList: Array
|
285
|
+
# @param AllKnowledge: 是否检索全部知识
|
286
|
+
# @type AllKnowledge: Boolean
|
240
287
|
|
241
|
-
attr_accessor :FilterType, :DocAndAnswer, :Tag
|
288
|
+
attr_accessor :FilterType, :DocAndAnswer, :Tag, :KnowledgeList, :AllKnowledge
|
242
289
|
|
243
|
-
def initialize(filtertype=nil, docandanswer=nil, tag=nil)
|
290
|
+
def initialize(filtertype=nil, docandanswer=nil, tag=nil, knowledgelist=nil, allknowledge=nil)
|
244
291
|
@FilterType = filtertype
|
245
292
|
@DocAndAnswer = docandanswer
|
246
293
|
@Tag = tag
|
294
|
+
@KnowledgeList = knowledgelist
|
295
|
+
@AllKnowledge = allknowledge
|
247
296
|
end
|
248
297
|
|
249
298
|
def deserialize(params)
|
@@ -256,6 +305,15 @@ module TencentCloud
|
|
256
305
|
@Tag = AgentKnowledgeFilterTag.new
|
257
306
|
@Tag.deserialize(params['Tag'])
|
258
307
|
end
|
308
|
+
unless params['KnowledgeList'].nil?
|
309
|
+
@KnowledgeList = []
|
310
|
+
params['KnowledgeList'].each do |i|
|
311
|
+
agentknowledge_tmp = AgentKnowledge.new
|
312
|
+
agentknowledge_tmp.deserialize(i)
|
313
|
+
@KnowledgeList << agentknowledge_tmp
|
314
|
+
end
|
315
|
+
end
|
316
|
+
@AllKnowledge = params['AllKnowledge']
|
259
317
|
end
|
260
318
|
end
|
261
319
|
|
@@ -378,10 +436,12 @@ module TencentCloud
|
|
378
436
|
# @type ModelContextWordsLimit: String
|
379
437
|
# @param InstructionsWordsLimit: 指令长度字符限制
|
380
438
|
# @type InstructionsWordsLimit: Integer
|
439
|
+
# @param MaxReasoningRound: 单次会话最大推理轮数
|
440
|
+
# @type MaxReasoningRound: Integer
|
381
441
|
|
382
|
-
attr_accessor :ModelName, :ModelAliasName, :Temperature, :TopP, :IsEnabled, :HistoryLimit, :ModelContextWordsLimit, :InstructionsWordsLimit
|
442
|
+
attr_accessor :ModelName, :ModelAliasName, :Temperature, :TopP, :IsEnabled, :HistoryLimit, :ModelContextWordsLimit, :InstructionsWordsLimit, :MaxReasoningRound
|
383
443
|
|
384
|
-
def initialize(modelname=nil, modelaliasname=nil, temperature=nil, topp=nil, isenabled=nil, historylimit=nil, modelcontextwordslimit=nil, instructionswordslimit=nil)
|
444
|
+
def initialize(modelname=nil, modelaliasname=nil, temperature=nil, topp=nil, isenabled=nil, historylimit=nil, modelcontextwordslimit=nil, instructionswordslimit=nil, maxreasoninground=nil)
|
385
445
|
@ModelName = modelname
|
386
446
|
@ModelAliasName = modelaliasname
|
387
447
|
@Temperature = temperature
|
@@ -390,6 +450,7 @@ module TencentCloud
|
|
390
450
|
@HistoryLimit = historylimit
|
391
451
|
@ModelContextWordsLimit = modelcontextwordslimit
|
392
452
|
@InstructionsWordsLimit = instructionswordslimit
|
453
|
+
@MaxReasoningRound = maxreasoninground
|
393
454
|
end
|
394
455
|
|
395
456
|
def deserialize(params)
|
@@ -401,6 +462,7 @@ module TencentCloud
|
|
401
462
|
@HistoryLimit = params['HistoryLimit']
|
402
463
|
@ModelContextWordsLimit = params['ModelContextWordsLimit']
|
403
464
|
@InstructionsWordsLimit = params['InstructionsWordsLimit']
|
465
|
+
@MaxReasoningRound = params['MaxReasoningRound']
|
404
466
|
end
|
405
467
|
end
|
406
468
|
|
@@ -1411,6 +1473,38 @@ module TencentCloud
|
|
1411
1473
|
end
|
1412
1474
|
end
|
1413
1475
|
|
1476
|
+
# 背景图相关配置
|
1477
|
+
class BackgroundImageConfig < TencentCloud::Common::AbstractModel
|
1478
|
+
# @param LandscapeImageUrl: 横图(pc)
|
1479
|
+
# @type LandscapeImageUrl: String
|
1480
|
+
# @param OriginalImageUrl: 原始图
|
1481
|
+
# @type OriginalImageUrl: String
|
1482
|
+
# @param PortraitImageUrl: 长图(手机)
|
1483
|
+
# @type PortraitImageUrl: String
|
1484
|
+
# @param ThemeColor: 主题色
|
1485
|
+
# @type ThemeColor: String
|
1486
|
+
# @param Brightness: 亮度值
|
1487
|
+
# @type Brightness: Integer
|
1488
|
+
|
1489
|
+
attr_accessor :LandscapeImageUrl, :OriginalImageUrl, :PortraitImageUrl, :ThemeColor, :Brightness
|
1490
|
+
|
1491
|
+
def initialize(landscapeimageurl=nil, originalimageurl=nil, portraitimageurl=nil, themecolor=nil, brightness=nil)
|
1492
|
+
@LandscapeImageUrl = landscapeimageurl
|
1493
|
+
@OriginalImageUrl = originalimageurl
|
1494
|
+
@PortraitImageUrl = portraitimageurl
|
1495
|
+
@ThemeColor = themecolor
|
1496
|
+
@Brightness = brightness
|
1497
|
+
end
|
1498
|
+
|
1499
|
+
def deserialize(params)
|
1500
|
+
@LandscapeImageUrl = params['LandscapeImageUrl']
|
1501
|
+
@OriginalImageUrl = params['OriginalImageUrl']
|
1502
|
+
@PortraitImageUrl = params['PortraitImageUrl']
|
1503
|
+
@ThemeColor = params['ThemeColor']
|
1504
|
+
@Brightness = params['Brightness']
|
1505
|
+
end
|
1506
|
+
end
|
1507
|
+
|
1414
1508
|
# 应用基础配置
|
1415
1509
|
class BaseConfig < TencentCloud::Common::AbstractModel
|
1416
1510
|
# @param Name: 应用名称
|
@@ -2345,17 +2439,21 @@ module TencentCloud
|
|
2345
2439
|
# @type BotBizId: String
|
2346
2440
|
# @param Desc: 发布描述
|
2347
2441
|
# @type Desc: String
|
2442
|
+
# @param ChannelBizIds: 渠道业务ID
|
2443
|
+
# @type ChannelBizIds: Array
|
2348
2444
|
|
2349
|
-
attr_accessor :BotBizId, :Desc
|
2445
|
+
attr_accessor :BotBizId, :Desc, :ChannelBizIds
|
2350
2446
|
|
2351
|
-
def initialize(botbizid=nil, desc=nil)
|
2447
|
+
def initialize(botbizid=nil, desc=nil, channelbizids=nil)
|
2352
2448
|
@BotBizId = botbizid
|
2353
2449
|
@Desc = desc
|
2450
|
+
@ChannelBizIds = channelbizids
|
2354
2451
|
end
|
2355
2452
|
|
2356
2453
|
def deserialize(params)
|
2357
2454
|
@BotBizId = params['BotBizId']
|
2358
2455
|
@Desc = params['Desc']
|
2456
|
+
@ChannelBizIds = params['ChannelBizIds']
|
2359
2457
|
end
|
2360
2458
|
end
|
2361
2459
|
|
@@ -3088,12 +3186,14 @@ module TencentCloud
|
|
3088
3186
|
# @type AppStatusDesc: String
|
3089
3187
|
# @param IsCopying: 应用是否在复制中
|
3090
3188
|
# @type IsCopying: Boolean
|
3189
|
+
# @param AgentType: 智能体类型 dialogue 对话式智能体,wechat 公众号智能体
|
3190
|
+
# @type AgentType: String
|
3091
3191
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
3092
3192
|
# @type RequestId: String
|
3093
3193
|
|
3094
|
-
attr_accessor :AppBizId, :AppType, :AppTypeDesc, :BaseConfig, :AppConfig, :AvatarInAppeal, :RoleInAppeal, :NameInAppeal, :GreetingInAppeal, :BareAnswerInAppeal, :AppKey, :AppStatus, :AppStatusDesc, :IsCopying, :RequestId
|
3194
|
+
attr_accessor :AppBizId, :AppType, :AppTypeDesc, :BaseConfig, :AppConfig, :AvatarInAppeal, :RoleInAppeal, :NameInAppeal, :GreetingInAppeal, :BareAnswerInAppeal, :AppKey, :AppStatus, :AppStatusDesc, :IsCopying, :AgentType, :RequestId
|
3095
3195
|
|
3096
|
-
def initialize(appbizid=nil, apptype=nil, apptypedesc=nil, baseconfig=nil, appconfig=nil, avatarinappeal=nil, roleinappeal=nil, nameinappeal=nil, greetinginappeal=nil, bareanswerinappeal=nil, appkey=nil, appstatus=nil, appstatusdesc=nil, iscopying=nil, requestid=nil)
|
3196
|
+
def initialize(appbizid=nil, apptype=nil, apptypedesc=nil, baseconfig=nil, appconfig=nil, avatarinappeal=nil, roleinappeal=nil, nameinappeal=nil, greetinginappeal=nil, bareanswerinappeal=nil, appkey=nil, appstatus=nil, appstatusdesc=nil, iscopying=nil, agenttype=nil, requestid=nil)
|
3097
3197
|
@AppBizId = appbizid
|
3098
3198
|
@AppType = apptype
|
3099
3199
|
@AppTypeDesc = apptypedesc
|
@@ -3108,6 +3208,7 @@ module TencentCloud
|
|
3108
3208
|
@AppStatus = appstatus
|
3109
3209
|
@AppStatusDesc = appstatusdesc
|
3110
3210
|
@IsCopying = iscopying
|
3211
|
+
@AgentType = agenttype
|
3111
3212
|
@RequestId = requestid
|
3112
3213
|
end
|
3113
3214
|
|
@@ -3132,6 +3233,7 @@ module TencentCloud
|
|
3132
3233
|
@AppStatus = params['AppStatus']
|
3133
3234
|
@AppStatusDesc = params['AppStatusDesc']
|
3134
3235
|
@IsCopying = params['IsCopying']
|
3236
|
+
@AgentType = params['AgentType']
|
3135
3237
|
@RequestId = params['RequestId']
|
3136
3238
|
end
|
3137
3239
|
end
|
@@ -4755,10 +4857,12 @@ module TencentCloud
|
|
4755
4857
|
# @type DocUrl: String
|
4756
4858
|
# @param WebUrl: 文档的自定义链接
|
4757
4859
|
# @type WebUrl: String
|
4860
|
+
# @param PageInfos: 页码信息
|
4861
|
+
# @type PageInfos: Array
|
4758
4862
|
|
4759
|
-
attr_accessor :Id, :BusinessId, :FileType, :SegmentType, :Title, :PageContent, :OrgData, :DocId, :DocBizId, :DocUrl, :WebUrl
|
4863
|
+
attr_accessor :Id, :BusinessId, :FileType, :SegmentType, :Title, :PageContent, :OrgData, :DocId, :DocBizId, :DocUrl, :WebUrl, :PageInfos
|
4760
4864
|
|
4761
|
-
def initialize(id=nil, businessid=nil, filetype=nil, segmenttype=nil, title=nil, pagecontent=nil, orgdata=nil, docid=nil, docbizid=nil, docurl=nil, weburl=nil)
|
4865
|
+
def initialize(id=nil, businessid=nil, filetype=nil, segmenttype=nil, title=nil, pagecontent=nil, orgdata=nil, docid=nil, docbizid=nil, docurl=nil, weburl=nil, pageinfos=nil)
|
4762
4866
|
@Id = id
|
4763
4867
|
@BusinessId = businessid
|
4764
4868
|
@FileType = filetype
|
@@ -4770,6 +4874,7 @@ module TencentCloud
|
|
4770
4874
|
@DocBizId = docbizid
|
4771
4875
|
@DocUrl = docurl
|
4772
4876
|
@WebUrl = weburl
|
4877
|
+
@PageInfos = pageinfos
|
4773
4878
|
end
|
4774
4879
|
|
4775
4880
|
def deserialize(params)
|
@@ -4784,6 +4889,7 @@ module TencentCloud
|
|
4784
4889
|
@DocBizId = params['DocBizId']
|
4785
4890
|
@DocUrl = params['DocUrl']
|
4786
4891
|
@WebUrl = params['WebUrl']
|
4892
|
+
@PageInfos = params['PageInfos']
|
4787
4893
|
end
|
4788
4894
|
end
|
4789
4895
|
|
@@ -5795,16 +5901,19 @@ module TencentCloud
|
|
5795
5901
|
# @type Limit: Integer
|
5796
5902
|
# @param VarType: 按变量类型过滤,默认查询所有类型(STRING,INT,FLOAT,BOOL,OBJECT,ARRAY_STRING,ARRAY_INT,ARRAY_FLOAT,ARRAY_BOOL,ARRAY_OBJECT,FILE,DOCUMENT,IMAGE,AUDIO)
|
5797
5903
|
# @type VarType: String
|
5904
|
+
# @param NeedInternalVar: 是否需要内部变量(默认false)
|
5905
|
+
# @type NeedInternalVar: Boolean
|
5798
5906
|
|
5799
|
-
attr_accessor :AppBizId, :VarIds, :Keyword, :Offset, :Limit, :VarType
|
5907
|
+
attr_accessor :AppBizId, :VarIds, :Keyword, :Offset, :Limit, :VarType, :NeedInternalVar
|
5800
5908
|
|
5801
|
-
def initialize(appbizid=nil, varids=nil, keyword=nil, offset=nil, limit=nil, vartype=nil)
|
5909
|
+
def initialize(appbizid=nil, varids=nil, keyword=nil, offset=nil, limit=nil, vartype=nil, needinternalvar=nil)
|
5802
5910
|
@AppBizId = appbizid
|
5803
5911
|
@VarIds = varids
|
5804
5912
|
@Keyword = keyword
|
5805
5913
|
@Offset = offset
|
5806
5914
|
@Limit = limit
|
5807
5915
|
@VarType = vartype
|
5916
|
+
@NeedInternalVar = needinternalvar
|
5808
5917
|
end
|
5809
5918
|
|
5810
5919
|
def deserialize(params)
|
@@ -5814,6 +5923,7 @@ module TencentCloud
|
|
5814
5923
|
@Offset = params['Offset']
|
5815
5924
|
@Limit = params['Limit']
|
5816
5925
|
@VarType = params['VarType']
|
5926
|
+
@NeedInternalVar = params['NeedInternalVar']
|
5817
5927
|
end
|
5818
5928
|
end
|
5819
5929
|
|
@@ -6466,10 +6576,16 @@ module TencentCloud
|
|
6466
6576
|
# @type AiCall: :class:`Tencentcloud::Lke.v20231130.models.AICallConfig`
|
6467
6577
|
# @param ShareKnowledgeBases: 共享知识库关联配置
|
6468
6578
|
# @type ShareKnowledgeBases: Array
|
6579
|
+
# @param BackgroundImage: 背景图相关信息
|
6580
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
6581
|
+
# @type BackgroundImage: :class:`Tencentcloud::Lke.v20231130.models.BackgroundImageConfig`
|
6582
|
+
# @param OpeningQuestions: 开场问题
|
6583
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
6584
|
+
# @type OpeningQuestions: Array
|
6469
6585
|
|
6470
|
-
attr_accessor :Greeting, :RoleDescription, :Model, :Search, :Output, :Workflow, :SearchRange, :Pattern, :SearchStrategy, :SingleWorkflow, :Plugins, :ThoughtModel, :IntentAchievements, :ImageTextRetrieval, :AiCall, :ShareKnowledgeBases
|
6586
|
+
attr_accessor :Greeting, :RoleDescription, :Model, :Search, :Output, :Workflow, :SearchRange, :Pattern, :SearchStrategy, :SingleWorkflow, :Plugins, :ThoughtModel, :IntentAchievements, :ImageTextRetrieval, :AiCall, :ShareKnowledgeBases, :BackgroundImage, :OpeningQuestions
|
6471
6587
|
|
6472
|
-
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, shareknowledgebases=nil)
|
6588
|
+
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, shareknowledgebases=nil, backgroundimage=nil, openingquestions=nil)
|
6473
6589
|
@Greeting = greeting
|
6474
6590
|
@RoleDescription = roledescription
|
6475
6591
|
@Model = model
|
@@ -6486,6 +6602,8 @@ module TencentCloud
|
|
6486
6602
|
@ImageTextRetrieval = imagetextretrieval
|
6487
6603
|
@AiCall = aicall
|
6488
6604
|
@ShareKnowledgeBases = shareknowledgebases
|
6605
|
+
@BackgroundImage = backgroundimage
|
6606
|
+
@OpeningQuestions = openingquestions
|
6489
6607
|
end
|
6490
6608
|
|
6491
6609
|
def deserialize(params)
|
@@ -6557,6 +6675,11 @@ module TencentCloud
|
|
6557
6675
|
@ShareKnowledgeBases << shareknowledgebase_tmp
|
6558
6676
|
end
|
6559
6677
|
end
|
6678
|
+
unless params['BackgroundImage'].nil?
|
6679
|
+
@BackgroundImage = BackgroundImageConfig.new
|
6680
|
+
@BackgroundImage.deserialize(params['BackgroundImage'])
|
6681
|
+
end
|
6682
|
+
@OpeningQuestions = params['OpeningQuestions']
|
6560
6683
|
end
|
6561
6684
|
end
|
6562
6685
|
|
@@ -7250,10 +7373,12 @@ module TencentCloud
|
|
7250
7373
|
# @type AttributeFlags: Array
|
7251
7374
|
# @param IsDisabled: false:未停用,ture:已停用
|
7252
7375
|
# @type IsDisabled: Boolean
|
7376
|
+
# @param StaffName: 员工名称
|
7377
|
+
# @type StaffName: String
|
7253
7378
|
|
7254
|
-
attr_accessor :DocBizId, :FileName, :NewName, :FileType, :CosUrl, :UpdateTime, :Status, :StatusDesc, :Reason, :IsRefer, :QaNum, :IsDeleted, :Source, :SourceDesc, :IsAllowRestart, :IsDeletedQa, :IsCreatingQa, :IsAllowDelete, :IsAllowRefer, :IsCreatedQa, :DocCharSize, :AttrRange, :AttrLabels, :IsAllowEdit, :ReferUrlType, :WebUrl, :ExpireStart, :ExpireEnd, :IsAllowRetry, :Processing, :CreateTime, :CateBizId, :CustomerKnowledgeId, :AttributeFlags, :IsDisabled
|
7379
|
+
attr_accessor :DocBizId, :FileName, :NewName, :FileType, :CosUrl, :UpdateTime, :Status, :StatusDesc, :Reason, :IsRefer, :QaNum, :IsDeleted, :Source, :SourceDesc, :IsAllowRestart, :IsDeletedQa, :IsCreatingQa, :IsAllowDelete, :IsAllowRefer, :IsCreatedQa, :DocCharSize, :AttrRange, :AttrLabels, :IsAllowEdit, :ReferUrlType, :WebUrl, :ExpireStart, :ExpireEnd, :IsAllowRetry, :Processing, :CreateTime, :CateBizId, :CustomerKnowledgeId, :AttributeFlags, :IsDisabled, :StaffName
|
7255
7380
|
|
7256
|
-
def initialize(docbizid=nil, filename=nil, newname=nil, filetype=nil, cosurl=nil, updatetime=nil, status=nil, statusdesc=nil, reason=nil, isrefer=nil, qanum=nil, isdeleted=nil, source=nil, sourcedesc=nil, isallowrestart=nil, isdeletedqa=nil, iscreatingqa=nil, isallowdelete=nil, isallowrefer=nil, iscreatedqa=nil, doccharsize=nil, attrrange=nil, attrlabels=nil, isallowedit=nil, referurltype=nil, weburl=nil, expirestart=nil, expireend=nil, isallowretry=nil, processing=nil, createtime=nil, catebizid=nil, customerknowledgeid=nil, attributeflags=nil, isdisabled=nil)
|
7381
|
+
def initialize(docbizid=nil, filename=nil, newname=nil, filetype=nil, cosurl=nil, updatetime=nil, status=nil, statusdesc=nil, reason=nil, isrefer=nil, qanum=nil, isdeleted=nil, source=nil, sourcedesc=nil, isallowrestart=nil, isdeletedqa=nil, iscreatingqa=nil, isallowdelete=nil, isallowrefer=nil, iscreatedqa=nil, doccharsize=nil, attrrange=nil, attrlabels=nil, isallowedit=nil, referurltype=nil, weburl=nil, expirestart=nil, expireend=nil, isallowretry=nil, processing=nil, createtime=nil, catebizid=nil, customerknowledgeid=nil, attributeflags=nil, isdisabled=nil, staffname=nil)
|
7257
7382
|
@DocBizId = docbizid
|
7258
7383
|
@FileName = filename
|
7259
7384
|
@NewName = newname
|
@@ -7289,6 +7414,7 @@ module TencentCloud
|
|
7289
7414
|
@CustomerKnowledgeId = customerknowledgeid
|
7290
7415
|
@AttributeFlags = attributeflags
|
7291
7416
|
@IsDisabled = isdisabled
|
7417
|
+
@StaffName = staffname
|
7292
7418
|
end
|
7293
7419
|
|
7294
7420
|
def deserialize(params)
|
@@ -7334,6 +7460,7 @@ module TencentCloud
|
|
7334
7460
|
@CustomerKnowledgeId = params['CustomerKnowledgeId']
|
7335
7461
|
@AttributeFlags = params['AttributeFlags']
|
7336
7462
|
@IsDisabled = params['IsDisabled']
|
7463
|
+
@StaffName = params['StaffName']
|
7337
7464
|
end
|
7338
7465
|
end
|
7339
7466
|
|
@@ -7692,10 +7819,12 @@ module TencentCloud
|
|
7692
7819
|
# @type SimilarQuestionTips: String
|
7693
7820
|
# @param IsDisabled: 问答是否停用,false:未停用,ture:已停用
|
7694
7821
|
# @type IsDisabled: Boolean
|
7822
|
+
# @param StaffName: 员工名称
|
7823
|
+
# @type StaffName: String
|
7695
7824
|
|
7696
|
-
attr_accessor :QaBizId, :Question, :Answer, :Source, :SourceDesc, :UpdateTime, :Status, :StatusDesc, :DocBizId, :CreateTime, :IsAllowEdit, :IsAllowDelete, :IsAllowAccept, :FileName, :FileType, :QaCharSize, :ExpireStart, :ExpireEnd, :AttrRange, :AttrLabels, :SimilarQuestionNum, :SimilarQuestionTips, :IsDisabled
|
7825
|
+
attr_accessor :QaBizId, :Question, :Answer, :Source, :SourceDesc, :UpdateTime, :Status, :StatusDesc, :DocBizId, :CreateTime, :IsAllowEdit, :IsAllowDelete, :IsAllowAccept, :FileName, :FileType, :QaCharSize, :ExpireStart, :ExpireEnd, :AttrRange, :AttrLabels, :SimilarQuestionNum, :SimilarQuestionTips, :IsDisabled, :StaffName
|
7697
7826
|
|
7698
|
-
def initialize(qabizid=nil, question=nil, answer=nil, source=nil, sourcedesc=nil, updatetime=nil, status=nil, statusdesc=nil, docbizid=nil, createtime=nil, isallowedit=nil, isallowdelete=nil, isallowaccept=nil, filename=nil, filetype=nil, qacharsize=nil, expirestart=nil, expireend=nil, attrrange=nil, attrlabels=nil, similarquestionnum=nil, similarquestiontips=nil, isdisabled=nil)
|
7827
|
+
def initialize(qabizid=nil, question=nil, answer=nil, source=nil, sourcedesc=nil, updatetime=nil, status=nil, statusdesc=nil, docbizid=nil, createtime=nil, isallowedit=nil, isallowdelete=nil, isallowaccept=nil, filename=nil, filetype=nil, qacharsize=nil, expirestart=nil, expireend=nil, attrrange=nil, attrlabels=nil, similarquestionnum=nil, similarquestiontips=nil, isdisabled=nil, staffname=nil)
|
7699
7828
|
@QaBizId = qabizid
|
7700
7829
|
@Question = question
|
7701
7830
|
@Answer = answer
|
@@ -7719,6 +7848,7 @@ module TencentCloud
|
|
7719
7848
|
@SimilarQuestionNum = similarquestionnum
|
7720
7849
|
@SimilarQuestionTips = similarquestiontips
|
7721
7850
|
@IsDisabled = isdisabled
|
7851
|
+
@StaffName = staffname
|
7722
7852
|
end
|
7723
7853
|
|
7724
7854
|
def deserialize(params)
|
@@ -7752,6 +7882,7 @@ module TencentCloud
|
|
7752
7882
|
@SimilarQuestionNum = params['SimilarQuestionNum']
|
7753
7883
|
@SimilarQuestionTips = params['SimilarQuestionTips']
|
7754
7884
|
@IsDisabled = params['IsDisabled']
|
7885
|
+
@StaffName = params['StaffName']
|
7755
7886
|
end
|
7756
7887
|
end
|
7757
7888
|
|
@@ -8815,7 +8946,7 @@ module TencentCloud
|
|
8815
8946
|
class ModifyAppRequest < TencentCloud::Common::AbstractModel
|
8816
8947
|
# @param AppBizId: 应用 ID
|
8817
8948
|
# @type AppBizId: String
|
8818
|
-
# @param AppType: 应用类型;knowledge_qa-知识问答管理;summary-知识摘要;
|
8949
|
+
# @param AppType: 应用类型;knowledge_qa-知识问答管理;summary-知识摘要;classify-知识标签提取
|
8819
8950
|
# @type AppType: String
|
8820
8951
|
# @param BaseConfig: 应用基础配置
|
8821
8952
|
# @type BaseConfig: :class:`Tencentcloud::Lke.v20231130.models.BaseConfig`
|
@@ -11054,10 +11185,10 @@ module TencentCloud
|
|
11054
11185
|
|
11055
11186
|
attr_accessor :Query, :Docs, :Model, :DataList, :Online
|
11056
11187
|
extend Gem::Deprecate
|
11057
|
-
deprecate :DataList, :none, 2025,
|
11058
|
-
deprecate :DataList=, :none, 2025,
|
11059
|
-
deprecate :Online, :none, 2025,
|
11060
|
-
deprecate :Online=, :none, 2025,
|
11188
|
+
deprecate :DataList, :none, 2025, 7
|
11189
|
+
deprecate :DataList=, :none, 2025, 7
|
11190
|
+
deprecate :Online, :none, 2025, 7
|
11191
|
+
deprecate :Online=, :none, 2025, 7
|
11061
11192
|
|
11062
11193
|
def initialize(query=nil, docs=nil, model=nil, datalist=nil, online=nil)
|
11063
11194
|
@Query = query
|
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.
|
4
|
+
version: 3.0.1098
|
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-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|