ur-agent 1.85.1 → 1.85.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 +23 -0
- package/README.md +10 -1
- package/dist/cli.js +740 -234
- package/docs/AGENT_FEATURES.md +1 -1
- package/docs/TROUBLESHOOTING.md +10 -0
- package/docs/USAGE.md +8 -2
- package/docs/VALIDATION.md +1 -1
- package/docs/providers.md +7 -1
- package/documentation/app.js +1 -1
- package/documentation/index.html +2 -2
- package/extensions/jetbrains-ur/build.gradle.kts +1 -1
- package/extensions/vscode-ur-inline-diffs/package.json +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.85.2
|
|
4
|
+
|
|
5
|
+
- Made NVIDIA Special selections directly executable from the next prompt. UR
|
|
6
|
+
now sends focused image, video, audio, vision, retrieval, and other one-shot
|
|
7
|
+
jobs through the selected model's exact NVIDIA inference contract without
|
|
8
|
+
invoking or depending on the ongoing Anthropic, OpenAI, Ollama, or other
|
|
9
|
+
conversation provider. Structured prompt, file, passage, output-path, and
|
|
10
|
+
exact-JSON inputs are accepted, and missing required media produces targeted
|
|
11
|
+
guidance instead of an unrelated provider error.
|
|
12
|
+
- Restored reliable model switching across providers. Provider and model now
|
|
13
|
+
change atomically, selecting an ordinary model exits NVIDIA Special mode,
|
|
14
|
+
provider-scoped models take precedence over stale legacy global settings,
|
|
15
|
+
and a saved model from one backend can no longer be paired accidentally with
|
|
16
|
+
another backend.
|
|
17
|
+
- Added NVIDIA Special to first-run and new-folder provider selection while
|
|
18
|
+
keeping a normal agent model available for the conversation, and made the
|
|
19
|
+
active focused-task model visible in the status line. Updated public,
|
|
20
|
+
troubleshooting, provider, validation, and technical documentation, with
|
|
21
|
+
end-to-end regression coverage proving focused tasks bypass the conversation
|
|
22
|
+
provider and stale provider/model pairs recover correctly.
|
|
23
|
+
- Refreshed the locked `fast-uri` dependency to its compatible 3.1.6 release so
|
|
24
|
+
the production dependency audit remains clean without changing runtime policy.
|
|
25
|
+
|
|
3
26
|
## 1.85.1
|
|
4
27
|
|
|
5
28
|
- Added complete Anthropic workspace routing for identity-linked Claude API
|
package/README.md
CHANGED
|
@@ -452,6 +452,13 @@ In the interactive app, `/model` is a two-step, provider-first picker:
|
|
|
452
452
|
UR supports direct HTTP, model-specific NVCF invocation, NVIDIA Assets,
|
|
453
453
|
asynchronous polling, and the five documented Maxine/Riva gRPC services;
|
|
454
454
|
artifacts are written under `.ur/artifacts/nvidia/` unless a path is supplied.
|
|
455
|
+
Selecting a Special row activates a real task mode: the next non-command
|
|
456
|
+
prompt goes directly to that card's inference endpoint and never passes
|
|
457
|
+
through the ongoing Anthropic, OpenAI, Ollama, or other chat provider. Plain
|
|
458
|
+
text becomes `prompt`. Models requiring media accept newline fields such as
|
|
459
|
+
`video_path: /path/source.mp4` or `image_path: /path/image.png`; exact JSON is
|
|
460
|
+
also accepted. First-workspace setup shows NVIDIA Special too, then returns
|
|
461
|
+
to the provider list so an ordinary agent model can be chosen for other work.
|
|
455
462
|
|
|
456
463
|
In the model catalog, use **Up/Down** to browse. For graded models, the effort row updates to
|
|
457
464
|
the focused model's capability-backed selectors; use **Left/Right** to cycle
|
|
@@ -523,7 +530,9 @@ identity line in the system prompt reflects it too:
|
|
|
523
530
|
documented hosted chat endpoint or a user-selected compatible NIM gateway.
|
|
524
531
|
NVIDIA Special uses each card's documented HTTP, direct NVCF, or gRPC
|
|
525
532
|
endpoint with the same stored `NVIDIA_API_KEY`; asynchronous jobs are polled
|
|
526
|
-
through NVIDIA's request ID until completion or user cancellation.
|
|
533
|
+
through NVIDIA's request ID until completion or user cancellation. While a
|
|
534
|
+
Special task is selected, the next plain prompt is dispatched directly and
|
|
535
|
+
does not require the ongoing agent provider to be connected.
|
|
527
536
|
- **Local/server** providers call the configured endpoint (`/v1/chat/completions`
|
|
528
537
|
for LM Studio/llama.cpp/vLLM/Unsloth; the native API for Ollama). Unsloth is
|
|
529
538
|
provider-only: UR never starts, installs, updates, trains, or loads models in
|