ur-agent 1.84.6 → 1.84.7
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 +20 -0
- package/README.md +16 -12
- package/dist/cli.js +20180 -399
- package/docs/AGENT_FEATURES.md +1 -1
- package/docs/CONFIGURATION.md +6 -4
- package/docs/TROUBLESHOOTING.md +12 -8
- package/docs/USAGE.md +11 -9
- package/docs/VALIDATION.md +6 -5
- package/docs/providers.md +26 -25
- 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 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.84.7
|
|
4
|
+
|
|
5
|
+
- Replaced NVIDIA's three-model one-shot allowlist with a generated catalog
|
|
6
|
+
built from the current official LLM, retrieval, visual, multimodal,
|
|
7
|
+
healthcare, route-optimization, and climate OpenAPI references. The current
|
|
8
|
+
artifact contains 35 positive agent contracts and 92 exact task contracts;
|
|
9
|
+
task discovery no longer loses dedicated APIs merely because NVIDIA's chat
|
|
10
|
+
`/v1/models` inventory omits them. Broken, staging-only, status-only,
|
|
11
|
+
download-only, and undocumented operations stay hidden.
|
|
12
|
+
- Added real execution for every generated task contract. `NvidiaNimTask` can
|
|
13
|
+
describe required fields, validate documented request shapes, apply standard
|
|
14
|
+
prompt/image/query/passages conveniences, send advanced exact JSON, bind
|
|
15
|
+
local files through JSON pointers, upload and clean up NVIDIA Assets, poll
|
|
16
|
+
asynchronous requests, and save binary or large JSON output. Requests route
|
|
17
|
+
to the model's documented `integrate`, `ai`, `health`, `optimize`, or
|
|
18
|
+
`climate` endpoint with the configured NVIDIA key.
|
|
19
|
+
- Updated `/model`, provider doctor, tests, public docs, the static docs site,
|
|
20
|
+
and technical references to distinguish live agent inventory from official
|
|
21
|
+
task contracts and to show what each specialized model is for before use.
|
|
22
|
+
|
|
3
23
|
## 1.84.6
|
|
4
24
|
|
|
5
25
|
- Made NVIDIA hosted model selection contract-driven. The authenticated live
|
package/README.md
CHANGED
|
@@ -416,15 +416,18 @@ In the interactive app, `/model` is a two-step, provider-first picker:
|
|
|
416
416
|
|
|
417
417
|
NVIDIA is split into two visibly labelled modes. `AGENT` models own the
|
|
418
418
|
ongoing tool-calling conversation. `ONE-SHOT` models run one specialized
|
|
419
|
-
job and never replace that agent.
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
419
|
+
job and never replace that agent. The latter come from a checked-in catalog
|
|
420
|
+
generated from NVIDIA's current public OpenAPI indexes, not from the chat-only
|
|
421
|
+
`/v1/models` feed. This release implements 92 exact task contracts spanning
|
|
422
|
+
text/image/video/3D generation, visual analysis, embeddings, reranking,
|
|
423
|
+
parsing, safety, translation, biology, molecular modeling, medical imaging,
|
|
424
|
+
route optimization, and climate simulation. Broken, staging-only,
|
|
425
|
+
status-only, download-only, and undocumented operations stay absent.
|
|
426
|
+
Focusing a task model shows what it is for; Enter remembers it for the next
|
|
427
|
+
matching NVIDIA task. UR validates its documented schema, routes to the exact
|
|
428
|
+
`integrate`, `ai`, `health`, `optimize`, or `climate` host, uploads large or
|
|
429
|
+
UUID-based files with NVIDIA Assets, polls asynchronous work, and writes
|
|
430
|
+
binary/large JSON results under `.ur/artifacts/nvidia/`.
|
|
428
431
|
|
|
429
432
|
In the model catalog, use **Up/Down** to browse. For graded models, the effort row updates to
|
|
430
433
|
the focused model's capability-backed selectors; use **Left/Right** to cycle
|
|
@@ -494,9 +497,10 @@ identity line in the system prompt reflects it too:
|
|
|
494
497
|
selected, Gemini `x-goog-api-key` on `:generateContent`, OpenRouter on its
|
|
495
498
|
OpenAI-compatible chat endpoint, and NVIDIA NIM agent models on their exact
|
|
496
499
|
documented hosted chat endpoint or a user-selected compatible NIM gateway.
|
|
497
|
-
NVIDIA one-shot models use their documented
|
|
498
|
-
|
|
499
|
-
through NVIDIA's request ID
|
|
500
|
+
NVIDIA one-shot models use their documented model endpoint across NVIDIA's
|
|
501
|
+
AI, retrieval, health, optimization, and climate APIs with the same stored
|
|
502
|
+
`NVIDIA_API_KEY`; asynchronous jobs are polled through NVIDIA's request ID
|
|
503
|
+
until completion or user cancellation.
|
|
500
504
|
- **Local/server** providers call the configured endpoint (`/v1/chat/completions`
|
|
501
505
|
for LM Studio/llama.cpp/vLLM/Unsloth; the native API for Ollama). Unsloth is
|
|
502
506
|
provider-only: UR never starts, installs, updates, trains, or loads models in
|