ur-agent 1.27.5 → 1.27.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/CHANGELOG.md +9 -0
- package/README.md +9 -4
- package/dist/cli.js +1331 -861
- package/docs/CONFIGURATION.md +15 -2
- package/docs/USAGE.md +11 -5
- package/docs/providers.md +29 -27
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.27.6
|
|
4
|
+
|
|
5
|
+
- Route runtime requests through the selected provider/model pair instead of
|
|
6
|
+
allowing stale Ollama/default-provider paths to handle non-Ollama requests.
|
|
7
|
+
- Add runtime dispatch validation, backend labels, and focused mocked dispatch
|
|
8
|
+
tests for subscription CLI, API, Ollama, and OpenAI-compatible providers.
|
|
9
|
+
- Fix malformed message rendering from crashing startup when an undefined entry
|
|
10
|
+
appears in the UI message list.
|
|
11
|
+
|
|
3
12
|
## 1.27.5
|
|
4
13
|
|
|
5
14
|
- Make `/model` provider-first and provider-scoped, with clear subscription,
|
package/README.md
CHANGED
|
@@ -143,9 +143,11 @@ ur --ollama-host http://192.168.1.50:11434
|
|
|
143
143
|
ur --discover-ollama
|
|
144
144
|
```
|
|
145
145
|
|
|
146
|
-
|
|
147
|
-
router over the configured Ollama host.
|
|
148
|
-
|
|
146
|
+
For Ollama sessions, model selection precedence is `OLLAMA_MODEL`, then
|
|
147
|
+
`UR_MODEL`, then the model router over the configured Ollama host. Once a
|
|
148
|
+
provider/model pair is selected with `/model` or `ur config set`, runtime
|
|
149
|
+
requests use that provider backend; they do not fall back to Ollama unless
|
|
150
|
+
`ollama` is the selected provider.
|
|
149
151
|
|
|
150
152
|
### Legal Provider Auth
|
|
151
153
|
|
|
@@ -195,7 +197,10 @@ Use quotes for shell values with spaces.
|
|
|
195
197
|
In the interactive app, `/model` shows providers first and then shows only the
|
|
196
198
|
selected provider's models. OpenAI API and Codex CLI, Claude API and Claude
|
|
197
199
|
Code, and Gemini API and Gemini CLI are separate access paths; subscription
|
|
198
|
-
logins and API keys are not interchangeable.
|
|
200
|
+
logins and API keys are not interchangeable. The final confirmation includes
|
|
201
|
+
the runtime backend that will receive the next agent request. Use
|
|
202
|
+
`ur provider status` to show the active provider, model, access type, and
|
|
203
|
+
runtime backend.
|
|
199
204
|
|
|
200
205
|
Security policy: UR-AGENT never scrapes browser sessions, extracts OAuth
|
|
201
206
|
tokens, bypasses subscription/quota/region/organization restrictions, proxies a
|