pixverse-ai-cli 1.2.9 → 1.2.10

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/README.md CHANGED
@@ -224,7 +224,7 @@ pixverse create extend --video <video_id>
224
224
  pixverse create modify --video <video_id> --prompt "Change the background to a beach"
225
225
 
226
226
  # Upscale video resolution
227
- pixverse create upscale --video <video_id> --quality 1080p
227
+ pixverse create upscale --video <video_id> --quality 2160p
228
228
 
229
229
  # Generate video with character reference (1–7 images)
230
230
  pixverse create reference --images ./char1.png ./char2.png --prompt "Two friends walking in a park"
@@ -272,7 +272,10 @@ pixverse task status <id>
272
272
  # Poll a voice/music audio task (audio is not auto-detected — pass --type audio)
273
273
  pixverse task status <id> --type audio
274
274
 
275
- # Batch status query (parallel; per-ID failures captured in the response map)
275
+ # Batch status query with space-separated IDs (parallel; per-ID failures captured)
276
+ pixverse task status 123 456 789 --type video --json
277
+
278
+ # Comma-separated batch syntax remains supported
276
279
  pixverse task status --ids 123,456,789 --type video --json
277
280
 
278
281
  # Wait for a task to complete
@@ -436,15 +439,16 @@ pixverse asset download "$VID" --dest ./output/
436
439
 
437
440
  ### Exit Codes
438
441
 
439
- | Code | Meaning |
440
- | :--- | :-------------------------- |
441
- | `0` | Success |
442
- | `1` | General error |
443
- | `2` | Timeout |
444
- | `3` | Authentication error |
445
- | `4` | Credit / subscription limit |
446
- | `5` | Generation failed |
447
- | `6` | Validation error |
442
+ | Code | Meaning |
443
+ | :--- | :--------------------------------------------------------- |
444
+ | `0` | Success |
445
+ | `1` | General error |
446
+ | `2` | Timeout |
447
+ | `3` | Authentication error |
448
+ | `4` | Credit / subscription limit |
449
+ | `5` | Generation failed |
450
+ | `6` | Validation error |
451
+ | `7` | Concurrent generation limit; wait for a slot and retry |
448
452
 
449
453
  ## All Commands
450
454
 
@@ -471,7 +475,7 @@ pixverse asset download "$VID" --dest ./output/
471
475
  | `voice models` | List voice/TTS providers, models, and supported languages |
472
476
  | `voice presets` | List preset voices (filterable by model / language / provider) |
473
477
  | `music models` | List music providers, models, and capabilities |
474
- | `task status` | Check task status (single `<id>` or `--ids id1,id2,...` for batch) |
478
+ | `task status` | Check one ID or batch with space-separated IDs / `--ids id1,id2,...` |
475
479
  | `task wait` | Wait for task completion |
476
480
  | `asset list` | List assets (`--source create\|upload`, `--type video\|image\|audio`, `--off-peak`) |
477
481
  | `asset upload` | Upload a local file or HTTPS URL to asset library |
@@ -5,7 +5,7 @@
5
5
  "cli": {
6
6
  "name": "pixverse",
7
7
  "package": "pixverse",
8
- "version": "1.2.9",
8
+ "version": "1.2.10",
9
9
  "binary": "pixverse",
10
10
  "node": ">=20",
11
11
  "description": "PixVerse CLI - generate videos and images from the command line"
@@ -24,7 +24,8 @@
24
24
  "3": "AUTH_EXPIRED: authentication token invalid or expired",
25
25
  "4": "CREDIT_INSUFFICIENT: subscription or credit limit",
26
26
  "5": "GENERATION_FAILED: generation failed or was not approved",
27
- "6": "VALIDATION_ERROR: CLI input validation error"
27
+ "6": "VALIDATION_ERROR: CLI input validation error",
28
+ "7": "CONCURRENCY_LIMIT: concurrent generation limit; wait for a slot and retry"
28
29
  },
