@inference/fast 0.0.7 → 0.0.8-beta.12

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.
Files changed (2) hide show
  1. package/README.md +7 -1
  2. package/package.json +5 -16
package/README.md CHANGED
@@ -15,6 +15,8 @@ npm install -g @inference/fast
15
15
  ```bash
16
16
  fast login
17
17
  fast claude on
18
+ fast claude on --model kimi-k3-fast
19
+ fast claude on --main kimi-k3-fast --sonnet glm-5.2
18
20
  fast codex on --model glm-5.2
19
21
  fast opencode status
20
22
  fast pi off
@@ -23,7 +25,11 @@ fast logout
23
25
  ```
24
26
 
25
27
  Calling a coding agent without `on` is equivalent to `on`, so `fast claude`
26
- is enough. Every `on` snapshots the agent's original config before changing it.
28
+ is enough. Claude Code has a default model per slot (`main`, `opus`, `sonnet`,
29
+ and `fable` use the default model; `haiku` and `subagents` use
30
+ `deepseek-v4-flash-0731`).
31
+ `--model` sets every slot at once; `--main`, `--opus`, `--sonnet`, `--haiku`,
32
+ `--fable`, and `--subagents` override one slot and win over `--model`. Every `on` snapshots the agent's original config before changing it.
27
33
  `off` restores that snapshot byte-for-byte. `logout` restores every connected
28
34
  agent and disables the API key created for this machine. The inference gateway
29
35
  can retain an already-used key in its authentication cache for up to three
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inference/fast",
3
- "version": "0.0.7",
3
+ "version": "0.0.8-beta.12",
4
4
  "description": "Connect coding agents to fast Inference.net models",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -24,10 +24,10 @@
24
24
  "pi"
25
25
  ],
26
26
  "optionalDependencies": {
27
- "@inference/fast-darwin-arm64": "0.0.7",
28
- "@inference/fast-darwin-x64": "0.0.7",
29
- "@inference/fast-linux-x64": "0.0.7",
30
- "@inference/fast-linux-arm64": "0.0.7"
27
+ "@inference/fast-darwin-arm64": "0.0.8-beta.12",
28
+ "@inference/fast-darwin-x64": "0.0.8-beta.12",
29
+ "@inference/fast-linux-x64": "0.0.8-beta.12",
30
+ "@inference/fast-linux-arm64": "0.0.8-beta.12"
31
31
  },
32
32
  "scripts": {
33
33
  "build": "bun run clean:bin && bun run build:cli",
@@ -50,16 +50,5 @@
50
50
  "tsc": "../../node_modules/typescript-7/bin/tsc --build",
51
51
  "test": "vitest run --config vitest.config.ts",
52
52
  "test:unit": "vitest run --config vitest.config.ts"
53
- },
54
- "devDependencies": {
55
- "@inference-net/auth": "workspace:*",
56
- "@inference-net/relay": "workspace:*",
57
- "@trpc/client": "11.4.0",
58
- "@types/bun": "1.3.14",
59
- "bun-types": "1.3.14",
60
- "chalk": "5.4.1",
61
- "commander": "13.1.0",
62
- "open": "10.1.0",
63
- "vitest": "4.1.10"
64
53
  }
65
54
  }