ur-agent 1.84.6 → 1.85.0
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 +48 -0
- package/README.md +30 -24
- package/dist/cli.js +135354 -101707
- package/docs/AGENT_FEATURES.md +1 -1
- package/docs/AGENT_TRENDS.md +2 -2
- package/docs/CONFIGURATION.md +22 -18
- package/docs/TROUBLESHOOTING.md +23 -20
- package/docs/USAGE.md +19 -20
- package/docs/VALIDATION.md +11 -12
- package/docs/providers.md +56 -57
- package/documentation/app.js +2 -2
- package/documentation/index.html +7 -5
- package/extensions/jetbrains-ur/build.gradle.kts +1 -1
- package/extensions/vscode-ur-inline-diffs/package.json +1 -1
- package/package.json +4 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,53 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.85.0
|
|
4
|
+
|
|
5
|
+
- Split NVIDIA Build into two truthful provider surfaces backed by one saved
|
|
6
|
+
`NVIDIA_API_KEY`: **NVIDIA Agentic** for continuous tool-capable agent models
|
|
7
|
+
and **NVIDIA Special** for focused inference such as image, video, audio,
|
|
8
|
+
vision, retrieval, healthcare, climate, and optimization tasks. The generated
|
|
9
|
+
catalog currently mirrors all 36 Build cards marked Free Endpoint: 13
|
|
10
|
+
Agentic and 23 Special.
|
|
11
|
+
- Rebuilt NVIDIA routing from each card's published inference contract. Every
|
|
12
|
+
executable model now uses its own documented HTTP endpoint and method or its
|
|
13
|
+
exact NVCF gRPC package, service, method, metadata, and streaming shape; direct
|
|
14
|
+
NVCF functions, Assets uploads, asynchronous polling, JSON-schema validation,
|
|
15
|
+
and binary artifact decoding are handled natively instead of being forced
|
|
16
|
+
through the shared chat-completions URL.
|
|
17
|
+
- Added native execution for NVIDIA's five current public gRPC contracts,
|
|
18
|
+
including active-speaker detection, background-noise removal, Magpie TTS,
|
|
19
|
+
Studio Voice, and synthetic-video detection. Model descriptions expose their
|
|
20
|
+
purpose, expected input and output, transport, and contract before execution.
|
|
21
|
+
- Made the official catalog non-destructive: account or invocation errors no
|
|
22
|
+
longer remove models. A card without a published API or proto contract remains
|
|
23
|
+
visible and explicitly unavailable rather than receiving an invented route.
|
|
24
|
+
Custom NVIDIA enterprise gateways retain their configurable endpoint and live
|
|
25
|
+
model discovery independently of the public Build catalog.
|
|
26
|
+
- Updated provider diagnostics, `/model`, the `NvidiaSpecial` tool, public and
|
|
27
|
+
technical documentation, generated-catalog tooling, and regression coverage
|
|
28
|
+
for exact endpoint parity, shared credentials, non-pruning behavior, native
|
|
29
|
+
gRPC descriptors, assets, async results, artifacts, and focused-task dispatch.
|
|
30
|
+
|
|
31
|
+
## 1.84.7
|
|
32
|
+
|
|
33
|
+
- Replaced NVIDIA's three-model one-shot allowlist with a generated catalog
|
|
34
|
+
built from the current official LLM, retrieval, visual, multimodal,
|
|
35
|
+
healthcare, route-optimization, and climate OpenAPI references. The current
|
|
36
|
+
artifact contains 35 positive agent contracts and 92 exact task contracts;
|
|
37
|
+
task discovery no longer loses dedicated APIs merely because NVIDIA's chat
|
|
38
|
+
`/v1/models` inventory omits them. Broken, staging-only, status-only,
|
|
39
|
+
download-only, and undocumented operations stay hidden.
|
|
40
|
+
- Added real execution for every generated task contract. `NvidiaNimTask` can
|
|
41
|
+
describe required fields, validate documented request shapes, apply standard
|
|
42
|
+
prompt/image/query/passages conveniences, send advanced exact JSON, bind
|
|
43
|
+
local files through JSON pointers, upload and clean up NVIDIA Assets, poll
|
|
44
|
+
asynchronous requests, and save binary or large JSON output. Requests route
|
|
45
|
+
to the model's documented `integrate`, `ai`, `health`, `optimize`, or
|
|
46
|
+
`climate` endpoint with the configured NVIDIA key.
|
|
47
|
+
- Updated `/model`, provider doctor, tests, public docs, the static docs site,
|
|
48
|
+
and technical references to distinguish live agent inventory from official
|
|
49
|
+
task contracts and to show what each specialized model is for before use.
|
|
50
|
+
|
|
3
51
|
## 1.84.6
|
|
4
52
|
|
|
5
53
|
- Made NVIDIA hosted model selection contract-driven. The authenticated live
|
package/README.md
CHANGED
|
@@ -289,6 +289,7 @@ ur config set provider anthropic-api
|
|
|
289
289
|
ur config set provider gemini-api
|
|
290
290
|
ur config set provider openrouter
|
|
291
291
|
ur config set provider nvidia-nim
|
|
292
|
+
ur config set provider nvidia-special
|
|
292
293
|
ur config set provider unsloth
|
|
293
294
|
ur config set model qwen2.5-coder:7b
|
|
294
295
|
ur provider select-model ollama qwen2.5-coder:7b --json
|
|
@@ -308,7 +309,7 @@ select the recovery provider explicitly with `ur config set provider <id>`.
|
|
|
308
309
|
provider before the URL to configure it without switching first, for example
|
|
309
310
|
`ur config set base_url llama.cpp http://localhost:9931/v1`. UR remembers each
|
|
310
311
|
provider's address independently, so switching among Ollama, LM Studio,
|
|
311
|
-
llama.cpp, vLLM, Unsloth, NVIDIA
|
|
312
|
+
llama.cpp, vLLM, Unsloth, NVIDIA Agentic, or another compatible endpoint restores that
|
|
312
313
|
provider's last URL automatically. Existing single-URL settings are migrated
|
|
313
314
|
to the previously active provider on the first provider switch or scoped
|
|
314
315
|
base-URL write.
|
|
@@ -361,7 +362,8 @@ The account must have Anthropic fast-mode access. Unsupported Claude models
|
|
|
361
362
|
stay on standard speed instead of receiving a fabricated provider option.
|
|
362
363
|
|
|
363
364
|
Provider config accepts canonical IDs and common aliases. Examples:
|
|
364
|
-
`openai-api`, `anthropic-api`, `gemini-api`, `openrouter`, `nvidia-nim` (`NVIDIA
|
|
365
|
+
`openai-api`, `anthropic-api`, `gemini-api`, `openrouter`, `nvidia-nim` (`NVIDIA Agentic`),
|
|
366
|
+
`nvidia-special` (`NVIDIA Special`), `ollama`,
|
|
365
367
|
`lmstudio`, `LM Studio`, `llama.cpp`, `vllm`, `unsloth` (`Unsloth Studio`), and the subscription CLIs
|
|
366
368
|
`codex-cli` (`chatgpt`), `claude-code-cli` (`claude`), `gemini-cli` (`gemini`),
|
|
367
369
|
and `antigravity-cli` (`agy`). Use quotes for shell values with spaces.
|
|
@@ -381,7 +383,8 @@ ur connect logout openai-api # clear a stored key
|
|
|
381
383
|
| Claude API | API key | UR-native | `ANTHROPIC_API_KEY` or `ur connect anthropic-api` |
|
|
382
384
|
| Gemini API | API key | UR-native | `GEMINI_API_KEY` or `ur connect gemini-api` |
|
|
383
385
|
| OpenRouter | API/router | UR-native | `OPENROUTER_API_KEY` or `ur connect openrouter` |
|
|
384
|
-
| NVIDIA
|
|
386
|
+
| NVIDIA Agentic | hosted/server API | UR-native | `NVIDIA_API_KEY` or `ur connect nvidia-nim`; configurable `base_url` |
|
|
387
|
+
| NVIDIA Special | hosted/focused-task API | UR-native | the same `NVIDIA_API_KEY`; exact per-card HTTP/NVCF/gRPC inference contract |
|
|
385
388
|
| Ollama | local/server | UR-native | configurable local, LAN, or hosted endpoint; optional `OLLAMA_API_KEY` |
|
|
386
389
|
| LM Studio | local/server | UR-native | configurable endpoint; optional `LMSTUDIO_API_KEY` |
|
|
387
390
|
| llama.cpp | local/server | UR-native | configurable endpoint; optional `LLAMA_CPP_API_KEY` |
|
|
@@ -404,27 +407,30 @@ In the interactive app, `/model` is a two-step, provider-first picker:
|
|
|
404
407
|
by source: `live` (discovered from the endpoint), `cache` (last discovery),
|
|
405
408
|
`static` (predefined), or `unavailable` after a failed discovery with no
|
|
406
409
|
fallback. Local/server providers (Ollama, LM Studio,
|
|
407
|
-
llama.cpp, vLLM, Unsloth) and OpenAI-compatible endpoints are discovered live.
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
410
|
+
llama.cpp, vLLM, Unsloth) and OpenAI-compatible endpoints are discovered live. Public
|
|
411
|
+
NVIDIA Agentic discovery is generated from each current Build Free Endpoint
|
|
412
|
+
card that explicitly advertises agent/tool use; NVIDIA's account `/v1/models`
|
|
413
|
+
inventory does not narrow it, and a runtime entitlement error never removes a
|
|
414
|
+
model. A configured enterprise/self-hosted NIM gateway continues to use that
|
|
415
|
+
gateway's live `/models` response. API
|
|
412
416
|
providers use live discovery from their `/models` endpoint once a key is
|
|
413
417
|
connected (with a curated fallback list before that). Subscription CLIs show
|
|
414
418
|
their curated model list because the official CLIs expose no models API. The
|
|
415
419
|
generic `subscription` entry is an internal placeholder hidden from listings.
|
|
416
420
|
|
|
417
|
-
NVIDIA is split into two
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
421
|
+
NVIDIA is split into two provider entries. NVIDIA Agentic owns the ongoing
|
|
422
|
+
tool-calling conversation. NVIDIA Special selects one focused task and never
|
|
423
|
+
replaces that agent. The checked-in catalog is regenerated from all 100
|
|
424
|
+
currently visible Build cards and preserves all 36 cards labelled Free
|
|
425
|
+
Endpoint: 13 Agentic and 23 Special. Thirty-five publish executable
|
|
426
|
+
inference contracts; the one card whose invocation protocol is unpublished
|
|
427
|
+
remains visible and is labelled accordingly instead of being guessed or
|
|
428
|
+
removed. Every row shows its purpose, accepted input, and produced output.
|
|
429
|
+
Each executable Special model uses the URL, HTTP/RPC method, function ID,
|
|
430
|
+
request schema, and response schema in that model's own inference reference.
|
|
431
|
+
UR supports direct HTTP, model-specific NVCF invocation, NVIDIA Assets,
|
|
432
|
+
asynchronous polling, and the five documented Maxine/Riva gRPC services;
|
|
433
|
+
artifacts are written under `.ur/artifacts/nvidia/` unless a path is supplied.
|
|
428
434
|
|
|
429
435
|
In the model catalog, use **Up/Down** to browse. For graded models, the effort row updates to
|
|
430
436
|
the focused model's capability-backed selectors; use **Left/Right** to cycle
|
|
@@ -474,7 +480,7 @@ In the interactive app, `/model` is a two-step, provider-first picker:
|
|
|
474
480
|
provider's address untouched.
|
|
475
481
|
|
|
476
482
|
Model lists never cross providers: OpenAI API, Claude API, Gemini API,
|
|
477
|
-
OpenRouter, NVIDIA
|
|
483
|
+
OpenRouter, NVIDIA Agentic, NVIDIA Special, Ollama, and OpenAI-compatible local/server endpoints are separate
|
|
478
484
|
access paths. API keys, local runtimes, and subscription logins are not
|
|
479
485
|
interchangeable. The provider/model pair is validated before it is saved and
|
|
480
486
|
again before every request; changing provider clears an incompatible model.
|
|
@@ -492,10 +498,10 @@ identity line in the system prompt reflects it too:
|
|
|
492
498
|
`x-api-key` + `anthropic-version` on `/v1/messages`, OpenAI `Bearer` on
|
|
493
499
|
`/v1/chat/completions` by default or `/v1/responses` when explicitly
|
|
494
500
|
selected, Gemini `x-goog-api-key` on `:generateContent`, OpenRouter on its
|
|
495
|
-
OpenAI-compatible chat endpoint, and NVIDIA
|
|
501
|
+
OpenAI-compatible chat endpoint, and NVIDIA Agentic models on their exact
|
|
496
502
|
documented hosted chat endpoint or a user-selected compatible NIM gateway.
|
|
497
|
-
NVIDIA
|
|
498
|
-
with the same
|
|
503
|
+
NVIDIA Special uses each card's documented HTTP, direct NVCF, or gRPC
|
|
504
|
+
endpoint with the same stored `NVIDIA_API_KEY`; asynchronous jobs are polled
|
|
499
505
|
through NVIDIA's request ID until completion or user cancellation.
|
|
500
506
|
- **Local/server** providers call the configured endpoint (`/v1/chat/completions`
|
|
501
507
|
for LM Studio/llama.cpp/vLLM/Unsloth; the native API for Ollama). Unsloth is
|
|
@@ -513,7 +519,7 @@ identity line in the system prompt reflects it too:
|
|
|
513
519
|
to choose a connected local, server, or API provider.
|
|
514
520
|
|
|
515
521
|
Image-bearing tool results use each UR-native provider's valid multimodal wire
|
|
516
|
-
shape. OpenAI Chat Completions, OpenRouter, NVIDIA
|
|
522
|
+
shape. OpenAI Chat Completions, OpenRouter, NVIDIA Agentic, LM Studio, llama.cpp,
|
|
517
523
|
vLLM, Unsloth, and generic compatible endpoints keep the tool response textual and
|
|
518
524
|
place its image in the immediately following user turn; Gemini nests the image
|
|
519
525
|
parts in its function response; OpenAI Responses, Anthropic, and Ollama use their
|