tencentcloud-sdk-lke 3.0.1149 → 3.0.1150

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2d9e79fe6c0d74e33fb944aff17d4181d02f6b28
4
- data.tar.gz: 9c238df8cda8e339f6782cf5bcef025ec94817bd
3
+ metadata.gz: 0866a16a3fd37f744fc36d462c021e8993a76fca
4
+ data.tar.gz: 77b024cb93ed9223be6dbd11aff593d1034a6240
5
5
  SHA512:
6
- metadata.gz: 4a9236f116cd19d94b6cfc8712280a4b88417d82b857a895130b82fe607434f7e32bda7d194d3dc8cf743f4b5e9a0a3cfafac11788443b59a298a3269b4186af
7
- data.tar.gz: 61568d194dc5005bd1f4977644a2b9c4121bce5f76cc3b69b73bcf5829320fd83eda85bbd3434bde3e54fc45a190cbbfc1323239c3356d56913ec4d1c32f2584
6
+ metadata.gz: 072a1aa66125d84be0d33babba818c31a5c34cf1293be4fcd76ac959d91097ec11bb041f7379d598236f0df93abb53ef6ef53a23d64d7f9dbfca90bdf61e7bc6
7
+ data.tar.gz: e16b05ab6cee7e064482beae54dde45e3f023d8d71f7d8859040441d4a1c32320d5eb073561143f14bc78562c95782c507b720e195983def53d06dc244b61572
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1149
1
+ 3.0.1150
@@ -774,7 +774,7 @@ module TencentCloud
774
774
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
775
775
  end
776
776
 
777
- # 通过DescribeWorkflowRun接口获取了工作流异步运行的整体内容,其中包含了基本的节点信息,再通用本接口可查看节点的运行详情(包括输入、输出、日志等)。
777
+ # 通过DescribeWorkflowRun接口获取了工作流异步运行的整体内容,其中包含了基本的节点信息,再通过本接口可查看节点的运行详情(包括输入、输出、日志等)。
778
778
 
779
779
  # @param request: Request instance for DescribeNodeRun.
780
780
  # @type request: :class:`Tencentcloud::lke::V20231130::DescribeNodeRunRequest`
@@ -2693,27 +2693,27 @@ module TencentCloud
2693
2693
 
2694
2694
  # CreateWorkflowRun请求参数结构体
2695
2695
  class CreateWorkflowRunRequest < TencentCloud::Common::AbstractModel
2696
- # @param RunEnv: 运行环境。0: 测试环境; 1: 正式环境
2697
- # @type RunEnv: Integer
2698
2696
  # @param AppBizId: 应用ID
2699
2697
  # @type AppBizId: String
2698
+ # @param RunEnv: 运行环境。0: 测试环境; 1: 正式环境
2699
+ # @type RunEnv: Integer
2700
2700
  # @param Query: 用户输入的内容
2701
2701
  # @type Query: String
2702
2702
  # @param CustomVariables: API参数配置
2703
2703
  # @type CustomVariables: Array
2704
2704
 
2705
- attr_accessor :RunEnv, :AppBizId, :Query, :CustomVariables
2705
+ attr_accessor :AppBizId, :RunEnv, :Query, :CustomVariables
2706
2706
 
2707
- def initialize(runenv=nil, appbizid=nil, query=nil, customvariables=nil)
2708
- @RunEnv = runenv
2707
+ def initialize(appbizid=nil, runenv=nil, query=nil, customvariables=nil)
2709
2708
  @AppBizId = appbizid
2709
+ @RunEnv = runenv
2710
2710
  @Query = query
2711
2711
  @CustomVariables = customvariables
2712
2712
  end
2713
2713
 
2714
2714
  def deserialize(params)
2715
- @RunEnv = params['RunEnv']
2716
2715
  @AppBizId = params['AppBizId']
2716
+ @RunEnv = params['RunEnv']
2717
2717
  @Query = params['Query']
2718
2718
  unless params['CustomVariables'].nil?
2719
2719
  @CustomVariables = []
