omnius 1.0.179 → 1.0.180
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/dist/index.js +5316 -4068
- package/docs/guides/media-generation.md +20 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
|
@@ -47,6 +47,26 @@ Each modality should expose:
|
|
|
47
47
|
|
|
48
48
|
When a backend install needs elevation, the TUI should suspend, expose the terminal password prompt directly, then restore TUI state after the installer exits.
|
|
49
49
|
|
|
50
|
+
## Hugging Face Model Intake
|
|
51
|
+
|
|
52
|
+
Omnius can intake Hugging Face media models into a global catalog at `~/.omnius/media-models`.
|
|
53
|
+
Built-in presets remain the trusted defaults; catalog entries are merged into model lists when they map to a compatible runner.
|
|
54
|
+
|
|
55
|
+
```text
|
|
56
|
+
/models hf search <query> [--modality image|video|sound|music|tts|asr|voice] [--limit N]
|
|
57
|
+
/models hf intake <namespace/model> [--modality ...] [--backend ...] [--no-test]
|
|
58
|
+
/models hf list [--modality ...]
|
|
59
|
+
/models hf validate <namespace/model>
|
|
60
|
+
/models hf delete <namespace/model>
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
Agent tools:
|
|
64
|
+
|
|
65
|
+
- `hf_model_discover`
|
|
66
|
+
- `hf_model_intake`
|
|
67
|
+
|
|
68
|
+
The intake flow reads HF API metadata, model cards, sibling sizes, and `model_index.json` when present. Specs are saved only after schema validation. Runtime activation is limited to models that match a known safe runner or have a generated adapter recorded in the catalog; large downloads still go through disk/resource gates and setup/prewarm paths.
|
|
69
|
+
|
|
50
70
|
## Audio And Voice
|
|
51
71
|
|
|
52
72
|
Voice surfaces include:
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "omnius",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.180",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "omnius",
|
|
9
|
-
"version": "1.0.
|
|
9
|
+
"version": "1.0.180",
|
|
10
10
|
"bundleDependencies": [
|
|
11
11
|
"image-to-ascii"
|
|
12
12
|
],
|
package/package.json
CHANGED