pixverse-ai-cli 1.4.3 → 1.4.5

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
@@ -66,6 +66,7 @@ Supported modes are `pixverse create` subcommands. Defaults are mode-specific.
66
66
  | Seedance 2.0 Fast | `seedance-2.0-fast` | `video`, `transition` (2 frames), `reference` | `480p` `720p` | `4`–`15`s | `16:9` `4:3` `1:1` `3:4` `9:16` `21:9` |
67
67
  | Seedance 2.0 Mini | `seedance-2.0-mini` | `video`, `transition` (2 frames), `reference` | `480p` `720p` | `4`–`15`s | `16:9` `4:3` `1:1` `3:4` `9:16` `21:9` |
68
68
  | MiniMax H3 | `minimax-h3` | `video`, `transition` (2 frames), `reference` | `768p` `1440p` | `5`–`15`s | `21:9` `16:9` `4:3` `1:1` `3:4` `9:16` `auto` |
69
+ | MiniMax H3 Max | `minimax-h3-max` | `video`, `transition` (2 frames), `reference` | `480p` `768p` `1080p` | `5`–`15`s | `21:9` `16:9` `4:3` `1:1` `3:4` `9:16` `auto` |
69
70
  | FLUX 3 | `flux-3.0` | `video` | `720p` `1080p` | `5`–`20`s | `auto` `21:9` `2:1` `16:9` `4:3` `1:1` `3:4` `9:16` |
70
71
  | Wan 3.0 | `wan-3.0` | `video`, `transition` (2 frames), `reference` | `480p` `720p` `1080p` | `2`–`30`s | `auto` `16:9` `4:3` `1:1` `3:4` `9:16` |
71
72
  | Google Gemini Omni | `gemini-omni-flash` | `video`, `reference` | `720p` | `3`–`10`s | `16:9` `9:16` |
@@ -91,6 +92,8 @@ Supported modes are `pixverse create` subcommands. Defaults are mode-specific.
91
92
 
92
93
  > MiniMax H3 text-to-video defaults to `16:9`. Image-to-video forces `auto`; reference mode with images supports both `auto` and fixed aspect ratios and defaults to `auto`.
93
94
 
95
+ > MiniMax H3 Max defaults to `768p` and 5 seconds. Text-to-video defaults to `16:9`; image-to-video forces `auto`; reference mode supports both `auto` and fixed aspect ratios, defaults to `auto`, and accepts up to 12 total inputs (9 images, 3 videos, and 3 audios).
96
+
94
97
  > FLUX 3 is available only in `create video`. Text-to-video defaults to `16:9`; image-to-video defaults to `auto` while preserving an explicit fixed ratio. Requests always include the model's fixed safety setting.
95
98
 
96
99
  > Wan 3.0 defaults to `720p`, 5 seconds, and `auto`, and is available in video, two-frame transition, and reference creation. Reference accepts up to 10 images, 5 videos, and 5 audios (20 total), including audio-only input. Video and audio reference durations are each limited to 15 seconds in aggregate. With a video reference, duration defaults to `auto`; fixed output duration is limited by `30 - reference video duration`.
@@ -277,6 +280,9 @@ pixverse create reference -m seedance-2.0-standard --images ./char.png --audios
277
280
  # MiniMax H3 reference — mix up to 9 images, 3 videos, and 3 audios
278
281
  pixverse create reference -m minimax-h3 --images ./char.png --videos ./motion.mp4 --audios ./voice.mp3 --prompt "@image1 follows @video1 and @audio1"
279
282
 
283
+ # MiniMax H3 Max reference — the same per-type limits, with 12 inputs maximum in total
284
+ pixverse create reference -m minimax-h3-max --images ./char.png --videos ./motion.mp4 --audios ./voice.mp3 --prompt "@image1 follows @video1 and @audio1"
285
+
280
286
  # Wan 3.0 reference — mixed inputs or audio-only, with automatic output duration when video is present
281
287
  pixverse create reference -m wan-3.0 --videos ./motion.mp4 --audios ./voice.mp3 --duration auto --prompt "Follow @video1 and @audio1"
282
288
 
@@ -376,6 +382,22 @@ pixverse canvas project create \
376
382
  --json
