tencentcloud-sdk-lke 3.0.1038 → 3.0.1039

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 +101 -9
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0f153446f41d9718d7e6e5ed0c30a3cb4ba8e982
4
- data.tar.gz: 3d8bb1fa9b7c099760557469a0bd94839fff9072
3
+ metadata.gz: 800bd8a335b06e3cc6956e65693d93e5343f1b51
4
+ data.tar.gz: e58be238750fc217f1bf5786208c1278fcb73908
5
5
  SHA512:
6
- metadata.gz: cc5298e8c3d00d53c7566473e94a45afa0c6956b878931d640ab43cab1e9167113893dc204cebc76b7265c665e0acd94690c9dd7167626e37d6ca03538e6d6dc
7
- data.tar.gz: 7ce8ec75f0e75f94f2bb9d8fb4a88a77728d4dda3904dc30f4ccef5810216b0bb381b68145c3ddf80ebe460781a01e6919883fdaad177b9be2cb59159a6b91af
6
+ metadata.gz: 0a34fdd5ed31c6cfdb5a9073d73a1227ae453af126714deeab154c099b0cdbea56fb17d9b8d9845fca0cb0f0e86f1c181b9aef1764ee0188b217d3ffadb365b5
7
+ data.tar.gz: a1efd0932fe9bade95a36bdc83fff8e04a8a26cd8406a5a6035747e78475f93dcfc04559e3f4da69d0b5fb84a06ea3fb393a23db1e06f289041eacb520364b00
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1038
1
+ 3.0.1039
@@ -3432,6 +3432,26 @@ module TencentCloud
3432
3432
  end
3433
3433
  end
3434
3434
 
3435
+ # 文档列表筛选标识位
3436
+ class DocFilterFlag < TencentCloud::Common::AbstractModel
3437
+ # @param Flag: 标识位
3438
+ # @type Flag: String
3439
+ # @param Value: 标识值
3440
+ # @type Value: Boolean
3441
+
3442
+ attr_accessor :Flag, :Value
3443
+
3444
+ def initialize(flag=nil, value=nil)
3445
+ @Flag = flag
3446
+ @Value = value
3447
+ end
3448
+
3449
+ def deserialize(params)
3450
+ @Flag = params['Flag']
3451
+ @Value = params['Value']
3452
+ end
3453
+ end
3454
+
3435
3455
  # 文档片段
3436
3456
  class DocSegment < TencentCloud::Common::AbstractModel
3437
3457
  # @param Id: 片段ID
@@ -4100,18 +4120,21 @@ module TencentCloud
4100
4120
  # @type Bucket: String
4101
4121
  # @param NewName: 存在文档重命名情况下的新名称, 评测端优先使用这个名称
4102
4122
  # @type NewName: String
4123
+ # @param ParseResultCosUrl: 文件md结果cos临时地址
4124
+ # @type ParseResultCosUrl: String
4103
4125
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4104
4126
  # @type RequestId: String
4105
4127
 
4106
- attr_accessor :FileName, :FileType, :CosUrl, :Url, :Bucket, :NewName, :RequestId
4128
+ attr_accessor :FileName, :FileType, :CosUrl, :Url, :Bucket, :NewName, :ParseResultCosUrl, :RequestId
4107
4129
 
4108
- def initialize(filename=nil, filetype=nil, cosurl=nil, url=nil, bucket=nil, newname=nil, requestid=nil)
4130
+ def initialize(filename=nil, filetype=nil, cosurl=nil, url=nil, bucket=nil, newname=nil, parseresultcosurl=nil, requestid=nil)
4109
4131
  @FileName = filename
4110
4132
  @FileType = filetype
4111
4133
  @CosUrl = cosurl
4112
4134
  @Url = url
4113
4135
  @Bucket = bucket
4114
4136
  @NewName = newname
4137
+ @ParseResultCosUrl = parseresultcosurl
4115
4138
  @RequestId = requestid
4116
4139
  end
4117
4140
 
@@ -4122,6 +4145,7 @@ module TencentCloud
4122
4145
  @Url = params['Url']
4123
4146
  @Bucket = params['Bucket']
4124
4147
  @NewName = params['NewName']
4148
+ @ParseResultCosUrl = params['ParseResultCosUrl']
4125
4149
  @RequestId = params['RequestId']
4126
4150
  end
4127
4151
  end
@@ -4787,6 +4811,26 @@ module TencentCloud
4787
4811
  end
