ur-agent 1.84.4 → 1.84.5
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 +34 -0
- package/README.md +17 -4
- package/dist/cli.js +322 -222
- package/docs/CONFIGURATION.md +30 -4
- package/docs/TROUBLESHOOTING.md +23 -8
- package/docs/USAGE.md +21 -3
- package/docs/VALIDATION.md +27 -6
- package/docs/providers.md +52 -18
- package/documentation/index.html +5 -4
- 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,39 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.84.5
|
|
4
|
+
|
|
5
|
+
- Fixed a provider-wide multi-turn tool-history failure. Some
|
|
6
|
+
OpenAI-compatible models reuse response-scoped IDs such as `TaskCreate:0`;
|
|
7
|
+
UR previously classified the later completed pair as a duplicate, removed
|
|
8
|
+
it from the API-bound history, and could prompt the model to say the user's
|
|
9
|
+
answer was empty. Later unambiguous call/result pairs now receive stable,
|
|
10
|
+
conversation-unique IDs before pairing repair, while the saved transcript
|
|
11
|
+
remains unchanged and genuinely corrupt duplicates still fail normally.
|
|
12
|
+
- Restored NVIDIA Build's full hosted chat catalog by making its authenticated
|
|
13
|
+
`/v1/models` response authoritative. UR no longer intersects hosted models
|
|
14
|
+
with the unrelated NVCF deployment-function inventory that hid valid
|
|
15
|
+
endpoints; non-agent utility endpoints remain filtered, and download-only
|
|
16
|
+
Build cards are never inserted into the hosted picker. Doctor and runtime
|
|
17
|
+
invalidation now follow the same catalog contract.
|
|
18
|
+
- Reduced NVIDIA request overhead and added exact model-native behavior. Hosted
|
|
19
|
+
NIM token analysis now uses the local request-shaped estimate immediately
|
|
20
|
+
instead of probing an unsupported count route. Nemotron 3.5 Lightning is
|
|
21
|
+
preferred when NVIDIA returns it and its native on/off thinking field is
|
|
22
|
+
wired; Kimi K3 retains its mandatory documented effort contract, and no
|
|
23
|
+
unknown model inherits a fabricated level or Ultra.
|
|
24
|
+
- Added documented direct-Anthropic latency controls. Prompt-cache breakpoints
|
|
25
|
+
now survive native request translation, streaming tools use per-tool
|
|
26
|
+
fine-grained input streaming, and `anthropic.speed=fast` opts enabled Opus
|
|
27
|
+
5/4.8 accounts into Anthropic's premium research-preview tier with the
|
|
28
|
+
required beta header. Unsupported models stay on standard speed and response
|
|
29
|
+
accounting preserves the tier actually served.
|
|
30
|
+
- Audited other provider acceleration paths against their current APIs.
|
|
31
|
+
OpenAI Responses already retains native SSE/WebSocket continuation, Gemini
|
|
32
|
+
implicit caching remains automatic, and UR does not invent Interactions-only
|
|
33
|
+
Gemini Priority fields or OpenRouter-style routing controls for NVIDIA and
|
|
34
|
+
local servers. User, troubleshooting, validation, provider, and technical
|
|
35
|
+
documentation now match these executable boundaries.
|
|
36
|
+
|
|
3
37
|
## 1.84.4
|
|
4
38
|
|
|
5
39
|
- Corrected NVIDIA Build model discovery so the picker no longer treats the
|
package/README.md
CHANGED
|
@@ -347,6 +347,19 @@ ur config set openrouter.service_tier priority # auto | default | flex | priorit
|
|
|
347
347
|
ur config set openrouter.speed fast # standard | fast
|
|
348
348
|
```
|
|
349
349
|
|
|
350
|
+
Direct Anthropic requests automatically preserve UR's prompt-cache
|
|
351
|
+
breakpoints and enable per-tool fine-grained input streaming, reducing repeat
|
|
352
|
+
prefill work and exposing large tool arguments as Claude generates them.
|
|
353
|
+
Anthropic's premium research-preview fast tier is opt-in and is sent only for
|
|
354
|
+
Claude Opus 5 or Opus 4.8:
|
|
355
|
+
|
|
356
|
+
```sh
|
|
357
|
+
ur config set anthropic.speed fast # standard | fast
|
|
358
|
+
```
|
|
359
|
+
|
|
360
|
+
The account must have Anthropic fast-mode access. Unsupported Claude models
|
|
361
|
+
stay on standard speed instead of receiving a fabricated provider option.
|
|
362
|
+
|
|
350
363
|
Provider config accepts canonical IDs and common aliases. Examples:
|
|
351
364
|
`openai-api`, `anthropic-api`, `gemini-api`, `openrouter`, `nvidia-nim` (`NVIDIA Build`), `ollama`,
|
|
352
365
|
`lmstudio`, `LM Studio`, `llama.cpp`, `vllm`, `unsloth` (`Unsloth Studio`), and the subscription CLIs
|
|
@@ -392,8 +405,8 @@ In the interactive app, `/model` is a two-step, provider-first picker:
|
|
|
392
405
|
`static` (predefined), or `unavailable` after a failed discovery with no
|
|
393
406
|
fallback. Local/server providers (Ollama, LM Studio,
|
|
394
407
|
llama.cpp, vLLM, Unsloth) and OpenAI-compatible endpoints are discovered live. Hosted NVIDIA NIM
|
|
395
|
-
|
|
396
|
-
|
|
408
|
+
uses its documented `/v1/models` response directly and removes non-agent utility
|
|
409
|
+
endpoints before presenting a model; the separate NVCF deployment inventory does not narrow it. API
|
|
397
410
|
providers use live discovery from their `/models` endpoint once a key is
|
|
398
411
|
connected (with a curated fallback list before that). Subscription CLIs show
|
|
399
412
|
their curated model list because the official CLIs expose no models API. The
|
|
@@ -403,8 +416,8 @@ In the interactive app, `/model` is a two-step, provider-first picker:
|
|
|
403
416
|
the focused model's capability-backed selectors; use **Left/Right** to cycle
|
|
404
417
|
only values UR can map to provider-native levels before pressing Enter. For
|
|
405
418
|
models with thinking but no advertised graded ladder on runtimes with a native
|
|
406
|
-
two-state mapping (currently
|
|
407
|
-
|
|
419
|
+
two-state mapping (currently Ollama, direct Anthropic, and NVIDIA Nemotron
|
|
420
|
+
3.5 Lightning), Left selects off, Right selects on, and `t`
|
|
408
421
|
toggles. The same state is available directly through `/thinking on|off`.
|
|
409
422
|
Generic OpenAI-compatible runtimes never receive an invented boolean field.
|
|
410
423
|
`ultra` is UR's visible
|