@laiye-adp/agentic-doc-parse-and-extract-cli 1.10.4 → 1.10.5
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.
- package/README.md +0 -3
- package/README.zh.md +4 -3
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -34,12 +34,10 @@ The skills package will guide you through CLI installation, authentication, and
|
|
|
34
34
|
# npm (recommended)
|
|
35
35
|
npm install -g @laiye-adp/agentic-doc-parse-and-extract-cli
|
|
36
36
|
```
|
|
37
|
-
|
|
38
37
|
```bash
|
|
39
38
|
# Linux / macOS
|
|
40
39
|
curl -fsSL https://raw.githubusercontent.com/laiye-ai/adp-cli/main/scripts/adp-init.sh | bash
|
|
41
40
|
```
|
|
42
|
-
|
|
43
41
|
```bash
|
|
44
42
|
# Windows (PowerShell)
|
|
45
43
|
irm https://raw.githubusercontent.com/laiye-ai/adp-cli/main/scripts/adp-init.ps1 | iex
|
|
@@ -130,7 +128,6 @@ adp credit
|
|
|
130
128
|
| `--no-wait` | Submit tasks only, do not wait for results (use with `--async`) |
|
|
131
129
|
| `--export <path>` | Export result to file (single file) or directory (batch) |
|
|
132
130
|
| `--timeout <seconds>` | Timeout (default 900s) |
|
|
133
|
-
| `--concurrency <n>` | Concurrent workers (free: max 1, paid: max 2) |
|
|
134
131
|
| `--retry <n>` | Retries for retryable errors (default 0) |
|
|
135
132
|
| `--file <path>` | Read task IDs from JSON file (output of `--no-wait`, query only) |
|
|
136
133
|
|
package/README.zh.md
CHANGED
|
@@ -33,10 +33,12 @@ Skills 会自动引导 CLI 安装、认证配置和使用。
|
|
|
33
33
|
```bash
|
|
34
34
|
# npm(推荐)
|
|
35
35
|
npm install -g @laiye-adp/agentic-doc-parse-and-extract-cli
|
|
36
|
-
|
|
36
|
+
```
|
|
37
|
+
```bash
|
|
37
38
|
# Linux / macOS
|
|
38
39
|
curl -fsSL https://raw.githubusercontent.com/laiye-ai/adp-cli/main/scripts/adp-init.sh | bash
|
|
39
|
-
|
|
40
|
+
```
|
|
41
|
+
```bash
|
|
40
42
|
# Windows(PowerShell)
|
|
41
43
|
irm https://raw.githubusercontent.com/laiye-ai/adp-cli/main/scripts/adp-init.ps1 | iex
|
|
42
44
|
```
|
|
@@ -126,7 +128,6 @@ adp credit
|
|
|
126
128
|
| `--no-wait` | 仅提交任务,不等待结果(与 `--async` 配合使用) |
|
|
127
129
|
| `--export <path>` | 导出结果到文件(单文件)或目录(批量) |
|
|
128
130
|
| `--timeout <seconds>` | 超时时间(默认 900 秒) |
|
|
129
|
-
| `--concurrency <n>` | 并发数(免费用户最大 1,付费用户最大 2) |
|
|
130
131
|
| `--retry <n>` | 可重试错误的重试次数(默认 0) |
|
|
131
132
|
| `--file <path>` | 从 JSON 文件读取任务 ID(`--no-wait` 的输出文件,仅 query 可用) |
|
|
132
133
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@laiye-adp/agentic-doc-parse-and-extract-cli",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.5",
|
|
4
4
|
"description": "Official CLI for Laiye ADP (Agentic Document Processing) - document parsing and intelligent extraction",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"adp",
|
|
@@ -39,11 +39,11 @@
|
|
|
39
39
|
"arm64"
|
|
40
40
|
],
|
|
41
41
|
"optionalDependencies": {
|
|
42
|
-
"@laiye-adp/adp-cli-linux-x64": "1.10.
|
|
43
|
-
"@laiye-adp/adp-cli-linux-arm64": "1.10.
|
|
44
|
-
"@laiye-adp/adp-cli-darwin-x64": "1.10.
|
|
45
|
-
"@laiye-adp/adp-cli-darwin-arm64": "1.10.
|
|
46
|
-
"@laiye-adp/adp-cli-win32-x64": "1.10.
|
|
47
|
-
"@laiye-adp/adp-cli-win32-arm64": "1.10.
|
|
42
|
+
"@laiye-adp/adp-cli-linux-x64": "1.10.5",
|
|
43
|
+
"@laiye-adp/adp-cli-linux-arm64": "1.10.5",
|
|
44
|
+
"@laiye-adp/adp-cli-darwin-x64": "1.10.5",
|
|
45
|
+
"@laiye-adp/adp-cli-darwin-arm64": "1.10.5",
|
|
46
|
+
"@laiye-adp/adp-cli-win32-x64": "1.10.5",
|
|
47
|
+
"@laiye-adp/adp-cli-win32-arm64": "1.10.5"
|
|
48
48
|
}
|
|
49
49
|
}
|