tencentcloud-sdk-lkeap 3.0.977 → 3.0.979
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/v20240522/client.rb +1 -1
- data/lib/v20240522/models.rb +25 -8
- 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: 4a72c9195a38e57c4aa7785b877807ca7b4f6cb2
|
4
|
+
data.tar.gz: 4222ca17292eb7950b5a3e7d94fb11266cd23048
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 34d2645bf720c9f94ba2fd34c5a81c798b90c5174f238799fecf7e92eaa6dd177fcd70cca8634da8995ca8ce1b26e32113d5e93cf747746d9d8228ae354fc550
|
7
|
+
data.tar.gz: 3b08839d6f8d0575d4151059c3c8b68772d628cd31bc5ad00f8a168ea84a78200ec72ae9447eaa0098ba2133756ab17576105d018f673c1abce2e334098305e4
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.979
|
data/lib/v20240522/client.rb
CHANGED
@@ -128,7 +128,7 @@ module TencentCloud
|
|
128
128
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
129
129
|
end
|
130
130
|
|
131
|
-
#
|
131
|
+
# 用于创建一个文档拆分任务,支持多种文件类型,具备mllm能力,能够解析并深入理解图表中的信息。
|
132
132
|
|
133
133
|
# @param request: Request instance for CreateSplitDocumentFlow.
|
134
134
|
# @type request: :class:`Tencentcloud::lkeap::V20240522::CreateSplitDocumentFlowRequest`
|
data/lib/v20240522/models.rb
CHANGED
@@ -358,19 +358,35 @@ module TencentCloud
|
|
358
358
|
|
359
359
|
# CreateSplitDocumentFlow请求参数结构体
|
360
360
|
class CreateSplitDocumentFlowRequest < TencentCloud::Common::AbstractModel
|
361
|
-
# @param FileType:
|
361
|
+
# @param FileType: 文件类型。
|
362
|
+
|
363
|
+
# **支持的文件类型:**
|
364
|
+
# - `PDF`、`DOC`、`DOCX`、`XLS`、`XLSX`、`PPT`、`PPTX`、`MD`、`TXT`、`PNG`、`JPG`、`JPEG`、`CSV`、`HTML`、`EPUB`
|
365
|
+
|
366
|
+
# **支持的文件大小:**
|
367
|
+
# - `PDF`、`DOCX`、`DOC`、`PPT`、`PPTX` 最大 200M
|
368
|
+
# - `TXT`、`MD` 最大10M
|
369
|
+
# - 其他 最大20M
|
362
370
|
# @type FileType: String
|
363
|
-
# @param FileUrl: 文件的
|
371
|
+
# @param FileUrl: 文件的 URL 地址。
|
372
|
+
# 文件存储于腾讯云的 URL 可保障更高的下载速度和稳定性,建议文件存储于腾讯云。 非腾讯云存储的 URL 速度和稳定性可能受一定影响。
|
373
|
+
# 参考:[腾讯云COS文档](https://cloud.tencent.com/document/product/436/7749)
|
364
374
|
# @type FileUrl: String
|
365
|
-
# @param FileName:
|
375
|
+
# @param FileName: 文件名,可选。
|
376
|
+
# **需带文件类型后缀**,当文件名无法从传入的`FileUrl`获取时需要通过该字段来明确。
|
366
377
|
# @type FileName: String
|
367
|
-
# @param FileBase64: 文件的 Base64
|
378
|
+
# @param FileBase64: 文件的 Base64 值。
|
379
|
+
# 支持的文件大小:所下载文件经Base64编码后不超过 8M。文件下载时间不超过 3 秒。
|
380
|
+
# 支持的图片像素:单边介于20-10000px之间。
|
381
|
+
# 文件的 FileUrl、FileBase64 必须提供一个,如果都提供,只使用 FileUrl。
|
368
382
|
# @type FileBase64: String
|
369
|
-
# @param FileStartPageNumber:
|
383
|
+
# @param FileStartPageNumber: 文档的起始页码。
|
384
|
+
# 当传入文件是PDF、PDF、PPT、PPTX、DOC类型时,用来指定识别的起始页码,识别的页码包含当前值。
|
370
385
|
# @type FileStartPageNumber: Integer
|
371
|
-
# @param FileEndPageNumber:
|
386
|
+
# @param FileEndPageNumber: 文档的结束页码。
|
387
|
+
# 当传入文件是PDF、PDF、PPT、PPTX、DOC类型时,用来指定识别的结束页码,识别的页码包含当前值。
|
372
388
|
# @type FileEndPageNumber: Integer
|
373
|
-
# @param Config:
|
389
|
+
# @param Config: 文档拆分任务的配置信息。
|
374
390
|
# @type Config: :class:`Tencentcloud::Lkeap.v20240522.models.CreateSplitDocumentFlowConfig`
|
375
391
|
|
376
392
|
attr_accessor :FileType, :FileUrl, :FileName, :FileBase64, :FileStartPageNumber, :FileEndPageNumber, :Config
|
@@ -404,7 +420,8 @@ module TencentCloud
|
|
404
420
|
|
405
421
|
# CreateSplitDocumentFlow返回参数结构体
|
406
422
|
class CreateSplitDocumentFlowResponse < TencentCloud::Common::AbstractModel
|
407
|
-
# @param TaskId:
|
423
|
+
# @param TaskId: 拆分任务唯一ID。
|
424
|
+
# 30天内可以通过`GetSplitDocumentResult`接口查询TaskId对应的拆分结果。
|
408
425
|
# @type TaskId: String
|
409
426
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
410
427
|
# @type RequestId: String
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-lkeap
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.979
|
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-01-
|
11
|
+
date: 2025-01-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|