4788
4812
  end
4789
4813
 
4814
+ # 意图达成方式
4815
+ class IntentAchievement < TencentCloud::Common::AbstractModel
4816
+ # @param Name: 意图达成方式,qa:问答回复、doc:文档回复、workflow:工作流回复,llm:大模型回复
4817
+ # @type Name: String
4818
+ # @param Desc: 意图达成方式描述
4819
+ # @type Desc: String
4820
+
4821
+ attr_accessor :Name, :Desc
4822
+
4823
+ def initialize(name=nil, desc=nil)
4824
+ @Name = name
4825
+ @Desc = desc
4826
+ end
4827
+
4828
+ def deserialize(params)
4829
+ @Name = params['Name']
4830
+ @Desc = params['Desc']
4831
+ end
4832
+ end
4833
+
4790
4834
  # 请求的API信息
4791
4835
  class InvokeAPI < TencentCloud::Common::AbstractModel
4792
4836
  # @param Method: 请求方法,如GET/POST等
@@ -4964,7 +5008,19 @@ module TencentCloud
4964
5008
  # @param Greeting: 欢迎语,200字符以内
4965
5009
  # 注意:此字段可能返回 null,表示取不到有效值。
4966
5010
  # @type Greeting: String
4967
- # @param RoleDescription: 角色描述,300字符以内
5011
+ # @param RoleDescription: 角色描述,4000字符以内。通过填写描述,设定应用的 #角色名称、 #风格特点 及可达成的#意图。建议按照下面的模板填写,且自定义意图建议不超过5个。
5012
+
5013
+ # #角色名称:
5014
+ # #风格特点:
5015
+ # #输出要求:
5016
+ # #能力限制:
5017
+
5018
+ # 能够达成以下用户意图
5019
+ # ##意图名称:
5020
+ # ##意图描述:
5021
+ # ##意图示例:
5022
+ # ##意图实现:
5023
+
4968
5024
  # 注意:此字段可能返回 null,表示取不到有效值。
4969
5025
  # @type RoleDescription: String
4970
5026
  # @param Model: 生成模型配置
@@ -4997,10 +5053,16 @@ module TencentCloud
4997
5053
  # @param ThoughtModel: 思考模型配置
4998
5054
  # 注意:此字段可能返回 null,表示取不到有效值。
4999
5055
  # @type ThoughtModel: :class:`Tencentcloud::Lke.v20231130.models.AppModel`
5056
+ # @param IntentAchievements: 意图达成方式优先级
5057
+ # 注意:此字段可能返回 null,表示取不到有效值。
5058
+ # @type IntentAchievements: Array
5059
+ # @param ImageTextRetrieval: 是否开启图文检索
5060
+ # 注意:此字段可能返回 null,表示取不到有效值。
5061
+ # @type ImageTextRetrieval: Boolean
5000
5062
 
5001
- attr_accessor :Greeting, :RoleDescription, :Model, :Search, :Output, :Workflow, :SearchRange, :Pattern, :SearchStrategy, :SingleWorkflow, :Plugins, :ThoughtModel
5063
+ attr_accessor :Greeting, :RoleDescription, :Model, :Search, :Output, :Workflow, :SearchRange, :Pattern, :SearchStrategy, :SingleWorkflow, :Plugins, :ThoughtModel, :IntentAchievements, :ImageTextRetrieval
5002
5064
 
5003
- 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)
5065
+ 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)
5004
5066
  @Greeting = greeting
5005
5067
  @RoleDescription = roledescription
5006
5068
  @Model = model
@@ -5013,6 +5075,8 @@ module TencentCloud
5013
5075
  @SingleWorkflow = singleworkflow
5014
5076
  @Plugins = plugins
5015
5077
  @ThoughtModel = thoughtmodel
5078
+ @IntentAchievements = intentachievements
5079
+ @ImageTextRetrieval = imagetextretrieval
5016
5080
  end
5017
5081
 
5018
5082
  def deserialize(params)
@@ -5063,6 +5127,15 @@ module TencentCloud
5063
5127
  @ThoughtModel = AppModel.new
5064
5128
  @ThoughtModel.deserialize(params['ThoughtModel'])
5065
5129
  end
5130
+ unless params['IntentAchievements'].nil?
5131
+ @IntentAchievements = []
5132
+ params['IntentAchievements'].each do |i|
5133
+ intentachievement_tmp = IntentAchievement.new
5134
+ intentachievement_tmp.deserialize(i)
5135
+ @IntentAchievements << intentachievement_tmp
5136
+ end
5137
+ end
5138
+ @ImageTextRetrieval = params['ImageTextRetrieval']
5066
5139
  end
