bailian-cli 1.0.3 → 1.1.1
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/LICENSE +12 -11
- package/README.md +53 -20
- package/README_CN.md +41 -10
- package/dist/bailian.mjs +285 -141
- package/package.json +27 -9
- package/scripts/postinstall.js +0 -151
- package/skill/SKILL.md +0 -196
- package/skill/reference/app.md +0 -99
- package/skill/reference/auth.md +0 -96
- package/skill/reference/config.md +0 -91
- package/skill/reference/console.md +0 -40
- package/skill/reference/file.md +0 -48
- package/skill/reference/image.md +0 -116
- package/skill/reference/index.md +0 -95
- package/skill/reference/knowledge.md +0 -45
- package/skill/reference/memory.md +0 -195
- package/skill/reference/model.md +0 -51
- package/skill/reference/omni.md +0 -74
- package/skill/reference/search.md +0 -48
- package/skill/reference/speech.md +0 -141
- package/skill/reference/text.md +0 -65
- package/skill/reference/update.md +0 -32
- package/skill/reference/usage.md +0 -43
- package/skill/reference/video.md +0 -207
- package/skill/reference/vision.md +0 -53
|
@@ -1,91 +0,0 @@
|
|
|
1
|
-
# `bl config` commands
|
|
2
|
-
|
|
3
|
-
> Auto-generated from `packages/cli/src/commands/catalog.ts`. Do not edit by hand.
|
|
4
|
-
> Regenerate: `pnpm --filter bailian-cli run generate:reference` (runs automatically on `build`).
|
|
5
|
-
|
|
6
|
-
Index: [index.md](index.md)
|
|
7
|
-
|
|
8
|
-
## Commands in this group
|
|
9
|
-
|
|
10
|
-
| Command | Description |
|
|
11
|
-
| --- | --- |
|
|
12
|
-
| `bl config export-schema` | Export all (or one) CLI command(s) as Anthropic/OpenAI-compatible JSON tool schemas |
|
|
13
|
-
| `bl config set` | Set a config value |
|
|
14
|
-
| `bl config show` | Display current configuration |
|
|
15
|
-
|
|
16
|
-
## Command details
|
|
17
|
-
|
|
18
|
-
### `bl config export-schema`
|
|
19
|
-
|
|
20
|
-
| Field | Value |
|
|
21
|
-
| --- | --- |
|
|
22
|
-
| **Name** | `config export-schema` |
|
|
23
|
-
| **Description** | Export all (or one) CLI command(s) as Anthropic/OpenAI-compatible JSON tool schemas |
|
|
24
|
-
| **Usage** | `bl config export-schema [--command "<name>"]` |
|
|
25
|
-
|
|
26
|
-
#### Options
|
|
27
|
-
|
|
28
|
-
| Flag | Type | Required | Description |
|
|
29
|
-
| --- | --- | --- | --- |
|
|
30
|
-
| `--command <name>` | string | no | Export schema for a specific command only (e.g. "image generate") |
|
|
31
|
-
|
|
32
|
-
#### Examples
|
|
33
|
-
|
|
34
|
-
```bash
|
|
35
|
-
bl config export-schema
|
|
36
|
-
```
|
|
37
|
-
|
|
38
|
-
```bash
|
|
39
|
-
bl config export-schema --command "video generate"
|
|
40
|
-
```
|
|
41
|
-
|
|
42
|
-
### `bl config set`
|
|
43
|
-
|
|
44
|
-
| Field | Value |
|
|
45
|
-
| --- | --- |
|
|
46
|
-
| **Name** | `config set` |
|
|
47
|
-
| **Description** | Set a config value |
|
|
48
|
-
| **Usage** | `bl config set --key <key> --value <value>` |
|
|
49
|
-
|
|
50
|
-
#### Options
|
|
51
|
-
|
|
52
|
-
| Flag | Type | Required | Description |
|
|
53
|
-
| --- | --- | --- | --- |
|
|
54
|
-
| `--key <key>` | string | no | Config key (region, base_url, output, output_dir, timeout, api_key, access_token, default_*_model, access_key_id, access_key_secret, workspace_id) |
|
|
55
|
-
| `--value <value>` | string | no | Value to set |
|
|
56
|
-
|
|
57
|
-
#### Examples
|
|
58
|
-
|
|
59
|
-
```bash
|
|
60
|
-
bl config set --key output --value json
|
|
61
|
-
```
|
|
62
|
-
|
|
63
|
-
```bash
|
|
64
|
-
bl config set --key timeout --value 600
|
|
65
|
-
```
|
|
66
|
-
|
|
67
|
-
```bash
|
|
68
|
-
bl config set --key base_url --value https://dashscope.aliyuncs.com
|
|
69
|
-
```
|
|
70
|
-
|
|
71
|
-
### `bl config show`
|
|
72
|
-
|
|
73
|
-
| Field | Value |
|
|
74
|
-
| --- | --- |
|
|
75
|
-
| **Name** | `config show` |
|
|
76
|
-
| **Description** | Display current configuration |
|
|
77
|
-
| **Usage** | `bl config show` |
|
|
78
|
-
|
|
79
|
-
#### Options
|
|
80
|
-
|
|
81
|
-
_No command-specific options._
|
|
82
|
-
|
|
83
|
-
#### Examples
|
|
84
|
-
|
|
85
|
-
```bash
|
|
86
|
-
bl config show
|
|
87
|
-
```
|
|
88
|
-
|
|
89
|
-
```bash
|
|
90
|
-
bl config show --output json
|
|
91
|
-
```
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
# `bl console` commands
|
|
2
|
-
|
|
3
|
-
> Auto-generated from `packages/cli/src/commands/catalog.ts`. Do not edit by hand.
|
|
4
|
-
> Regenerate: `pnpm --filter bailian-cli run generate:reference` (runs automatically on `build`).
|
|
5
|
-
|
|
6
|
-
Index: [index.md](index.md)
|
|
7
|
-
|
|
8
|
-
## Commands in this group
|
|
9
|
-
|
|
10
|
-
| Command | Description |
|
|
11
|
-
| --- | --- |
|
|
12
|
-
| `bl console call` | Call a Bailian console API via the CLI gateway |
|
|
13
|
-
|
|
14
|
-
## Command details
|
|
15
|
-
|
|
16
|
-
### `bl console call`
|
|
17
|
-
|
|
18
|
-
| Field | Value |
|
|
19
|
-
| --- | --- |
|
|
20
|
-
| **Name** | `console call` |
|
|
21
|
-
| **Description** | Call a Bailian console API via the CLI gateway |
|
|
22
|
-
| **Usage** | `bl console call --api <api> --data <json> [flags]` |
|
|
23
|
-
|
|
24
|
-
#### Options
|
|
25
|
-
|
|
26
|
-
| Flag | Type | Required | Description |
|
|
27
|
-
| --- | --- | --- | --- |
|
|
28
|
-
| `--api <api>` | string | yes | API name (e.g. zeldaEasy.broadscope-bailian.memory-library.getLibraries) |
|
|
29
|
-
| `--data <json>` | string | yes | Request data as JSON string |
|
|
30
|
-
| `--region <region>` | string | no | API region (default: cn-beijing) |
|
|
31
|
-
|
|
32
|
-
#### Examples
|
|
33
|
-
|
|
34
|
-
```bash
|
|
35
|
-
bl console call --api zeldaEasy.broadscope-bailian.freeTrial.queryFreeTierQuota --data '{"queryFreeTierQuotaRequest":{"models":["qwen3-max"]}}'
|
|
36
|
-
```
|
|
37
|
-
|
|
38
|
-
```bash
|
|
39
|
-
bl console call --api some.api.name --data '{"key":"value"}' --region cn-beijing
|
|
40
|
-
```
|
package/skill/reference/file.md
DELETED
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
# `bl file` commands
|
|
2
|
-
|
|
3
|
-
> Auto-generated from `packages/cli/src/commands/catalog.ts`. Do not edit by hand.
|
|
4
|
-
> Regenerate: `pnpm --filter bailian-cli run generate:reference` (runs automatically on `build`).
|
|
5
|
-
|
|
6
|
-
Index: [index.md](index.md)
|
|
7
|
-
|
|
8
|
-
## Commands in this group
|
|
9
|
-
|
|
10
|
-
| Command | Description |
|
|
11
|
-
| --- | --- |
|
|
12
|
-
| `bl file upload` | Upload a local file to DashScope temporary storage (48h) |
|
|
13
|
-
|
|
14
|
-
## Command details
|
|
15
|
-
|
|
16
|
-
### `bl file upload`
|
|
17
|
-
|
|
18
|
-
| Field | Value |
|
|
19
|
-
| --- | --- |
|
|
20
|
-
| **Name** | `file upload` |
|
|
21
|
-
| **Description** | Upload a local file to DashScope temporary storage (48h) |
|
|
22
|
-
| **Usage** | `bl file upload --file <path> --model <model>` |
|
|
23
|
-
| **API docs** | [/developer-reference/get-temporary-file-url](https://help.aliyun.com/zh/model-studio/developer-reference/get-temporary-file-url) |
|
|
24
|
-
|
|
25
|
-
#### Options
|
|
26
|
-
|
|
27
|
-
| Flag | Type | Required | Description |
|
|
28
|
-
| --- | --- | --- | --- |
|
|
29
|
-
| `--file <path>` | string | yes | Local file to upload (image, video, audio) |
|
|
30
|
-
| `--model <model>` | string | yes | Target model name (file is bound to this model) |
|
|
31
|
-
|
|
32
|
-
#### Examples
|
|
33
|
-
|
|
34
|
-
```bash
|
|
35
|
-
bl file upload --file photo.jpg --model qwen-vl-max
|
|
36
|
-
```
|
|
37
|
-
|
|
38
|
-
```bash
|
|
39
|
-
bl file upload --file video.mp4 --model wan2.1-t2v-plus
|
|
40
|
-
```
|
|
41
|
-
|
|
42
|
-
```bash
|
|
43
|
-
bl file upload --file audio.wav --model qwen3-asr-flash
|
|
44
|
-
```
|
|
45
|
-
|
|
46
|
-
```bash
|
|
47
|
-
bl file upload --file cat.png --model qwen-image-2.0
|
|
48
|
-
```
|
package/skill/reference/image.md
DELETED
|
@@ -1,116 +0,0 @@
|
|
|
1
|
-
# `bl image` commands
|
|
2
|
-
|
|
3
|
-
> Auto-generated from `packages/cli/src/commands/catalog.ts`. Do not edit by hand.
|
|
4
|
-
> Regenerate: `pnpm --filter bailian-cli run generate:reference` (runs automatically on `build`).
|
|
5
|
-
|
|
6
|
-
Index: [index.md](index.md)
|
|
7
|
-
|
|
8
|
-
## Commands in this group
|
|
9
|
-
|
|
10
|
-
| Command | Description |
|
|
11
|
-
| --- | --- |
|
|
12
|
-
| `bl image edit` | Edit an existing image with text instructions (Qwen-Image) |
|
|
13
|
-
| `bl image generate` | Generate images (Qwen-Image / wan2.x) |
|
|
14
|
-
|
|
15
|
-
## Command details
|
|
16
|
-
|
|
17
|
-
### `bl image edit`
|
|
18
|
-
|
|
19
|
-
| Field | Value |
|
|
20
|
-
| --- | --- |
|
|
21
|
-
| **Name** | `image edit` |
|
|
22
|
-
| **Description** | Edit an existing image with text instructions (Qwen-Image) |
|
|
23
|
-
| **Usage** | `bl image edit --image <url> --prompt <text> [flags]` |
|
|
24
|
-
| **API docs** | [/developer-reference/qwen-image-edit-api](https://help.aliyun.com/zh/model-studio/developer-reference/qwen-image-edit-api) |
|
|
25
|
-
|
|
26
|
-
#### Options
|
|
27
|
-
|
|
28
|
-
| Flag | Type | Required | Description |
|
|
29
|
-
| --- | --- | --- | --- |
|
|
30
|
-
| `--image <url>` | array | yes | Source image URL or local file path (repeatable for multi-image merge) |
|
|
31
|
-
| `--prompt <text>` | string | yes | Edit instruction text |
|
|
32
|
-
| `--model <model>` | string | no | Model ID (default: qwen-image-2.0) |
|
|
33
|
-
| `--size <W*H>` | string | no | Output image size: ratio (3:4, 16:9) or pixels (2048*2048) |
|
|
34
|
-
| `--n <count>` | number | no | Number of images (default: 1, max: 6) |
|
|
35
|
-
| `--seed <n>` | number | no | Random seed for reproducible results |
|
|
36
|
-
| `--negative-prompt <text>` | string | no | Negative prompt to exclude unwanted content |
|
|
37
|
-
| `--prompt-extend` | boolean | no | Enable prompt smart rewrite (default: true) |
|
|
38
|
-
| `--no-prompt-extend` | boolean | no | Disable prompt extend |
|
|
39
|
-
| `--watermark` | boolean | no | Add watermark to output images |
|
|
40
|
-
| `--out-dir <dir>` | string | no | Download images to directory |
|
|
41
|
-
| `--out-prefix <prefix>` | string | no | Filename prefix (default: edited) |
|
|
42
|
-
|
|
43
|
-
#### Examples
|
|
44
|
-
|
|
45
|
-
```bash
|
|
46
|
-
bl image edit --image ./photo.png --prompt "把背景换成海滩"
|
|
47
|
-
```
|
|
48
|
-
|
|
49
|
-
```bash
|
|
50
|
-
bl image edit --image https://example.com/logo.png --prompt "Change color to blue" --n 3
|
|
51
|
-
```
|
|
52
|
-
|
|
53
|
-
```bash
|
|
54
|
-
bl image edit --image ./a.png --image ./b.png --prompt "把两张图合并成一张拼图"
|
|
55
|
-
```
|
|
56
|
-
|
|
57
|
-
```bash
|
|
58
|
-
bl image edit --image https://example.com/photo.png --prompt "Remove the person" --model qwen-image-2.0-pro
|
|
59
|
-
```
|
|
60
|
-
|
|
61
|
-
### `bl image generate`
|
|
62
|
-
|
|
63
|
-
| Field | Value |
|
|
64
|
-
| --- | --- |
|
|
65
|
-
| **Name** | `image generate` |
|
|
66
|
-
| **Description** | Generate images (Qwen-Image / wan2.x) |
|
|
67
|
-
| **Usage** | `bl image generate --prompt <text> [flags]` |
|
|
68
|
-
| **API docs** | [/best-practice/wanx/text-to-image](https://help.aliyun.com/zh/model-studio/best-practice/wanx/text-to-image) |
|
|
69
|
-
|
|
70
|
-
#### Options
|
|
71
|
-
|
|
72
|
-
| Flag | Type | Required | Description |
|
|
73
|
-
| --- | --- | --- | --- |
|
|
74
|
-
| `--prompt <text>` | string | yes | Image description |
|
|
75
|
-
| `--model <model>` | string | no | Model ID (default: qwen-image-2.0) |
|
|
76
|
-
| `--size <W*H>` | string | no | Image size: ratio (3:4, 16:9, 1:1) or pixels (2048*2048) |
|
|
77
|
-
| `--n <count>` | number | no | Number of images per request (default: 1, max: 6) |
|
|
78
|
-
| `--seed <n>` | number | no | Random seed for reproducible generation |
|
|
79
|
-
| `--negative-prompt <text>` | string | no | Negative prompt to exclude unwanted content |
|
|
80
|
-
| `--prompt-extend` | boolean | no | Automatically extend prompt for better results (default: true for qwen-image) |
|
|
81
|
-
| `--no-prompt-extend` | boolean | no | Disable prompt extend |
|
|
82
|
-
| `--watermark` | boolean | no | Add watermark to generated images |
|
|
83
|
-
| `--no-wait` | boolean | no | Return task ID immediately without waiting (async models only) |
|
|
84
|
-
| `--out-dir <dir>` | string | no | Download images to directory |
|
|
85
|
-
| `--out-prefix <prefix>` | string | no | Filename prefix (default: image) |
|
|
86
|
-
| `--poll-interval <seconds>` | number | no | Polling interval when waiting (default: 3) |
|
|
87
|
-
|
|
88
|
-
#### Examples
|
|
89
|
-
|
|
90
|
-
```bash
|
|
91
|
-
bl image generate --prompt "一只穿太空服的猫在火星上"
|
|
92
|
-
```
|
|
93
|
-
|
|
94
|
-
```bash
|
|
95
|
-
bl image generate --prompt "Logo design" --n 3 --out-dir ./generated/
|
|
96
|
-
```
|
|
97
|
-
|
|
98
|
-
```bash
|
|
99
|
-
bl image generate --prompt "Mountain landscape" --size 2688*1536
|
|
100
|
-
```
|
|
101
|
-
|
|
102
|
-
```bash
|
|
103
|
-
bl image generate --prompt "A castle" --seed 42 --no-prompt-extend
|
|
104
|
-
```
|
|
105
|
-
|
|
106
|
-
```bash
|
|
107
|
-
bl image generate --prompt "sunset" --model wan2.6-t2i --no-wait --quiet
|
|
108
|
-
```
|
|
109
|
-
|
|
110
|
-
```bash
|
|
111
|
-
bl image generate --prompt "Pro quality" --model qwen-image-2.0-pro
|
|
112
|
-
```
|
|
113
|
-
|
|
114
|
-
```bash
|
|
115
|
-
bl image generate --prompt "Product shots" --n 2 --concurrent 3 # 6 images in parallel
|
|
116
|
-
```
|
package/skill/reference/index.md
DELETED
|
@@ -1,95 +0,0 @@
|
|
|
1
|
-
# bailian-cli (`bl`) command reference
|
|
2
|
-
|
|
3
|
-
> Auto-generated from `packages/cli/src/commands/catalog.ts`. Do not edit by hand.
|
|
4
|
-
> Regenerate: `pnpm --filter bailian-cli run generate:reference` (runs automatically on `build`).
|
|
5
|
-
|
|
6
|
-
Command **details** are in sibling `<group>.md` files in this directory.
|
|
7
|
-
Use this index for the full quick index and global flags.
|
|
8
|
-
|
|
9
|
-
## Quick index
|
|
10
|
-
|
|
11
|
-
| Command | Description | Detail |
|
|
12
|
-
| --- | --- | --- |
|
|
13
|
-
| `bl app call` | Call a Bailian application (agent or workflow) | [app.md](app.md) |
|
|
14
|
-
| `bl app list` | List Bailian applications | [app.md](app.md) |
|
|
15
|
-
| `bl auth login` | Authenticate with API key or console browser login (credentials can coexist) | [auth.md](auth.md) |
|
|
16
|
-
| `bl auth logout` | Clear stored credentials | [auth.md](auth.md) |
|
|
17
|
-
| `bl auth status` | Show current authentication state | [auth.md](auth.md) |
|
|
18
|
-
| `bl config export-schema` | Export all (or one) CLI command(s) as Anthropic/OpenAI-compatible JSON tool schemas | [config.md](config.md) |
|
|
19
|
-
| `bl config set` | Set a config value | [config.md](config.md) |
|
|
20
|
-
| `bl config show` | Display current configuration | [config.md](config.md) |
|
|
21
|
-
| `bl console call` | Call a Bailian console API via the CLI gateway | [console.md](console.md) |
|
|
22
|
-
| `bl file upload` | Upload a local file to DashScope temporary storage (48h) | [file.md](file.md) |
|
|
23
|
-
| `bl image edit` | Edit an existing image with text instructions (Qwen-Image) | [image.md](image.md) |
|
|
24
|
-
| `bl image generate` | Generate images (Qwen-Image / wan2.x) | [image.md](image.md) |
|
|
25
|
-
| `bl knowledge retrieve` | Retrieve from a Bailian knowledge base (requires AK/SK) | [knowledge.md](knowledge.md) |
|
|
26
|
-
| `bl memory add` | Add memory from messages or custom content | [memory.md](memory.md) |
|
|
27
|
-
| `bl memory delete` | Delete a memory node | [memory.md](memory.md) |
|
|
28
|
-
| `bl memory list` | List memory nodes for a user | [memory.md](memory.md) |
|
|
29
|
-
| `bl memory profile create` | Create a user profile schema for memory profiling | [memory.md](memory.md) |
|
|
30
|
-
| `bl memory profile get` | Get user profile by schema ID and user ID | [memory.md](memory.md) |
|
|
31
|
-
| `bl memory search` | Search memory nodes by query or messages | [memory.md](memory.md) |
|
|
32
|
-
| `bl memory update` | Update a memory node content | [memory.md](memory.md) |
|
|
33
|
-
| `bl model list` | List available foundation models | [model.md](model.md) |
|
|
34
|
-
| `bl omni` | Multimodal chat with text + audio output (Qwen-Omni) | [omni.md](omni.md) |
|
|
35
|
-
| `bl search web` | Search the web using DashScope MCP WebSearch service | [search.md](search.md) |
|
|
36
|
-
| `bl speech recognize` | Recognize speech from audio files (FunAudio-ASR) | [speech.md](speech.md) |
|
|
37
|
-
| `bl speech synthesize` | Synthesize speech from text (CosyVoice TTS) | [speech.md](speech.md) |
|
|
38
|
-
| `bl text chat` | Send a chat completion (OpenAI compatible, DashScope) | [text.md](text.md) |
|
|
39
|
-
| `bl update` | Update bl to the latest version | [update.md](update.md) |
|
|
40
|
-
| `bl usage free` | Query free-tier quota for a model | [usage.md](usage.md) |
|
|
41
|
-
| `bl video download` | Download a completed video by task ID | [video.md](video.md) |
|
|
42
|
-
| `bl video edit` | Edit a video with happyhorse-1.0-video-edit (style transfer, object replacement, etc.) | [video.md](video.md) |
|
|
43
|
-
| `bl video generate` | Generate a video from text or image (happyhorse-1.0-t2v / happyhorse-1.0-i2v / wan2.6-t2v) | [video.md](video.md) |
|
|
44
|
-
| `bl video ref` | Reference-to-video generation (happyhorse-1.0-r2v / wan2.6-r2v): multi-subject, multi-shot with voice | [video.md](video.md) |
|
|
45
|
-
| `bl video task get` | Query async task status | [video.md](video.md) |
|
|
46
|
-
| `bl vision describe` | Describe an image or video using Qwen-VL | [vision.md](vision.md) |
|
|
47
|
-
|
|
48
|
-
## By group
|
|
49
|
-
|
|
50
|
-
| Group | Commands | Reference |
|
|
51
|
-
| --- | --- | --- |
|
|
52
|
-
| `app` | `call`, `list` | [app.md](app.md) |
|
|
53
|
-
| `auth` | `login`, `logout`, `status` | [auth.md](auth.md) |
|
|
54
|
-
| `config` | `export-schema`, `set`, `show` | [config.md](config.md) |
|
|
55
|
-
| `console` | `call` | [console.md](console.md) |
|
|
56
|
-
| `file` | `upload` | [file.md](file.md) |
|
|
57
|
-
| `image` | `edit`, `generate` | [image.md](image.md) |
|
|
58
|
-
| `knowledge` | `retrieve` | [knowledge.md](knowledge.md) |
|
|
59
|
-
| `memory` | `add`, `delete`, `list`, `profile create`, `profile get`, `search`, `update` | [memory.md](memory.md) |
|
|
60
|
-
| `model` | `list` | [model.md](model.md) |
|
|
61
|
-
| `omni` | `(root)` | [omni.md](omni.md) |
|
|
62
|
-
| `search` | `web` | [search.md](search.md) |
|
|
63
|
-
| `speech` | `recognize`, `synthesize` | [speech.md](speech.md) |
|
|
64
|
-
| `text` | `chat` | [text.md](text.md) |
|
|
65
|
-
| `update` | `(root)` | [update.md](update.md) |
|
|
66
|
-
| `usage` | `free` | [usage.md](usage.md) |
|
|
67
|
-
| `video` | `download`, `edit`, `generate`, `ref`, `task get` | [video.md](video.md) |
|
|
68
|
-
| `vision` | `describe` | [vision.md](vision.md) |
|
|
69
|
-
|
|
70
|
-
## Global flags
|
|
71
|
-
|
|
72
|
-
Available on every command (in addition to command-specific options):
|
|
73
|
-
|
|
74
|
-
| Flag | Type | Required | Description |
|
|
75
|
-
| --- | --- | --- | --- |
|
|
76
|
-
| `--api-key <key>` | string | no | API key |
|
|
77
|
-
| `--region <region>` | string | no | API region: cn (default), us, intl |
|
|
78
|
-
| `--base-url <url>` | string | no | API base URL |
|
|
79
|
-
| `--output <format>` | string | no | Output format: text, json |
|
|
80
|
-
| `--timeout <seconds>` | number | no | Request timeout |
|
|
81
|
-
| `--quiet` | boolean | no | Suppress non-essential output |
|
|
82
|
-
| `--verbose` | boolean | no | Print HTTP request/response details |
|
|
83
|
-
| `--no-color` | boolean | no | Disable ANSI colors |
|
|
84
|
-
| `--dry-run` | boolean | no | Dry run mode |
|
|
85
|
-
| `--non-interactive` | boolean | no | Disable interactive prompts |
|
|
86
|
-
| `--concurrent <n>` | number | no | Run N parallel requests (default: 1) |
|
|
87
|
-
| `--help` | boolean | no | Show help |
|
|
88
|
-
| `--version` | boolean | no | Print version |
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
## Notes
|
|
92
|
-
|
|
93
|
-
- Console commands (`app list`, `model list`, `usage free`, `console call`) require `bl auth login --console`.
|
|
94
|
-
- Most API commands use `DASHSCOPE_API_KEY` or `bl auth login --api-key`.
|
|
95
|
-
- Default output: **text** in TTY; **json** when piped.
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
# `bl knowledge` commands
|
|
2
|
-
|
|
3
|
-
> Auto-generated from `packages/cli/src/commands/catalog.ts`. Do not edit by hand.
|
|
4
|
-
> Regenerate: `pnpm --filter bailian-cli run generate:reference` (runs automatically on `build`).
|
|
5
|
-
|
|
6
|
-
Index: [index.md](index.md)
|
|
7
|
-
|
|
8
|
-
## Commands in this group
|
|
9
|
-
|
|
10
|
-
| Command | Description |
|
|
11
|
-
| --- | --- |
|
|
12
|
-
| `bl knowledge retrieve` | Retrieve from a Bailian knowledge base (requires AK/SK) |
|
|
13
|
-
|
|
14
|
-
## Command details
|
|
15
|
-
|
|
16
|
-
### `bl knowledge retrieve`
|
|
17
|
-
|
|
18
|
-
| Field | Value |
|
|
19
|
-
| --- | --- |
|
|
20
|
-
| **Name** | `knowledge retrieve` |
|
|
21
|
-
| **Description** | Retrieve from a Bailian knowledge base (requires AK/SK) |
|
|
22
|
-
| **Usage** | `bl knowledge retrieve --index-id <id> --query <text> [flags]` |
|
|
23
|
-
|
|
24
|
-
#### Options
|
|
25
|
-
|
|
26
|
-
| Flag | Type | Required | Description |
|
|
27
|
-
| --- | --- | --- | --- |
|
|
28
|
-
| `--index-id <id>` | string | yes | Knowledge base index ID (required) |
|
|
29
|
-
| `--query <text>` | string | yes | Search query (required) |
|
|
30
|
-
| `--workspace-id <id>` | string | no | Bailian workspace ID (or env BAILIAN_WORKSPACE_ID) |
|
|
31
|
-
| `--top-k <n>` | number | no | Number of results (default: 10) |
|
|
32
|
-
| `--rerank` | boolean | no | Enable rerank |
|
|
33
|
-
| `--rerank-top-n <n>` | number | no | Rerank top N results |
|
|
34
|
-
| `--access-key-id <key>` | string | no | Alibaba Cloud Access Key ID (or env) |
|
|
35
|
-
| `--access-key-secret <key>` | string | no | Alibaba Cloud Access Key Secret (or env) |
|
|
36
|
-
|
|
37
|
-
#### Examples
|
|
38
|
-
|
|
39
|
-
```bash
|
|
40
|
-
bl knowledge retrieve --index-id idx_xxx --query "如何使用阿里云百炼" --workspace-id ws_xxx
|
|
41
|
-
```
|
|
42
|
-
|
|
43
|
-
```bash
|
|
44
|
-
bl knowledge retrieve --index-id idx_xxx --query "API限流" --top-k 5 --rerank
|
|
45
|
-
```
|
|
@@ -1,195 +0,0 @@
|
|
|
1
|
-
# `bl memory` commands
|
|
2
|
-
|
|
3
|
-
> Auto-generated from `packages/cli/src/commands/catalog.ts`. Do not edit by hand.
|
|
4
|
-
> Regenerate: `pnpm --filter bailian-cli run generate:reference` (runs automatically on `build`).
|
|
5
|
-
|
|
6
|
-
Index: [index.md](index.md)
|
|
7
|
-
|
|
8
|
-
## Commands in this group
|
|
9
|
-
|
|
10
|
-
| Command | Description |
|
|
11
|
-
| --- | --- |
|
|
12
|
-
| `bl memory add` | Add memory from messages or custom content |
|
|
13
|
-
| `bl memory delete` | Delete a memory node |
|
|
14
|
-
| `bl memory list` | List memory nodes for a user |
|
|
15
|
-
| `bl memory profile create` | Create a user profile schema for memory profiling |
|
|
16
|
-
| `bl memory profile get` | Get user profile by schema ID and user ID |
|
|
17
|
-
| `bl memory search` | Search memory nodes by query or messages |
|
|
18
|
-
| `bl memory update` | Update a memory node content |
|
|
19
|
-
|
|
20
|
-
## Command details
|
|
21
|
-
|
|
22
|
-
### `bl memory add`
|
|
23
|
-
|
|
24
|
-
| Field | Value |
|
|
25
|
-
| --- | --- |
|
|
26
|
-
| **Name** | `memory add` |
|
|
27
|
-
| **Description** | Add memory from messages or custom content |
|
|
28
|
-
| **Usage** | `bl memory add --user-id <id> [--messages <json>] [--content <text>] [flags]` |
|
|
29
|
-
|
|
30
|
-
#### Options
|
|
31
|
-
|
|
32
|
-
| Flag | Type | Required | Description |
|
|
33
|
-
| --- | --- | --- | --- |
|
|
34
|
-
| `--user-id <id>` | string | yes | User ID (required) |
|
|
35
|
-
| `--messages <json>` | string | no | Messages JSON array: [{"role":"user","content":"..."},...] |
|
|
36
|
-
| `--content <text>` | string | no | Custom content text to memorize |
|
|
37
|
-
| `--profile-schema <id>` | string | no | Profile schema ID for user profiling |
|
|
38
|
-
| `--memory-library-id <id>` | string | no | Memory library ID (isolate memory space) |
|
|
39
|
-
|
|
40
|
-
#### Examples
|
|
41
|
-
|
|
42
|
-
```bash
|
|
43
|
-
bl memory add --user-id user1 --content "用户喜欢Python编程"
|
|
44
|
-
```
|
|
45
|
-
|
|
46
|
-
```bash
|
|
47
|
-
bl memory add --user-id user1 --messages '[{"role":"user","content":"我喜欢旅行"}]'
|
|
48
|
-
```
|
|
49
|
-
|
|
50
|
-
```bash
|
|
51
|
-
bl memory add --user-id user1 --content "住在北京" --profile-schema schema_xxx
|
|
52
|
-
```
|
|
53
|
-
|
|
54
|
-
### `bl memory delete`
|
|
55
|
-
|
|
56
|
-
| Field | Value |
|
|
57
|
-
| --- | --- |
|
|
58
|
-
| **Name** | `memory delete` |
|
|
59
|
-
| **Description** | Delete a memory node |
|
|
60
|
-
| **Usage** | `bl memory delete --node-id <id> --user-id <id>` |
|
|
61
|
-
|
|
62
|
-
#### Options
|
|
63
|
-
|
|
64
|
-
| Flag | Type | Required | Description |
|
|
65
|
-
| --- | --- | --- | --- |
|
|
66
|
-
| `--node-id <id>` | string | yes | Memory node ID (required) |
|
|
67
|
-
| `--user-id <id>` | string | yes | User ID (required) |
|
|
68
|
-
| `--memory-library-id <id>` | string | no | Memory library ID (non-default library) |
|
|
69
|
-
|
|
70
|
-
#### Examples
|
|
71
|
-
|
|
72
|
-
```bash
|
|
73
|
-
bl memory delete --node-id node_xxx --user-id user1
|
|
74
|
-
```
|
|
75
|
-
|
|
76
|
-
### `bl memory list`
|
|
77
|
-
|
|
78
|
-
| Field | Value |
|
|
79
|
-
| --- | --- |
|
|
80
|
-
| **Name** | `memory list` |
|
|
81
|
-
| **Description** | List memory nodes for a user |
|
|
82
|
-
| **Usage** | `bl memory list --user-id <id> [flags]` |
|
|
83
|
-
|
|
84
|
-
#### Options
|
|
85
|
-
|
|
86
|
-
| Flag | Type | Required | Description |
|
|
87
|
-
| --- | --- | --- | --- |
|
|
88
|
-
| `--user-id <id>` | string | yes | User ID (required) |
|
|
89
|
-
| `--page-size <n>` | number | no | Results per page (default: 10) |
|
|
90
|
-
| `--page <n>` | number | no | Page number (default: 1) |
|
|
91
|
-
| `--memory-library-id <id>` | string | no | Memory library ID |
|
|
92
|
-
|
|
93
|
-
#### Examples
|
|
94
|
-
|
|
95
|
-
```bash
|
|
96
|
-
bl memory list --user-id user1
|
|
97
|
-
```
|
|
98
|
-
|
|
99
|
-
```bash
|
|
100
|
-
bl memory list --user-id user1 --page-size 20 --page 2
|
|
101
|
-
```
|
|
102
|
-
|
|
103
|
-
### `bl memory profile create`
|
|
104
|
-
|
|
105
|
-
| Field | Value |
|
|
106
|
-
| --- | --- |
|
|
107
|
-
| **Name** | `memory profile create` |
|
|
108
|
-
| **Description** | Create a user profile schema for memory profiling |
|
|
109
|
-
| **Usage** | `bl memory profile create --name <name> --attributes <json> [flags]` |
|
|
110
|
-
|
|
111
|
-
#### Options
|
|
112
|
-
|
|
113
|
-
| Flag | Type | Required | Description |
|
|
114
|
-
| --- | --- | --- | --- |
|
|
115
|
-
| `--name <name>` | string | yes | Schema name (required) |
|
|
116
|
-
| `--description <text>` | string | no | Schema description |
|
|
117
|
-
| `--attributes <json>` | string | yes | Attributes JSON array: [{"name":"age","description":"年龄"}] |
|
|
118
|
-
|
|
119
|
-
#### Examples
|
|
120
|
-
|
|
121
|
-
```bash
|
|
122
|
-
bl memory profile create --name "user_basic" --attributes '[{"name":"age","description":"年龄"},{"name":"hobby","description":"爱好"}]'
|
|
123
|
-
```
|
|
124
|
-
|
|
125
|
-
### `bl memory profile get`
|
|
126
|
-
|
|
127
|
-
| Field | Value |
|
|
128
|
-
| --- | --- |
|
|
129
|
-
| **Name** | `memory profile get` |
|
|
130
|
-
| **Description** | Get user profile by schema ID and user ID |
|
|
131
|
-
| **Usage** | `bl memory profile get --schema-id <id> --user-id <id>` |
|
|
132
|
-
|
|
133
|
-
#### Options
|
|
134
|
-
|
|
135
|
-
| Flag | Type | Required | Description |
|
|
136
|
-
| --- | --- | --- | --- |
|
|
137
|
-
| `--schema-id <id>` | string | yes | Profile schema ID (required) |
|
|
138
|
-
| `--user-id <id>` | string | yes | User ID (required) |
|
|
139
|
-
|
|
140
|
-
#### Examples
|
|
141
|
-
|
|
142
|
-
```bash
|
|
143
|
-
bl memory profile get --schema-id schema_xxx --user-id user1
|
|
144
|
-
```
|
|
145
|
-
|
|
146
|
-
### `bl memory search`
|
|
147
|
-
|
|
148
|
-
| Field | Value |
|
|
149
|
-
| --- | --- |
|
|
150
|
-
| **Name** | `memory search` |
|
|
151
|
-
| **Description** | Search memory nodes by query or messages |
|
|
152
|
-
| **Usage** | `bl memory search --user-id <id> [--query <text>] [flags]` |
|
|
153
|
-
|
|
154
|
-
#### Options
|
|
155
|
-
|
|
156
|
-
| Flag | Type | Required | Description |
|
|
157
|
-
| --- | --- | --- | --- |
|
|
158
|
-
| `--user-id <id>` | string | yes | User ID (required) |
|
|
159
|
-
| `--query <text>` | string | no | Search query text |
|
|
160
|
-
| `--messages <json>` | string | no | Messages JSON array for context-based search |
|
|
161
|
-
| `--top-k <n>` | number | no | Number of results to return (default: 10) |
|
|
162
|
-
| `--memory-library-id <id>` | string | no | Memory library ID |
|
|
163
|
-
|
|
164
|
-
#### Examples
|
|
165
|
-
|
|
166
|
-
```bash
|
|
167
|
-
bl memory search --user-id user1 --query "编程偏好"
|
|
168
|
-
```
|
|
169
|
-
|
|
170
|
-
```bash
|
|
171
|
-
bl memory search --user-id user1 --messages '[{"role":"user","content":"推荐一本书"}]' --top-k 5
|
|
172
|
-
```
|
|
173
|
-
|
|
174
|
-
### `bl memory update`
|
|
175
|
-
|
|
176
|
-
| Field | Value |
|
|
177
|
-
| --- | --- |
|
|
178
|
-
| **Name** | `memory update` |
|
|
179
|
-
| **Description** | Update a memory node content |
|
|
180
|
-
| **Usage** | `bl memory update --node-id <id> --user-id <id> --content <text>` |
|
|
181
|
-
|
|
182
|
-
#### Options
|
|
183
|
-
|
|
184
|
-
| Flag | Type | Required | Description |
|
|
185
|
-
| --- | --- | --- | --- |
|
|
186
|
-
| `--node-id <id>` | string | yes | Memory node ID (required) |
|
|
187
|
-
| `--user-id <id>` | string | yes | User ID (required) |
|
|
188
|
-
| `--content <text>` | string | yes | New content for the memory node (required) |
|
|
189
|
-
| `--memory-library-id <id>` | string | no | Memory library ID (non-default library) |
|
|
190
|
-
|
|
191
|
-
#### Examples
|
|
192
|
-
|
|
193
|
-
```bash
|
|
194
|
-
bl memory update --node-id node_xxx --user-id user1 --content "更新后的记忆内容"
|
|
195
|
-
```
|
package/skill/reference/model.md
DELETED
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
# `bl model` commands
|
|
2
|
-
|
|
3
|
-
> Auto-generated from `packages/cli/src/commands/catalog.ts`. Do not edit by hand.
|
|
4
|
-
> Regenerate: `pnpm --filter bailian-cli run generate:reference` (runs automatically on `build`).
|
|
5
|
-
|
|
6
|
-
Index: [index.md](index.md)
|
|
7
|
-
|
|
8
|
-
## Commands in this group
|
|
9
|
-
|
|
10
|
-
| Command | Description |
|
|
11
|
-
| --- | --- |
|
|
12
|
-
| `bl model list` | List available foundation models |
|
|
13
|
-
|
|
14
|
-
## Command details
|
|
15
|
-
|
|
16
|
-
### `bl model list`
|
|
17
|
-
|
|
18
|
-
| Field | Value |
|
|
19
|
-
| --- | --- |
|
|
20
|
-
| **Name** | `model list` |
|
|
21
|
-
| **Description** | List available foundation models |
|
|
22
|
-
| **Usage** | `bl model list [flags]` |
|
|
23
|
-
|
|
24
|
-
#### Options
|
|
25
|
-
|
|
26
|
-
| Flag | Type | Required | Description |
|
|
27
|
-
| --- | --- | --- | --- |
|
|
28
|
-
| `--name <name>` | string | no | Filter by model name (keyword search) |
|
|
29
|
-
| `--page <n>` | number | no | Page number (default: 1) |
|
|
30
|
-
| `--page-size <n>` | number | no | Results per page (default: 50) |
|
|
31
|
-
| `--provider <name>` | array | no | Filter by model provider (repeatable) |
|
|
32
|
-
| `--capability <name>` | array | no | Filter by capability (repeatable) |
|
|
33
|
-
| `--region <region>` | string | no | API region (default: cn-beijing) |
|
|
34
|
-
|
|
35
|
-
#### Examples
|
|
36
|
-
|
|
37
|
-
```bash
|
|
38
|
-
bl model list
|
|
39
|
-
```
|
|
40
|
-
|
|
41
|
-
```bash
|
|
42
|
-
bl model list --name qwen
|
|
43
|
-
```
|
|
44
|
-
|
|
45
|
-
```bash
|
|
46
|
-
bl model list --page-size 20
|
|
47
|
-
```
|
|
48
|
-
|
|
49
|
-
```bash
|
|
50
|
-
bl model list --output json
|
|
51
|
-
```
|