arqzero 2.1.0-beta.11 → 2.1.0-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.
package/CHANGELOG.md CHANGED
@@ -7,6 +7,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [2.1.0-beta.12] — 2026-05-23
11
+
12
+ ### Fixed
13
+ - `/provider <id>` now hot-swaps the active LLM adapter in-session — no
14
+ restart needed. Previously the command only wrote `~/.arqzero/config.json`
15
+ and the running engine kept streaming through the old provider, which
16
+ surfaced as confusing 401/404 errors when users tried to switch BYOK or
17
+ toggle managed inference mid-session. Adapter is rebuilt via
18
+ `buildProvider(config)` and installed on the engine immediately; any
19
+ in-flight stream on the old provider is aborted first.
20
+ - `/provider set <id> <key>` and `/provider use <models>` also rebuild
21
+ the adapter when they change the active provider's identity or default
22
+ model, so the next turn picks up the new state.
23
+
24
+ ### Added
25
+ - `ConversationEngine.setProvider(provider)` — public method to hot-swap
26
+ the active LLM adapter at runtime
27
+ - `SlashCommandContext.onProviderChange` callback so slash commands can
28
+ request a live adapter rebuild from the host TUI
29
+
10
30
  ## [2.1.0-beta.11] — 2026-05-23
11
31
 
12
32
  ### Changed