@@ -6176,6 +6176,22 @@ module TencentCloud
6176
6176
  end
6177
6177
  end
6178
6178
 
6179
+ # 输入框配置
6180
+ class InputBoxConfig < TencentCloud::Common::AbstractModel
6181
+ # @param InputBoxButtons: 输入框按钮,1:上传图片、2:上传文档,3:腾讯文档,4:联网搜索
6182
+ # @type InputBoxButtons: Array
6183
+
6184
+ attr_accessor :InputBoxButtons
6185
+
6186
+ def initialize(inputboxbuttons=nil)
6187
+ @InputBoxButtons = inputboxbuttons
6188
+ end
6189
+
6190
+ def deserialize(params)
6191
+ @InputBoxButtons = params['InputBoxButtons']
6192
+ end
6193
+ end
6194
+
6179
6195
  # 意图达成方式
6180
6196
  class IntentAchievement < TencentCloud::Common::AbstractModel
6181
6197
  # @param Name: 意图达成方式,qa:问答回复、doc:文档回复、workflow:工作流回复,llm:大模型回复
@@ -6788,10 +6804,12 @@ module TencentCloud
6788
6804
  # @param RecommendedPromptMode: 推荐问模式,0.结合知识库&对话历史推荐问题Prompt(默认) 1.仅结合知识库输出推荐问的prompt
6789
6805
  # 注意:此字段可能返回 null,表示取不到有效值。
6790
6806
  # @type RecommendedPromptMode: Integer
6807
+ # @param InputBoxConfig: 输入框按钮配置
6808
+ # @type InputBoxConfig: :class:`Tencentcloud::Lke.v20231130.models.InputBoxConfig`
6791
6809
 
6792
- attr_accessor :Method, :UseGeneralKnowledge, :BareAnswer, :ShowQuestionClarify, :UseQuestionClarify, :QuestionClarifyKeywords, :UseRecommended, :RecommendedPromptMode
6810
+ attr_accessor :Method, :UseGeneralKnowledge, :BareAnswer, :ShowQuestionClarify, :UseQuestionClarify, :QuestionClarifyKeywords, :UseRecommended, :RecommendedPromptMode, :InputBoxConfig
6793
6811
 
6794
- def initialize(method=nil, usegeneralknowledge=nil, bareanswer=nil, showquestionclarify=nil, usequestionclarify=nil, questionclarifykeywords=nil, userecommended=nil, recommendedpromptmode=nil)
6812
+ def initialize(method=nil, usegeneralknowledge=nil, bareanswer=nil, showquestionclarify=nil, usequestionclarify=nil, questionclarifykeywords=nil, userecommended=nil, recommendedpromptmode=nil, inputboxconfig=nil)
6795
6813
  @Method = method
6796
6814
  @UseGeneralKnowledge = usegeneralknowledge
6797
6815
  @BareAnswer = bareanswer
@@ -6800,6 +6818,7 @@ module TencentCloud
6800
6818
  @QuestionClarifyKeywords = questionclarifykeywords
6801
6819
  @UseRecommended = userecommended
6802
6820
  @RecommendedPromptMode = recommendedpromptmode
6821
+ @InputBoxConfig = inputboxconfig
6803
6822
  end
6804
6823
 
6805
6824
  def deserialize(params)
@@ -6811,6 +6830,10 @@ module TencentCloud
6811
6830
  @QuestionClarifyKeywords = params['QuestionClarifyKeywords']
6812
6831
  @UseRecommended = params['UseRecommended']
6813
6832
  @RecommendedPromptMode = params['RecommendedPromptMode']
6833
+ unless params['InputBoxConfig'].nil?
6834
+ @InputBoxConfig = InputBoxConfig.new
6835
+ @InputBoxConfig.deserialize(params['InputBoxConfig'])
6836
+ end
6814
6837
  end
6815
6838
  end
6816
6839
 
@@ -8836,35 +8859,35 @@ module TencentCloud
8836
8859
 
8837
8860
  # ListWorkflowRuns请求参数结构体