5067
5140
  end
5068
5141
 
@@ -5804,10 +5877,14 @@ module TencentCloud
5804
5877
  # @type QueryType: String
5805
5878
  # @param CateBizId: 分类ID
5806
5879
  # @type CateBizId: String
5880
+ # @param FileTypes: 文件类型分类筛选
5881
+ # @type FileTypes: Array
5882
+ # @param FilterFlag: 文档列表筛选标识位
5883
+ # @type FilterFlag: Array
5807
5884
 
5808
- attr_accessor :BotBizId, :PageNumber, :PageSize, :Query, :Status, :QueryType, :CateBizId
5885
+ attr_accessor :BotBizId, :PageNumber, :PageSize, :Query, :Status, :QueryType, :CateBizId, :FileTypes, :FilterFlag
5809
5886
 
5810
- def initialize(botbizid=nil, pagenumber=nil, pagesize=nil, query=nil, status=nil, querytype=nil, catebizid=nil)
5887
+ def initialize(botbizid=nil, pagenumber=nil, pagesize=nil, query=nil, status=nil, querytype=nil, catebizid=nil, filetypes=nil, filterflag=nil)
5811
5888
  @BotBizId = botbizid
5812
5889
  @PageNumber = pagenumber
5813
5890
  @PageSize = pagesize
@@ -5815,6 +5892,8 @@ module TencentCloud
5815
5892
  @Status = status
5816
5893
  @QueryType = querytype
5817
5894
  @CateBizId = catebizid
5895
+ @FileTypes = filetypes
5896
+ @FilterFlag = filterflag
5818
5897
  end
5819
5898
 
5820
5899
  def deserialize(params)
@@ -5825,6 +5904,15 @@ module TencentCloud
5825
5904
  @Status = params['Status']
5826
5905
  @QueryType = params['QueryType']
5827
5906
  @CateBizId = params['CateBizId']
5907
+ @FileTypes = params['FileTypes']
5908
+ unless params['FilterFlag'].nil?
5909
+ @FilterFlag = []
5910
+ params['FilterFlag'].each do |i|
5911
+ docfilterflag_tmp = DocFilterFlag.new
5912
+ docfilterflag_tmp.deserialize(i)
5913
+ @FilterFlag << docfilterflag_tmp
5914
+ end
5915
+ end
5828
5916
  end
5829
5917
  end
5830
5918
 
@@ -7796,16 +7884,19 @@ module TencentCloud
7796
7884
  # @type DefaultValue: String
7797
7885
  # @param SubParams: 子参数,ParamType 是OBJECT 或 ARRAY<>类型有用
7798
7886
  # @type SubParams: Array
7887
+ # @param GlobalHidden: 插件参数配置是否隐藏不可见,true-隐藏不可见,false-可见
7888
+ # @type GlobalHidden: Boolean
7799
7889
 
7800
- attr_accessor :Name, :Desc, :Type, :IsRequired, :DefaultValue, :SubParams
7890
+ attr_accessor :Name, :Desc, :Type, :IsRequired, :DefaultValue, :SubParams, :GlobalHidden
7801
7891
 
7802
- def initialize(name=nil, desc=nil, type=nil, isrequired=nil, defaultvalue=nil, subparams=nil)
7892
+ def initialize(name=nil, desc=nil, type=nil, isrequired=nil, defaultvalue=nil, subparams=nil, globalhidden=nil)
7803
7893
  @Name = name
7804
7894
  @Desc = desc
7805
7895
  @Type = type
7806
7896
  @IsRequired = isrequired
7807
7897
  @DefaultValue = defaultvalue
7808
7898
  @SubParams = subparams
7899
+ @GlobalHidden = globalhidden
7809
7900
  end
7810
7901
 
7811
7902
  def deserialize(params)
@@ -7822,6 +7913,7 @@ module TencentCloud
7822
7913
  @SubParams << plugintoolreqparam_tmp
7823
7914
  end
7824
7915
  end
7916
+ @GlobalHidden = params['GlobalHidden']
7825
7917
  end
7826
7918
  end
7827
7919
 
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.1038
4
+ version: 3.0.1039
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-04-10 00:00:00.000000000 Z
11
+ date: 2025-04-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common