ur-agent 1.81.1 → 1.81.2
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 +16 -0
- package/dist/cli.js +613 -450
- package/docs/VALIDATION.md +1 -1
- package/docs/providers.md +17 -0
- package/documentation/index.html +1 -1
- package/extensions/jetbrains-ur/build.gradle.kts +1 -1
- package/extensions/vscode-ur-inline-diffs/package.json +1 -1
- package/package.json +1 -1
package/docs/VALIDATION.md
CHANGED
package/docs/providers.md
CHANGED
|
@@ -146,6 +146,23 @@ OpenAI-compatible, OpenRouter, local, or subscription-CLI providers.
|
|
|
146
146
|
|
|
147
147
|
UR-Nexus shows providers first, then only models available for the selected provider. This prevents incompatible model/provider pairs and keeps API-key, local/server, subscription, and external app bridge model lists separate. The generic `subscription` entry has no models unless a real independent subscription runtime is configured; UR does not list fake subscription models.
|
|
148
148
|
|
|
149
|
+
The interactive selection is also the authority for the current session: the
|
|
150
|
+
next main, compact, or web-search request uses the provider/model pair captured
|
|
151
|
+
in live app state while the same validated pair is persisted once to local
|
|
152
|
+
settings. A stale settings snapshot cannot combine a newly selected model with
|
|
153
|
+
the previous provider.
|
|
154
|
+
|
|
155
|
+
### Reasoning effort
|
|
156
|
+
|
|
157
|
+
Use `/effort low|medium|high|max|auto` inside UR. `max` is provider-neutral and
|
|
158
|
+
means the selected model's highest reasoning capability. For OpenRouter, UR
|
|
159
|
+
preserves the live `/models` reasoning metadata and sends the unified
|
|
160
|
+
`reasoning.effort` request, translating `max` to the model's advertised wire
|
|
161
|
+
value such as `xhigh` or `high`. The command confirmation, status indicator,
|
|
162
|
+
and active-work spinner all show the same applied UR effort level. Providers
|
|
163
|
+
that cannot apply a requested level report the actual downgraded level instead
|
|
164
|
+
of confirming a value they did not use.
|
|
165
|
+
|
|
149
166
|
## Runtime provider routing
|
|
150
167
|
|
|
151
168
|
When you select a UR-native provider and model, every agent request is routed
|
package/documentation/index.html
CHANGED
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
<main id="content" class="content">
|
|
46
46
|
<header class="topbar">
|
|
47
47
|
<div>
|
|
48
|
-
<p class="eyebrow">Version 1.81.
|
|
48
|
+
<p class="eyebrow">Version 1.81.2</p>
|
|
49
49
|
<h1>UR-Nexus Documentation</h1>
|
|
50
50
|
<p class="lead">A practical, tutorial-style reference for installing, configuring, automating, extending, and operating UR-Nexus.</p>
|
|
51
51
|
</div>
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "ur-inline-diffs",
|
|
3
3
|
"displayName": "UR Inline Diffs",
|
|
4
4
|
"description": "Review, apply, and reject UR inline diff bundles from .ur/ide/diffs inside VS Code.",
|
|
5
|
-
"version": "1.81.
|
|
5
|
+
"version": "1.81.2",
|
|
6
6
|
"publisher": "ur-nexus",
|
|
7
7
|
"engines": {
|
|
8
8
|
"vscode": "^1.92.0"
|
package/package.json
CHANGED