377
383
  ```
378
384
 
385
+ Pass the project ID after the command:
386
+
387
+ ```bash
388
+ pixverse canvas graph get 123456789 --json
389
+ pixverse canvas node get 123456789 --node-id image_01 --json
390
+ ```
391
+
392
+ To automatically arrange and save the entire project's layout:
393
+
394
+ ```bash
395
+ pixverse canvas arrange "$PROJECT_ID" --json
396
+ pixverse canvas graph get "$PROJECT_ID" --json
397
+ ```
398
+
399
+ Read the graph after arranging to get the updated positions and `edit_version`.
400
+
379
401
  For reliable automation, inspect capabilities → read the project → validate the
380
402
  patch → apply the patch → dispatch generated nodes → check node status:
381
403
 
@@ -392,22 +414,20 @@ pixverse capabilities canvas \
392
414
  pixverse canvas node schema --node-type image_generate --json
393
415
 
394
416
  # 3. Read the project and retain edit_version
395
- pixverse canvas graph get --project-id "$PROJECT_ID" --json
417
+ pixverse canvas graph get "$PROJECT_ID" --json
396
418
 
397
419
  # 4. Validate and apply the same patch input
398
- pixverse canvas patch dry-run --project-id "$PROJECT_ID" --patch patch.json --json
399
- pixverse canvas patch apply --project-id "$PROJECT_ID" --patch patch.json --json
420
+ pixverse canvas patch dry-run "$PROJECT_ID" --patch patch.json --json
421
+ pixverse canvas patch apply "$PROJECT_ID" --patch patch.json --json
400
422
 
401
423
  # 5. Start generation only for diff.executable_node_ids from patch apply
402
- pixverse canvas dispatch \
403
- --project-id "$PROJECT_ID" \
424
+ pixverse canvas dispatch "$PROJECT_ID" \
404
425
  --node-ids image_01,video_01 \
405
426
  --edit-version 13 \
406
427
  --json
407
428
 
408
429
  # 6. Check only the nodes involved in this workflow
409
- pixverse canvas graph status \
410
- --project-id "$PROJECT_ID" \
430
+ pixverse canvas graph status "$PROJECT_ID" \
411
431
  --node-ids image_01,video_01 \
412
432
  --json
413
433
  ```
@@ -431,10 +451,8 @@ contains a `graph_patch` object without an outer request wrapper. For example,
431
451
  }
432
452
  ```
433
453
 
434
- The `--project-id` flag identifies the project. A matching `project_id` inside
435
- the patch is accepted for compatibility, but omitting it is preferred. Keep all
436
- IDs as strings. If the edit version has changed, read the project again and
437
- rebuild the patch instead of replacing only `base_edit_version`.
454
+ Keep all IDs as strings. If the edit version has changed, read the
455
+ project again and rebuild the patch instead of replacing only `base_edit_version`.
438
456
 
439
457
  For the same project and unchanged patch file, `dry-run` and `apply`
440
458
  automatically derive the same stable idempotency key. Use
@@ -444,39 +462,32 @@ Additional Canvas operations:
444
462
 
445
463
  ```bash
446
464
  # Bind a specific batch of ready nodes to a dispatch plan
447
- pixverse canvas dispatch rebind \
448
- --project-id "$PROJECT_ID" \
465
+ pixverse canvas dispatch rebind "$PROJECT_ID" \
449
466
  --dispatch-plan-id plan-20260817-001 \
450
467
  --node-ids image_01,video_01 \
451
468
  --json
452
469
 
453
470
  # After confirmation, dispatch the same nodes with rebind's edit_version
454
- pixverse canvas dispatch \
455
- --project-id "$PROJECT_ID" \
471
+ pixverse canvas dispatch "$PROJECT_ID" \
456
472
  --dispatch-plan-id plan-20260817-001 \
457
473
  --node-ids image_01,video_01 \
458
474
  --edit-version "$REBIND_EDIT_VERSION" \
459
475
  --json
460
476
 
461
477
  # List, inspect, and apply saved node versions
462
- pixverse canvas node versions \
463
- --project-id "$PROJECT_ID" --node-id video_01 \
478
+ pixverse canvas node versions "$PROJECT_ID" --node-id video_01 \
464
479
  --page 1 --page-size 20 --json
465
- pixverse canvas node version \
466
- --project-id "$PROJECT_ID" --node-id video_01 \
480
+ pixverse canvas node version "$PROJECT_ID" --node-id video_01 \
467
481
  --history-id "$HISTORY_ID" --json
468
- pixverse canvas node version apply \
469
- --project-id "$PROJECT_ID" --node-id video_01 \
482
+ pixverse canvas node version apply "$PROJECT_ID" --node-id video_01 \
470
483
  --history-id "$HISTORY_ID" --json
471
484
 
472
485
  # Run generation again for a specific failed node
473
- pixverse canvas node rerun \
474
- --project-id "$PROJECT_ID" --node-id video_01 \
486
+ pixverse canvas node rerun "$PROJECT_ID" --node-id video_01 \
475
487
  --edit-version 13 --json
476
488
 
477
489
  # Extract the full audio track from a video node
478
- pixverse canvas node extract-audio \
479
- --project-id "$PROJECT_ID" \
490
+ pixverse canvas node extract-audio "$PROJECT_ID" \
480
491
  --node-id audio_extract_01 \
481
492
  --source-node-id video_01 \
482
493
  --json
@@ -755,6 +766,7 @@ pixverse asset download "$VID" --dest ./output/
755
766
  | `config path` | Show config file path |
756
767
  | `config defaults` | Manage per-mode creation defaults |
757
768
  | `canvas project create` | Create an empty Canvas project with an optional name and description |
769
+ | `canvas arrange` | Automatically arrange and save all nodes in a Canvas project |
758
770
  | `canvas graph get` | Get a Canvas project's nodes, connections, and edit version |
759
771
  | `canvas graph status` | Get the generation status of Canvas nodes |
760
772
  | `canvas graph invalid-nodes` | Show Canvas validation issues and invalid node details |