ur-agent 1.81.6 → 1.81.8
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 +32 -0
- package/README.md +7 -2
- package/dist/cli.js +517 -241
- package/docs/VALIDATION.md +8 -2
- package/docs/providers.md +21 -9
- 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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.81.8
|
|
4
|
+
|
|
5
|
+
- Made reasoning effort provider- and model-accurate across the model picker,
|
|
6
|
+
`/effort`, the status bar, SDK, and outbound API requests. Up/Down now loads
|
|
7
|
+
the focused model's exact levels, Left/Right cycles only those levels, and
|
|
8
|
+
`max` resolves to the model's real `high`, `xhigh`, or `max` ceiling.
|
|
9
|
+
- Added model-scoped llama.cpp reasoning discovery through `/props`, preserved
|
|
10
|
+
rich OpenAI-compatible capability metadata, and stopped presenting invented
|
|
11
|
+
graded levels when a provider does not advertise them.
|
|
12
|
+
- Regenerated version-matched smoke and regression benchmark evidence (6/6 and
|
|
13
|
+
20/20 passed) so the release-readiness gate rejects no stale prior-release
|
|
14
|
+
artifacts.
|
|
15
|
+
|
|
16
|
+
## 1.81.7
|
|
17
|
+
|
|
18
|
+
- Made reasoning effort a real provider/model capability instead of a cosmetic
|
|
19
|
+
selector. UR now preserves exact `minimal`, `low`, `medium`, `high`, `xhigh`,
|
|
20
|
+
and `max` levels advertised by the provider and sends the selected value on
|
|
21
|
+
the provider request.
|
|
22
|
+
- Made `/effort max` resolve to the selected model's actual ceiling. A
|
|
23
|
+
high-only model receives `high`, an xhigh model receives `xhigh`, and a model
|
|
24
|
+
with native max support receives `max`; `/effort status` and the status bar
|
|
25
|
+
report that same applied value.
|
|
26
|
+
- Updated both model pickers so Up/Down refreshes the focused model's exact
|
|
27
|
+
effort list and Left/Right cycles only through supported levels. Models that
|
|
28
|
+
do not advertise graded reasoning no longer receive invented capabilities.
|
|
29
|
+
- Added model-scoped llama.cpp reasoning discovery through `/props`, retained
|
|
30
|
+
rich OpenAI-compatible model metadata, and cached the result per endpoint and
|
|
31
|
+
model so clustered local deployments use their real capabilities.
|
|
32
|
+
- Extended the CLI, SDK schemas, documentation, and regression coverage for
|
|
33
|
+
exact effort levels and provider wire serialization.
|
|
34
|
+
|
|
3
35
|
## 1.81.6
|
|
4
36
|
|
|
5
37
|
- Restored the original clean welcome house without a shadow. The full adaptive
|
package/README.md
CHANGED
|
@@ -359,8 +359,13 @@ In the interactive app, `/model` is a two-step, provider-first picker:
|
|
|
359
359
|
their curated model list because the official CLIs expose no models API. The
|
|
360
360
|
generic `subscription` entry is an internal placeholder hidden from listings.
|
|
361
361
|
|
|
362
|
-
In the model catalog, use **Up/Down** to browse
|
|
363
|
-
the focused model's
|
|
362
|
+
In the model catalog, use **Up/Down** to browse. The effort row updates to
|
|
363
|
+
the focused model's exact provider-advertised levels; use **Left/Right** to
|
|
364
|
+
cycle only those levels before pressing Enter. A generic `max` request is
|
|
365
|
+
resolved visibly to that model's actual `max`, `xhigh`, or `high` ceiling,
|
|
366
|
+
and the resolved value is the value sent to the provider. llama.cpp models
|
|
367
|
+
are checked lazily through their model-scoped `/props` capability while the
|
|
368
|
+
cursor moves. OpenRouter additionally
|
|
364
369
|
shows compact model names, FREE/PAID tier, context size, tool/reasoning
|
|
365
370
|
support, and the full untruncated ID immediately below the focused entry.
|
|
366
371
|
Its catalog is fetched fresh every time it opens and never falls back to a
|