29
30
  "global_options": {
30
31
  "-V, --version": "output the version number",
@@ -63,11 +64,7 @@
63
64
  {
64
65
  "cmd": "pixverse auth",
65
66
  "desc": "Manage authentication",
66
- "children": [
67
- "login",
68
- "status",
69
- "logout"
70
- ]
67
+ "children": ["login", "status", "logout"]
71
68
  },
72
69
  {
73
70
  "cmd": "pixverse auth login",
@@ -282,13 +279,13 @@
282
279
  },
283
280
  {
284
281
  "cmd": "pixverse create upscale",
285
- "desc": "Upscale video resolution",
282
+ "desc": "Upscale video resolution to 2160p",
286
283
  "run": true,
287
284
  "auth": true,
288
285
  "effect": "creates_remote_media_asset",
289
286
  "options": {
290
287
  "--video <input>": "Video input: file path, HTTPS URL, video ID, or media path",
291
- "-q, --quality <quality>": "Target quality (e.g. 1080p)",
288
+ "-q, --quality <quality>": "Target quality | default: 2160p | choices: 2160p",
292
289
  "--idempotency-key <key>": "Idempotency key for safe retry - backend dedupes by key so repeated submissions return the original task without re-charging",
293
290
  "--no-wait": "Return immediately without polling | negates: wait",
294
291
  "--timeout <seconds>": "Polling timeout in seconds | default: 300",
@@ -366,10 +363,7 @@
366
363
  {
367
364
  "cmd": "pixverse task",
368
365
  "desc": "Manage generation tasks",
369
- "children": [
370
- "status",
371
- "wait"
372
- ]
366
+ "children": ["status", "wait"]
373
367
  },
374
368
  {
375
369
  "cmd": "pixverse task status",
@@ -377,7 +371,7 @@
377
371
  "run": true,
378
372
  "auth": true,
379
373
  "args": {
380
- "id?": "Single video, image, or audio ID (omit when using --ids)"
374
+ "ids...": "One or more space-separated video, image, or audio IDs (omit when using --ids)"
381
375
  },
382
376
  "options": {
383
377
  "--ids <ids>": "Comma-separated list of IDs for batch query (e.g. 123,456,789)",
@@ -402,13 +396,7 @@
402
396
  {
403
397
  "cmd": "pixverse asset",
404
398
  "desc": "Manage your generated assets",
405
- "children": [
406
- "list",
407
- "info",
408
- "download",
409
- "upload",
410
- "delete"
411
- ]
399
+ "children": ["list", "info", "download", "upload", "delete"]
412
400
  },
413
401
  {
414
402
  "cmd": "pixverse asset list",
@@ -484,11 +472,7 @@
484
472
  {
485
473
  "cmd": "pixverse account",
486
474
  "desc": "View account info and credit usage",
487
- "children": [
488
- "info",
489
- "usage",
490
- "slots"
491
- ]
475
+ "children": ["info", "usage", "slots"]
492
476
  },
493
477
  {
494
478
  "cmd": "pixverse account info",
@@ -532,14 +516,7 @@
532
516
  {
533
517
  "cmd": "pixverse config",
534
518
  "desc": "Manage CLI configuration",
535
- "children": [
536
- "list",
537
- "get",
538
- "set",
539
- "reset",
540
- "path",
541
- "defaults"
542
- ]
519
+ "children": ["list", "get", "set", "reset", "path", "defaults"]
543
520
  },
544
521
  {
545
522
  "cmd": "pixverse config list",
@@ -593,11 +570,7 @@
593
570
  "cmd": "pixverse config defaults",
594
571
  "desc": "Manage per-mode creation default parameters",
595
572
  "run": true,
596
- "children": [
597
- "show",
598
- "set",
599
- "reset"
600
- ]
573
+ "children": ["show", "set", "reset"]
601
574
  },
602
575
  {
603
576
  "cmd": "pixverse config defaults show",
@@ -640,12 +613,7 @@
640
613
  {
641
614
  "cmd": "pixverse template",
642
615
  "desc": "Browse and manage templates",
643
- "children": [
644
- "categories",
645
- "list",
646
- "search",
647
- "info"
648
- ]
616
+ "children": ["categories", "list", "search", "info"]
649
617
  },
650
618
  {
651
619
  "cmd": "pixverse template categories",
@@ -695,10 +663,7 @@
695
663
  {
696
664
  "cmd": "pixverse voice",
697
665
  "desc": "Browse voice/TTS models and preset voices",
698
- "children": [
699
- "models",
700
- "presets"
701
- ]
666
+ "children": ["models", "presets"]
702
667
  },
703
668
  {
704
669
  "cmd": "pixverse voice models",
@@ -726,9 +691,7 @@
726
691
  {
727
692
  "cmd": "pixverse music",
728
693
  "desc": "Browse music generation models",
729
- "children": [
730
- "models"
731
- ]
694
+ "children": ["models"]
732
695
  },
733
696
  {
734
697
  "cmd": "pixverse music models",
@@ -742,15 +705,7 @@
742
705
  {
743
706
  "cmd": "pixverse saved",
744
707
  "desc": "Manage saved folders and their contents",
745
- "children": [
746
- "list",
747
- "items",
748
- "new",
749
- "rename",
750
- "add",
751
- "remove",
752
- "delete"
753
- ]
708
+ "children": ["list", "items", "new", "rename", "add", "remove", "delete"]
754
709
  },
755
710
  {
756
711
  "cmd": "pixverse saved list",
@@ -853,13 +808,8 @@
853
808
  },
854
809
  {
855
810
  "cmd": "pixverse workspace",
856
- "desc": "Manage workspaces (list, switch, view current)",
857
- "children": [
858
- "list",
859
- "status",
860
- "switch",
861
- "manage"
862
- ]
811
+ "desc": "Manage workspaces (list, switch, status)",
812
+ "children": ["list", "status", "switch", "manage"]
863
813
  },
864
814
  {
865
815
  "cmd": "pixverse workspace list",