@1presence/bridge 0.92.0 → 0.93.0
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 +2 -2
- package/dist/config.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -55,11 +55,11 @@ On startup the bridge makes one request to the public npm registry (`registry.np
|
|
|
55
55
|
|
|
56
56
|
## Model
|
|
57
57
|
|
|
58
|
-
**Every start** the bridge asks which Claude model to use — the choice is held in memory for that run only and nothing is written to disk, so restarting always asks again. Pick "Use Claude Code default" to defer to your local Claude Code default, or pin one of the latest models per family: `claude-opus-5`, `claude-fable-5`, `claude-sonnet-5`, `claude-haiku-4-5`. If the prompt times out it auto-selects "Use Claude Code default", which tracks whatever model Claude Code serves for your plan.
|
|
58
|
+
**Every start** the bridge asks which Claude model to use — the choice is held in memory for that run only and nothing is written to disk, so restarting always asks again. Pick "Use Claude Code default" to defer to your local Claude Code default, or pin one of the latest models per family: `claude-opus-5`, `claude-fable-5-1`, `claude-sonnet-5`, `claude-haiku-4-5`. If the prompt times out it auto-selects "Use Claude Code default", which tracks whatever model Claude Code serves for your plan.
|
|
59
59
|
|
|
60
60
|
**Press `Esc` at any time** to change model without restarting — no signing in again, and nothing in flight is lost. The new model applies to your next message; a reply already being written finishes on the one it started with. `Esc` again closes the menu without changing anything. While the bridge is running it also takes `Ctrl+C` to stop and `Ctrl+Z` to suspend.
|
|
61
61
|
|
|
62
|
-
Superseded versions (`claude-opus-4-8`, `claude-sonnet-4-6`, …) are deliberately not listed. If you need something other than the latest, use "Use Claude Code default" and set the model in Claude Code itself.
|
|
62
|
+
Superseded versions (`claude-opus-4-8`, `claude-fable-5`, `claude-sonnet-4-6`, …) are deliberately not listed. If you need something other than the latest, use "Use Claude Code default" and set the model in Claude Code itself.
|
|
63
63
|
|
|
64
64
|
Every reply prints the model, the account it ran for, and your context/cost usage, so you can always see what is running — and if the model that answered isn't the one you pinned, the bridge says so explicitly. Note that only **one bridge per account** serves your turns: start a second one and the older process exits, because otherwise your turns could be answered by a terminal you aren't watching, on the model *it* pinned.
|
|
65
65
|
|
package/dist/config.js
CHANGED
|
@@ -55,7 +55,7 @@ function detectClaudeDefaultModel() {
|
|
|
55
55
|
const MODEL_OPTIONS = [
|
|
56
56
|
{ num: 1, model: null, label: 'Use Claude Code default' },
|
|
57
57
|
{ num: 2, model: 'claude-opus-5', label: 'claude-opus-5' },
|
|
58
|
-
{ num: 3, model: 'claude-fable-5', label: 'claude-fable-5' },
|
|
58
|
+
{ num: 3, model: 'claude-fable-5-1', label: 'claude-fable-5-1' },
|
|
59
59
|
{ num: 4, model: 'claude-sonnet-5', label: 'claude-sonnet-5' },
|
|
60
60
|
{ num: 5, model: 'claude-haiku-4-5', label: 'claude-haiku-4-5' },
|
|
61
61
|
];
|