@tokenaut/opentoken 1.3.5 → 1.3.6

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 CHANGED
@@ -114,5 +114,3 @@ opentoken cx --key <your-api-key> --model 5.5 --url https://omniroute.goio.uk/v1
114
114
  - `OPENAI_API_KEY`(写入 auth.json)
115
115
 
116
116
  默认 Base URL:`https://gw.opentoken.io/v1`
117
-
118
- opentoken cc --key sk-ot-v1-e7551b49a8c18f3f5b54dda11fb03f96f05a2aa7280bdeb9 --model opus --url https://gw.opentoken.io
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tokenaut/opentoken",
3
- "version": "1.3.5",
3
+ "version": "1.3.6",
4
4
  "description": "OpenToken Claude Code 一键配置 CLI",
5
5
  "main": "src/cli.js",
6
6
  "bin": {
package/src/config.js CHANGED
@@ -78,6 +78,7 @@ function applyConfig(patch) {
78
78
 
79
79
  if (patch.haikuModel !== undefined) {
80
80
  settings.env.ANTHROPIC_DEFAULT_HAIKU_MODEL = patch.haikuModel;
81
+ delete settings.env.ANTHROPIC_SMALL_FAST_MODEL;
81
82
  }
82
83
 
83
84
  mergeDefaultClaudeAuxEnv(settings.env);