clavue 9.0.6 → 9.0.7
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 +13 -12
- package/dist/cli.js +20 -20
- package/dist/mao-command.js +1 -1
- package/dist/openai-responses-adapter.js +1 -1
- package/dist/provider-setup.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Clavue v9.0.
|
|
1
|
+
# Clavue v9.0.7
|
|
2
2
|
|
|
3
3
|

|
|
4
4
|
|
|
@@ -65,8 +65,8 @@ npx -y clavue
|
|
|
65
65
|
Run a specific version with `npx`:
|
|
66
66
|
|
|
67
67
|
```bash
|
|
68
|
-
npx -y clavue@9.0.
|
|
69
|
-
npx -y clavue@9.0.
|
|
68
|
+
npx -y clavue@9.0.7 --version
|
|
69
|
+
npx -y clavue@9.0.7
|
|
70
70
|
```
|
|
71
71
|
|
|
72
72
|
Install globally from npm when you want the `clavue` command to stay available:
|
|
@@ -86,7 +86,7 @@ curl -fsSL https://unpkg.com/clavue/install.sh | bash
|
|
|
86
86
|
Install a specific version globally:
|
|
87
87
|
|
|
88
88
|
```bash
|
|
89
|
-
curl -fsSL https://unpkg.com/clavue@9.0.
|
|
89
|
+
curl -fsSL https://unpkg.com/clavue@9.0.7/install.sh | bash -s -- 9.0.7
|
|
90
90
|
```
|
|
91
91
|
|
|
92
92
|
### Troubleshooting: `ENOTEMPTY` / `bash: clavue: No such file or directory`
|
|
@@ -127,16 +127,17 @@ npm install -g clavue@latest
|
|
|
127
127
|
|
|
128
128
|
## Quick Start: Provider And Model Setup
|
|
129
129
|
|
|
130
|
-
Fastest path for custom API
|
|
130
|
+
Fastest path for custom API users:
|
|
131
131
|
|
|
132
132
|
1. Install with `curl -fsSL https://unpkg.com/clavue/install.sh | bash`
|
|
133
133
|
2. Start with `clavue`
|
|
134
|
-
3.
|
|
135
|
-
4.
|
|
136
|
-
5.
|
|
137
|
-
6.
|
|
138
|
-
7.
|
|
139
|
-
8. Run `/
|
|
134
|
+
3. At `请选择 API 配置模式`, choose `自定义 API 配置`.
|
|
135
|
+
4. At `请选择模型路由模式`, choose the family that matches your models.
|
|
136
|
+
5. At `请选择操作`, choose `1. 添加配置`.
|
|
137
|
+
6. Enter a profile name, API base URL, authentication type (`API Key` or `Auth Token`), credential, and model slots.
|
|
138
|
+
7. After saving, choose `no` at `返回主菜单?` to enter Clavue with the saved default profile.
|
|
139
|
+
8. Run `/provider` inside Clavue, or `clavue provider` from the shell, to reopen the provider manager.
|
|
140
|
+
9. Run `/model` only for main-session model selection. In combination mode it follows the current `/provider` Primary slot; helper and planning slots remain owned by `/provider`.
|
|
140
141
|
|
|
141
142
|
Recommended model-slot setup:
|
|
142
143
|
|
|
@@ -231,7 +232,7 @@ Version check:
|
|
|
231
232
|
```bash
|
|
232
233
|
clavue --version
|
|
233
234
|
npx -y clavue --version
|
|
234
|
-
npx -y clavue@9.0.
|
|
235
|
+
npx -y clavue@9.0.7 --version
|
|
235
236
|
# available after a global install and launcher setup
|
|
236
237
|
clavue --version
|
|
237
238
|
```
|