8838
8861
  class ListWorkflowRunsRequest < TencentCloud::Common::AbstractModel
8839
- # @param RunEnv: 运行环境。0: 测试环境; 1: 正式环境
8840
- # @type RunEnv: Integer
8841
8862
  # @param AppBizId: 应用ID
8842
8863
  # @type AppBizId: String
8843
- # @param Page: 页码
8844
- # @type Page: Integer
8845
8864
  # @param PageSize: 每页数量
8846
8865
  # @type PageSize: Integer
8866
+ # @param RunEnv: 运行环境。0: 测试环境; 1: 正式环境
8867
+ # @type RunEnv: Integer
8868
+ # @param Page: 页码
8869
+ # @type Page: Integer
8847
8870
  # @param LoginUin: 登录用户主账号(集成商模式必填)
8848
8871
  # @type LoginUin: String
8849
8872
  # @param LoginSubAccountUin: 登录用户子账号(集成商模式必填)
8850
8873
  # @type LoginSubAccountUin: String
8851
8874
 
8852
- attr_accessor :RunEnv, :AppBizId, :Page, :PageSize, :LoginUin, :LoginSubAccountUin
8875
+ attr_accessor :AppBizId, :PageSize, :RunEnv, :Page, :LoginUin, :LoginSubAccountUin
8853
8876
 
8854
- def initialize(runenv=nil, appbizid=nil, page=nil, pagesize=nil, loginuin=nil, loginsubaccountuin=nil)
8855
- @RunEnv = runenv
8877
+ def initialize(appbizid=nil, pagesize=nil, runenv=nil, page=nil, loginuin=nil, loginsubaccountuin=nil)
8856
8878
  @AppBizId = appbizid
8857
- @Page = page
8858
8879
  @PageSize = pagesize
8880
+ @RunEnv = runenv
8881
+ @Page = page
8859
8882
  @LoginUin = loginuin
8860
8883
  @LoginSubAccountUin = loginsubaccountuin
8861
8884
  end
8862
8885
 
8863
8886
  def deserialize(params)
8864
- @RunEnv = params['RunEnv']
8865
8887
  @AppBizId = params['AppBizId']
8866
- @Page = params['Page']
8867
8888
  @PageSize = params['PageSize']
8889
+ @RunEnv = params['RunEnv']
8890
+ @Page = params['Page']
8868
8891
  @LoginUin = params['LoginUin']
8869
8892
  @LoginSubAccountUin = params['LoginSubAccountUin']
8870
8893
  end
@@ -11141,19 +11164,23 @@ module TencentCloud
11141
11164
  class RetryDocParseRequest < TencentCloud::Common::AbstractModel
11142
11165
  # @param BotBizId: 应用ID
11143
11166
  # @type BotBizId: String
11144
- # @param DocBizId: 文档ID
11167
+ # @param DocBizId: 废弃
11145
11168
  # @type DocBizId: String
11169
+ # @param DocBizIds: 集合最大上限50个,DocBizIds有值使用DocBizIds,为空时则使用DocBizId(兼容废弃字段)
11170
+ # @type DocBizIds: Array
11146
11171
 
11147
- attr_accessor :BotBizId, :DocBizId
11172
+ attr_accessor :BotBizId, :DocBizId, :DocBizIds
11148
11173
 
11149
- def initialize(botbizid=nil, docbizid=nil)
11174
+ def initialize(botbizid=nil, docbizid=nil, docbizids=nil)
11150
11175
  @BotBizId = botbizid
11151
11176
  @DocBizId = docbizid
11177
+ @DocBizIds = docbizids
11152
11178
  end
11153
11179
 
11154
11180
  def deserialize(params)
11155
11181
  @BotBizId = params['BotBizId']
11156
11182
  @DocBizId = params['DocBizId']
11183
+ @DocBizIds = params['DocBizIds']
11157
11184
  end
11158
11185
  end
11159
11186
 
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.1149
4
+ version: 3.0.1150
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-09-28 00:00:00.000000000 Z
11
+ date: 2025-09-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common