omnius 1.0.579 → 1.0.580

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 CHANGED
@@ -548257,15 +548257,20 @@ function ensureLuxttsInstalled() {
548257
548257
  timeout: 12e5
548258
548258
  },
548259
548259
  {
548260
- label: "piper-phonemize (optional)",
548260
+ label: "piper-phonemize",
548261
548261
  args: [
548262
548262
  "piper-phonemize",
548263
548263
  "--find-links",
548264
548264
  "https://k2-fsa.github.io/icefall/piper_phonemize.html"
548265
548265
  ],
548266
- fatal: false,
548266
+ fatal: true,
548267
548267
  timeout: 6e5
548268
548268
  },
548269
+ ...process.platform === "linux" && process.arch === "x64" ? [{
548270
+ label: "piper-phonemize CPython extension",
548271
+ args: ["piper-phonemize-fix"],
548272
+ fatal: true
548273
+ }] : [],
548269
548274
  {
548270
548275
  label: "Chinese text processing",
548271
548276
  args: ["jieba", "pypinyin", "cn2an"],
@@ -548305,15 +548310,20 @@ function ensureLuxttsInstalled() {
548305
548310
  timeout: 12e5
548306
548311
  },
548307
548312
  {
548308
- label: "piper-phonemize (optional)",
548313
+ label: "piper-phonemize",
548309
548314
  args: [
548310
548315
  "piper-phonemize",
548311
548316
  "--find-links",
548312
548317
  "https://k2-fsa.github.io/icefall/piper_phonemize.html"
548313
548318
  ],
548314
- fatal: false,
548319
+ fatal: true,
548315
548320
  timeout: 6e5
548316
548321
  },
548322
+ ...process.platform === "linux" && process.arch === "x64" ? [{
548323
+ label: "piper-phonemize CPython extension",
548324
+ args: ["piper-phonemize-fix"],
548325
+ fatal: true
548326
+ }] : [],
548317
548327
  {
548318
548328
  label: "Chinese text processing",
548319
548329
  args: ["jieba", "pypinyin", "cn2an"],
@@ -678378,12 +678388,20 @@ Error: ${err instanceof Error ? err.message : String(err)}`
678378
678388
  fatal: true,
678379
678389
  label: "LinaCodec (voice cloning codec)"
678380
678390
  },
678381
- // Non-fatal (not hard-imported by LuxTTS):
678382
678391
  {
678383
678392
  cmd: `${pipCmd} -m pip install --quiet piper-phonemize --find-links https://k2-fsa.github.io/icefall/piper_phonemize.html`,
678384
- fatal: false,
678385
- label: "piper-phonemize (optional)"
678393
+ fatal: true,
678394
+ label: "piper-phonemize"
678386
678395
  },
678396
+ // The upstream cp312 Linux wheel ships its Python wrapper without
678397
+ // piper_phonemize_cpp. This companion wheel supplies that extension
678398
+ // while the upstream package above continues to satisfy ZipVoice's
678399
+ // declared dependency metadata.
678400
+ ...process.platform === "linux" && process.arch === "x64" ? [{
678401
+ cmd: `${pipCmd} -m pip install --quiet piper-phonemize-fix`,
678402
+ fatal: true,
678403
+ label: "piper-phonemize CPython extension"
678404
+ }] : [],
678387
678405
  {
678388
678406
  cmd: `${pipCmd} -m pip install --quiet jieba pypinyin cn2an`,
678389
678407
  fatal: true,
@@ -678406,9 +678424,14 @@ Error: ${err instanceof Error ? err.message : String(err)}`
678406
678424
  },
678407
678425
  {
678408
678426
  cmd: `${pipCmd} -m pip install --quiet piper-phonemize --find-links https://k2-fsa.github.io/icefall/piper_phonemize.html`,
678409
- fatal: false,
678427
+ fatal: true,
678410
678428
  label: "piper-phonemize"
678411
678429
  },
678430
+ ...process.platform === "linux" && process.arch === "x64" ? [{
678431
+ cmd: `${pipCmd} -m pip install --quiet piper-phonemize-fix`,
678432
+ fatal: true,
678433
+ label: "piper-phonemize CPython extension"
678434
+ }] : [],
678412
678435
  {
678413
678436
  cmd: `${pipCmd} -m pip install --quiet jieba pypinyin cn2an`,
678414
678437
  fatal: true,
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "omnius",
3
- "version": "1.0.579",
3
+ "version": "1.0.580",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "omnius",
9
- "version": "1.0.579",
9
+ "version": "1.0.580",
10
10
  "bundleDependencies": [
11
11
  "image-to-ascii"
12
12
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "omnius",
3
- "version": "1.0.579",
3
+ "version": "1.0.580",
4
4
  "description": "AI coding agent powered by open-source models (Ollama/vLLM) — interactive TUI with agentic tool-calling loop",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",