@inference/fast 0.0.14-beta.24 → 0.0.15

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 -2
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -20,6 +20,8 @@ fast claude on --main glm-5.2 --sonnet kimi-k3-fast
20
20
  fast codex on --model glm-5.2
21
21
  fast opencode status
22
22
  fast pi off
23
+ fast claude on --new-key
24
+ fast key rotate
23
25
  fast status
24
26
  fast logout
25
27
  ```
@@ -30,8 +32,11 @@ and `fable` use the default model; `haiku` and `subagents` use
30
32
  `deepseek-v4-flash-0731`).
31
33
  `--model` sets every slot at once; `--main`, `--opus`, `--sonnet`, `--haiku`,
32
34
  `--fable`, and `--subagents` override one slot and win over `--model`. Every `on` snapshots the agent's original config before changing it.
33
- `off` restores that snapshot byte-for-byte. `logout` restores every connected
34
- agent and disables the API key created for this machine. The inference gateway
35
+ `off` restores that snapshot byte-for-byte. Every `on` re-validates the saved
36
+ machine key against the gateway. `--new-key` (or `fast key rotate`) archives
37
+ that key, creates a new one, and rewrites every connected agent with it.
38
+ `logout` restores every connected agent and disables the API key created for
39
+ this machine. The inference gateway
35
40
  can retain an already-used key in its authentication cache for up to three
36
41
  minutes before it starts returning unauthorized responses.
37
42
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inference/fast",
3
- "version": "0.0.14-beta.24",
3
+ "version": "0.0.15",
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.14-beta.24",
28
- "@inference/fast-darwin-x64": "0.0.14-beta.24",
29
- "@inference/fast-linux-x64": "0.0.14-beta.24",
30
- "@inference/fast-linux-arm64": "0.0.14-beta.24"
27
+ "@inference/fast-darwin-arm64": "0.0.15",
28
+ "@inference/fast-darwin-x64": "0.0.15",
29
+ "@inference/fast-linux-x64": "0.0.15",
30
+ "@inference/fast-linux-arm64": "0.0.15"
31
31
  },
32
32
  "scripts": {
33
33
  "build": "bun run clean:bin && bun run build:cli",