pixverse 1.3.6 → 1.4.0
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 +329 -137
- package/dist/capabilities.json +1 -906
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/capabilities.json
CHANGED
|
@@ -1,906 +1 @@
|
|
|
1
|
-
{
|
|
2
|
-
"schema_version": "1.1.0",
|
|
3
|
-
"format": "pixverse-cli-capabilities-compact",
|
|
4
|
-
"source": "Generated from Commander definitions by scripts/generate-capabilities.mjs. Do not hand-edit.",
|
|
5
|
-
"cli": {
|
|
6
|
-
"name": "pixverse",
|
|
7
|
-
"package": "pixverse",
|
|
8
|
-
"version": "1.3.6",
|
|
9
|
-
"binary": "pixverse",
|
|
10
|
-
"node": ">=22.12.0",
|
|
11
|
-
"description": "PixVerse CLI - generate videos and images from the command line"
|
|
12
|
-
},
|
|
13
|
-
"contract": {
|
|
14
|
-
"service": "PixVerse public service",
|
|
15
|
-
"auth": "OAuth device flow with a local CLI session",
|
|
16
|
-
"json": "Use --json or -p for pure JSON stdout; errors and progress go to stderr.",
|
|
17
|
-
"text_inputs": "prompt, text, lyrics accept literal text, local file path, or - for stdin.",
|
|
18
|
-
"polling": "done=1; retry=5,9,10; failed=7,8; intervals=2s,5s,10s"
|
|
19
|
-
},
|
|
20
|
-
"exit_codes": {
|
|
21
|
-
"0": "SUCCESS: success",
|
|
22
|
-
"1": "GENERAL_ERROR: general API or unexpected error",
|
|
23
|
-
"2": "TIMEOUT: polling timeout",
|
|
24
|
-
"3": "AUTH_EXPIRED: authentication token invalid or expired",
|
|
25
|
-
"4": "CREDIT_INSUFFICIENT: subscription or credit limit",
|
|
26
|
-
"5": "GENERATION_FAILED: generation failed or was not approved",
|
|
27
|
-
"6": "VALIDATION_ERROR: CLI input validation error",
|
|
28
|
-
"7": "CONCURRENCY_LIMIT: concurrent generation limit; wait for a slot and retry"
|
|
29
|
-
},
|
|
30
|
-
"global_options": {
|
|
31
|
-
"-V, --version": "output the version number",
|
|
32
|
-
"--json": "Output results as JSON",
|
|
33
|
-
"-p": "Print mode - pure JSON output (alias for --json)",
|
|
34
|
-
"--workspace-id <id>": "Override active workspace for this command (0 = personal)",
|
|
35
|
-
"--trace-id <id>": "Trace ID to attach to all API requests in this invocation (must be UUIDv4)"
|
|
36
|
-
},
|
|
37
|
-
"commands": [
|
|
38
|
-
{
|
|
39
|
-
"cmd": "pixverse",
|
|
40
|
-
"desc": "PixVerse CLI - generate videos and images from the command line",
|
|
41
|
-
"children": [
|
|
42
|
-
"auth",
|
|
43
|
-
"create",
|
|
44
|
-
"task",
|
|
45
|
-
"asset",
|
|
46
|
-
"account",
|
|
47
|
-
"subscribe",
|
|
48
|
-
"config",
|
|
49
|
-
"template",
|
|
50
|
-
"voice",
|
|
51
|
-
"music",
|
|
52
|
-
"miniapps",
|
|
53
|
-
"saved",
|
|
54
|
-
"workspace",
|
|
55
|
-
"update"
|
|
56
|
-
],
|
|
57
|
-
"options": {
|
|
58
|
-
"-V, --version": "output the version number",
|
|
59
|
-
"--json": "Output results as JSON",
|
|
60
|
-
"-p": "Print mode - pure JSON output (alias for --json)",
|
|
61
|
-
"--workspace-id <id>": "Override active workspace for this command (0 = personal)",
|
|
62
|
-
"--trace-id <id>": "Trace ID to attach to all API requests in this invocation (must be UUIDv4)"
|
|
63
|
-
}
|
|
64
|
-
},
|
|
65
|
-
{
|
|
66
|
-
"cmd": "pixverse auth",
|
|
67
|
-
"desc": "Manage authentication",
|
|
68
|
-
"children": ["login", "status", "logout"]
|
|
69
|
-
},
|
|
70
|
-
{
|
|
71
|
-
"cmd": "pixverse auth login",
|
|
72
|
-
"desc": "Login via browser authorization (OAuth device flow)",
|
|
73
|
-
"run": true,
|
|
74
|
-
"effect": "mutates_cli_or_remote_state",
|
|
75
|
-
"options": {
|
|
76
|
-
"--json": "Output as JSON"
|
|
77
|
-
}
|
|
78
|
-
},
|
|
79
|
-
{
|
|
80
|
-
"cmd": "pixverse auth status",
|
|
81
|
-
"desc": "Check authentication status and account info",
|
|
82
|
-
"run": true,
|
|
83
|
-
"auth": true,
|
|
84
|
-
"options": {
|
|
85
|
-
"--json": "Output as JSON"
|
|
86
|
-
}
|
|
87
|
-
},
|
|
88
|
-
{
|
|
89
|
-
"cmd": "pixverse auth logout",
|
|
90
|
-
"desc": "Remove stored token",
|
|
91
|
-
"run": true,
|
|
92
|
-
"effect": "destructive_remote_or_local_change",
|
|
93
|
-
"destructive": true,
|
|
94
|
-
"options": {
|
|
95
|
-
"--json": "Output as JSON"
|
|
96
|
-
}
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
"cmd": "pixverse create",
|
|
100
|
-
"desc": "Create videos, images, and audio",
|
|
101
|
-
"children": [
|
|
102
|
-
"video",
|
|
103
|
-
"image",
|
|
104
|
-
"transition",
|
|
105
|
-
"voice",
|
|
106
|
-
"music",
|
|
107
|
-
"extend",
|
|
108
|
-
"modify",
|
|
109
|
-
"upscale",
|
|
110
|
-
"reference",
|
|
111
|
-
"motion-control",
|
|
112
|
-
"template"
|
|
113
|
-
]
|
|
114
|
-
},
|
|
115
|
-
{
|
|
116
|
-
"cmd": "pixverse create video",
|
|
117
|
-
"desc": "Text/image to video (T2V / I2V)",
|
|
118
|
-
"run": true,
|
|
119
|
-
"auth": true,
|
|
120
|
-
"effect": "creates_remote_media_asset",
|
|
121
|
-
"options": {
|
|
122
|
-
"--prompt <text>": "Prompt text - literal, a local file path, or - for stdin (required)",
|
|
123
|
-
"--image <input>": "Image input: file path, HTTPS URL, image ID, or media path (local oversized images are auto-resized to fit 1920x1920)",
|
|
124
|
-
"-m, --model <model>": "Video model",
|
|
125
|
-
"-d, --duration <seconds>": "Duration in seconds",
|
|
126
|
-
"-q, --quality <quality>": "Video quality",
|
|
127
|
-
"--aspect-ratio <ratio>": "Aspect ratio, or auto for model-determined framing where supported",
|
|
128
|
-
"--seed <number>": "Random seed",
|
|
129
|
-
"--count <number>": "Number of generations",
|
|
130
|
-
"--audio": "Enable audio generation",
|
|
131
|
-
"--no-audio": "Disable audio generation | negates: audio",
|
|
132
|
-
"--multi-shot": "Enable multi-shot mode",
|
|
133
|
-
"--no-multi-shot": "Disable multi-shot mode | negates: multiShot",
|
|
134
|
-
"--off-peak": "Use off-peak pricing",
|
|
135
|
-
"--idempotency-key <key>": "Idempotency key for safe retry - backend dedupes by key so repeated submissions return the original task without re-charging",
|
|
136
|
-
"--no-wait": "Return immediately without polling | negates: wait",
|
|
137
|
-
"--timeout <seconds>": "Polling timeout in seconds | default: 300",
|
|
138
|
-
"--json": "Output as JSON"
|
|
139
|
-
}
|
|
140
|
-
},
|
|
141
|
-
{
|
|
142
|
-
"cmd": "pixverse create image",
|
|
143
|
-
"desc": "Text/image to image (T2I / I2I)",
|
|
144
|
-
"run": true,
|
|
145
|
-
"auth": true,
|
|
146
|
-
"effect": "creates_remote_media_asset",
|
|
147
|
-
"options": {
|
|
148
|
-
"--prompt <text>": "Prompt text - literal, a local file path, or - for stdin (required)",
|
|
149
|
-
"--image <input>": "Single image input: file path, HTTPS URL, image ID, or media path (local oversized images are auto-resized to fit 1920x1920)",
|
|
150
|
-
"--images <inputs...>": "Multiple image inputs: file paths, HTTPS URLs, image IDs, or media paths (local oversized images are auto-resized to fit 1920x1920)",
|
|
151
|
-
"-m, --model <model>": "Image model",
|
|
152
|
-
"-q, --quality <quality>": "Image quality",
|
|
153
|
-
"--aspect-ratio <ratio>": "Aspect ratio",
|
|
154
|
-
"--detail-level <level>": "Detail level for gpt-image-2.0: low | medium | high",
|
|
155
|
-
"--count <number>": "Number of generations",
|
|
156
|
-
"--seed <number>": "Random seed",
|
|
157
|
-
"--idempotency-key <key>": "Idempotency key for safe retry - backend dedupes by key so repeated submissions return the original task without re-charging",
|
|
158
|
-
"--no-wait": "Return immediately without polling | negates: wait",
|
|
159
|
-
"--timeout <seconds>": "Polling timeout in seconds | default: 300",
|
|
160
|
-
"--json": "Output as JSON"
|
|
161
|
-
}
|
|
162
|
-
},
|
|
163
|
-
{
|
|
164
|
-
"cmd": "pixverse create transition",
|
|
165
|
-
"desc": "Multi-frame keyframe transition video",
|
|
166
|
-
"run": true,
|
|
167
|
-
"auth": true,
|
|
168
|
-
"effect": "creates_remote_media_asset",
|
|
169
|
-
"options": {
|
|
170
|
-
"--images <inputs...>": "Image inputs: file paths, HTTPS URLs, image IDs, or media paths (2+ required; local oversized images are auto-resized to fit 1920x1920)",
|
|
171
|
-
"--prompt <text>": "Prompt text",
|
|
172
|
-
"-m, --model <model>": "Video model",
|
|
173
|
-
"-q, --quality <quality>": "Video quality",
|
|
174
|
-
"-d, --duration <seconds>": "Duration in seconds",
|
|
175
|
-
"--count <number>": "Number of generations",
|
|
176
|
-
"--seed <number>": "Random seed",
|
|
177
|
-
"--audio": "Enable audio generation",
|
|
178
|
-
"--no-audio": "Disable audio generation | negates: audio",
|
|
179
|
-
"--off-peak": "Use off-peak pricing",
|
|
180
|
-
"--idempotency-key <key>": "Idempotency key for safe retry - backend dedupes by key so repeated submissions return the original task without re-charging",
|
|
181
|
-
"--no-wait": "Return immediately without polling | negates: wait",
|
|
182
|
-
"--timeout <seconds>": "Polling timeout in seconds | default: 300",
|
|
183
|
-
"--json": "Output as JSON"
|
|
184
|
-
}
|
|
185
|
-
},
|
|
186
|
-
{
|
|
187
|
-
"cmd": "pixverse create voice",
|
|
188
|
-
"desc": "Generate speech audio from text (TTS)",
|
|
189
|
-
"run": true,
|
|
190
|
-
"auth": true,
|
|
191
|
-
"effect": "creates_remote_media_asset",
|
|
192
|
-
"options": {
|
|
193
|
-
"--text <str>": "Text to synthesize - literal, a local file path, or - for stdin",
|
|
194
|
-
"-m, --model <id>": "Voice/TTS model | default: speech-2.8-hd",
|
|
195
|
-
"--voice-id <id>": "PixVerse preset voice ID (recommended)",
|
|
196
|
-
"--provider-voice-id <id>": "Provider raw voice ID",
|
|
197
|
-
"--language <code>": "Language code (default: auto) | default: auto",
|
|
198
|
-
"--stability <0..1>": "ElevenLabs stability",
|
|
199
|
-
"--similarity-boost <0..1>": "ElevenLabs similarity boost",
|
|
200
|
-
"--style <0..1>": "ElevenLabs style (eleven-multilingual-v2 only)",
|
|
201
|
-
"--use-speaker-boost": "ElevenLabs speaker boost (eleven-multilingual-v2 only)",
|
|
202
|
-
"--no-use-speaker-boost": "Disable ElevenLabs speaker boost | negates: useSpeakerBoost",
|
|
203
|
-
"--speed <n>": "Speech speed (default 1.0; EL 0.7..1.2, MM 0.5..2.0)",
|
|
204
|
-
"--volume <0..10>": "MiniMax volume",
|
|
205
|
-
"--pitch <-12..12>": "MiniMax pitch",
|
|
206
|
-
"--emotion <enum>": "MiniMax emotion preset",
|
|
207
|
-
"--client-request-id <id>": "Caller-side request id (logged only)",
|
|
208
|
-
"--output <path>": "Download the finished audio to this file/dir",
|
|
209
|
-
"--no-wait": "Return immediately without polling | negates: wait",
|
|
210
|
-
"--timeout <seconds>": "Polling timeout in seconds | default: 300",
|
|
211
|
-
"--json": "Output as JSON"
|
|
212
|
-
}
|
|
213
|
-
},
|
|
214
|
-
{
|
|
215
|
-
"cmd": "pixverse create music",
|
|
216
|
-
"desc": "Generate music audio from a prompt",
|
|
217
|
-
"run": true,
|
|
218
|
-
"auth": true,
|
|
219
|
-
"effect": "creates_remote_media_asset",
|
|
220
|
-
"options": {
|
|
221
|
-
"--prompt <text>": "Music prompt - literal, a local file path, or - for stdin (required)",
|
|
222
|
-
"--lyrics <text>": "Lyrics for models that support lyrics - literal, a local file path, or - for stdin",
|
|
223
|
-
"-m, --model <id>": "Music model | default: music-2.6",
|
|
224
|
-
"--instrumental": "Generate instrumental music",
|
|
225
|
-
"--auto-lyrics": "Let the model generate lyrics",
|
|
226
|
-
"--no-duration-auto": "Disable automatic duration selection | negates: durationAuto",
|
|
227
|
-
"--duration-seconds <seconds>": "Target duration in seconds (sets duration_auto=false)",
|
|
228
|
-
"--image <input...>": "Reference image(s) for Google Lyria: file path, HTTPS URL, image ID, or media path",
|
|
229
|
-
"--client-request-id <id>": "Caller-side request id (logged only)",
|
|
230
|
-
"--output <path>": "Download the finished music to this file/dir",
|
|
231
|
-
"--no-wait": "Return immediately without polling | negates: wait",
|
|
232
|
-
"--timeout <seconds>": "Polling timeout in seconds | default: 300",
|
|
233
|
-
"--json": "Output as JSON"
|
|
234
|
-
}
|
|
235
|
-
},
|
|
236
|
-
{
|
|
237
|
-
"cmd": "pixverse create extend",
|
|
238
|
-
"desc": "Extend an existing video",
|
|
239
|
-
"run": true,
|
|
240
|
-
"auth": true,
|
|
241
|
-
"effect": "creates_remote_media_asset",
|
|
242
|
-
"options": {
|
|
243
|
-
"--video <input>": "Video input: file path, HTTPS URL, video ID, or media path",
|
|
244
|
-
"--prompt <text>": "Prompt for extension",
|
|
245
|
-
"-m, --model <model>": "Video model",
|
|
246
|
-
"-q, --quality <quality>": "Video quality",
|
|
247
|
-
"-d, --duration <seconds>": "Duration in seconds",
|
|
248
|
-
"--count <number>": "Number of generations",
|
|
249
|
-
"--seed <number>": "Random seed",
|
|
250
|
-
"--audio": "Enable audio generation",
|
|
251
|
-
"--no-audio": "Disable audio generation | negates: audio",
|
|
252
|
-
"--off-peak": "Use off-peak pricing",
|
|
253
|
-
"--idempotency-key <key>": "Idempotency key for safe retry - backend dedupes by key so repeated submissions return the original task without re-charging",
|
|
254
|
-
"--no-wait": "Return immediately without polling | negates: wait",
|
|
255
|
-
"--timeout <seconds>": "Polling timeout in seconds | default: 300",
|
|
256
|
-
"--json": "Output as JSON"
|
|
257
|
-
}
|
|
258
|
-
},
|
|
259
|
-
{
|
|
260
|
-
"cmd": "pixverse create modify",
|
|
261
|
-
"desc": "Modify an existing video",
|
|
262
|
-
"run": true,
|
|
263
|
-
"auth": true,
|
|
264
|
-
"effect": "creates_remote_media_asset",
|
|
265
|
-
"options": {
|
|
266
|
-
"--video <input>": "Video input: file path, HTTPS URL, video ID, or media path",
|
|
267
|
-
"--prompt <text>": "Prompt describing the modification. Reference uploaded images with @image1, @image2, ... (1-indexed, matches --images order)",
|
|
268
|
-
"--images <inputs...>": "Reference image inputs (max 5): file paths, HTTPS URLs, image IDs, or media paths. Reference them in --prompt as @image1, @image2, ...",
|
|
269
|
-
"--keyframe-time <ms>": "Keyframe time in milliseconds (0 = first frame) | default: 0",
|
|
270
|
-
"-m, --model <model>": "Video model",
|
|
271
|
-
"-q, --quality <quality>": "Video quality",
|
|
272
|
-
"--count <number>": "Number of generations",
|
|
273
|
-
"--seed <number>": "Random seed",
|
|
274
|
-
"--off-peak": "Use off-peak pricing",
|
|
275
|
-
"--idempotency-key <key>": "Idempotency key for safe retry - backend dedupes by key so repeated submissions return the original task without re-charging",
|
|
276
|
-
"--no-wait": "Return immediately without polling | negates: wait",
|
|
277
|
-
"--timeout <seconds>": "Polling timeout in seconds | default: 300",
|
|
278
|
-
"--json": "Output as JSON"
|
|
279
|
-
}
|
|
280
|
-
},
|
|
281
|
-
{
|
|
282
|
-
"cmd": "pixverse create upscale",
|
|
283
|
-
"desc": "Upscale video resolution to 2160p",
|
|
284
|
-
"run": true,
|
|
285
|
-
"auth": true,
|
|
286
|
-
"effect": "creates_remote_media_asset",
|
|
287
|
-
"options": {
|
|
288
|
-
"--video <input>": "Video input: file path, HTTPS URL, video ID, or media path",
|
|
289
|
-
"-q, --quality <quality>": "Target quality | default: 2160p | choices: 2160p",
|
|
290
|
-
"--idempotency-key <key>": "Idempotency key for safe retry - backend dedupes by key so repeated submissions return the original task without re-charging",
|
|
291
|
-
"--no-wait": "Return immediately without polling | negates: wait",
|
|
292
|
-
"--timeout <seconds>": "Polling timeout in seconds | default: 300",
|
|
293
|
-
"--json": "Output as JSON"
|
|
294
|
-
}
|
|
295
|
-
},
|
|
296
|
-
{
|
|
297
|
-
"cmd": "pixverse create reference",
|
|
298
|
-
"desc": "Create or edit a video with reference media",
|
|
299
|
-
"run": true,
|
|
300
|
-
"auth": true,
|
|
301
|
-
"effect": "creates_remote_media_asset",
|
|
302
|
-
"options": {
|
|
303
|
-
"--images <inputs...>": "Image references: file paths, HTTPS URLs, image IDs, or media paths (model-specific limits; local oversized images are auto-resized to fit 1920x1920)",
|
|
304
|
-
"--videos <inputs...>": "Video references: file paths, HTTPS URLs, video IDs, or media paths (supported by V6, Seedance, MiniMax H3, Wan 3.0, Gemini Omni, Kling O3, and Grok Imagine; model-specific limits apply)",
|
|
305
|
-
"--audios <inputs...>": "Audio references (Seedance, MiniMax H3, and Wan 3.0): file paths, HTTPS URLs, audio IDs, or media paths (model-specific count and known-duration limits apply; Wan 3.0 permits audio-only input)",
|
|
306
|
-
"--prompt <text>": "Prompt text",
|
|
307
|
-
"-m, --model <model>": "Video model",
|
|
308
|
-
"--task-type <type>": "Seedance 2.5 reference task type: auto, reference, edit, or extend",
|
|
309
|
-
"-q, --quality <quality>": "Video quality",
|
|
310
|
-
"--aspect-ratio <ratio>": "Aspect ratio, or auto for model-determined framing where supported",
|
|
311
|
-
"-d, --duration <seconds|auto>": "Duration in seconds, or auto (locked for V6/Grok video references; default for Seedance 2.5/Wan 3.0 video references)",
|
|
312
|
-
"--count <number>": "Number of generations",
|
|
313
|
-
"--seed <number>": "Random seed",
|
|
314
|
-
"--audio": "Enable audio generation",
|
|
315
|
-
"--no-audio": "Disable audio generation | negates: audio",
|
|
316
|
-
"--off-peak": "Use off-peak pricing",
|
|
317
|
-
"--idempotency-key <key>": "Idempotency key for safe retry - backend dedupes by key so repeated submissions return the original task without re-charging",
|
|
318
|
-
"--no-wait": "Return immediately without polling | negates: wait",
|
|
319
|
-
"--timeout <seconds>": "Polling timeout in seconds | default: 300",
|
|
320
|
-
"--json": "Output as JSON"
|
|
321
|
-
}
|
|
322
|
-
},
|
|
323
|
-
{
|
|
324
|
-
"cmd": "pixverse create motion-control",
|
|
325
|
-
"desc": "Generate video with character image + motion reference video",
|
|
326
|
-
"run": true,
|
|
327
|
-
"auth": true,
|
|
328
|
-
"effect": "creates_remote_media_asset",
|
|
329
|
-
"options": {
|
|
330
|
-
"--image <input>": "Character image: file path, HTTPS URL, image ID, or media path (required; local oversized images are auto-resized to fit 1920x1920)",
|
|
331
|
-
"--video <input>": "Motion reference video: file path, HTTPS URL, video ID, or media path (required)",
|
|
332
|
-
"-m, --model <model>": "Video model",
|
|
333
|
-
"-q, --quality <quality>": "Video quality",
|
|
334
|
-
"--count <number>": "Number of generations",
|
|
335
|
-
"--off-peak": "Use off-peak pricing",
|
|
336
|
-
"--idempotency-key <key>": "Idempotency key for safe retry - backend dedupes by key so repeated submissions return the original task without re-charging",
|
|
337
|
-
"--no-wait": "Return immediately without polling | negates: wait",
|
|
338
|
-
"--timeout <seconds>": "Polling timeout in seconds | default: 300",
|
|
339
|
-
"--json": "Output as JSON"
|
|
340
|
-
}
|
|
341
|
-
},
|
|
342
|
-
{
|
|
343
|
-
"cmd": "pixverse create template",
|
|
344
|
-
"desc": "Create from a template/effect",
|
|
345
|
-
"run": true,
|
|
346
|
-
"auth": true,
|
|
347
|
-
"effect": "creates_remote_media_asset",
|
|
348
|
-
"options": {
|
|
349
|
-
"--template-id <id>": "Template ID (required)",
|
|
350
|
-
"--image <paths...>": "Image input(s): file paths, HTTPS URLs, image IDs, or media paths (local oversized images are auto-resized to fit 1920x1920)",
|
|
351
|
-
"--video <input>": "Video input: file path, HTTPS URL, video ID, or media path",
|
|
352
|
-
"--prompt <text>": "Prompt text (optional for some templates)",
|
|
353
|
-
"-q, --quality <quality>": "Video/image quality",
|
|
354
|
-
"-d, --duration <seconds>": "Duration in seconds",
|
|
355
|
-
"--aspect-ratio <ratio>": "Aspect ratio",
|
|
356
|
-
"--seed <number>": "Random seed",
|
|
357
|
-
"--count <number>": "Number of generations",
|
|
358
|
-
"--off-peak": "Use off-peak pricing",
|
|
359
|
-
"--idempotency-key <key>": "Idempotency key for safe retry - backend dedupes by key so repeated submissions return the original task without re-charging",
|
|
360
|
-
"--no-wait": "Return immediately without polling | negates: wait",
|
|
361
|
-
"--timeout <seconds>": "Polling timeout in seconds | default: 300",
|
|
362
|
-
"--json": "Output as JSON"
|
|
363
|
-
}
|
|
364
|
-
},
|
|
365
|
-
{
|
|
366
|
-
"cmd": "pixverse task",
|
|
367
|
-
"desc": "Manage generation tasks",
|
|
368
|
-
"children": ["status", "wait"]
|
|
369
|
-
},
|
|
370
|
-
{
|
|
371
|
-
"cmd": "pixverse task status",
|
|
372
|
-
"desc": "Check the status of one or more generation tasks",
|
|
373
|
-
"run": true,
|
|
374
|
-
"auth": true,
|
|
375
|
-
"args": {
|
|
376
|
-
"ids...": "One or more space-separated video, image, or audio IDs (omit when using --ids)"
|
|
377
|
-
},
|
|
378
|
-
"options": {
|
|
379
|
-
"--ids <ids>": "Comma-separated list of IDs for batch query (e.g. 123,456,789)",
|
|
380
|
-
"--type <type>": "Asset type: video, image, audio, or miniapps | default: video",
|
|
381
|
-
"--json": "Output as JSON"
|
|
382
|
-
}
|
|
383
|
-
},
|
|
384
|
-
{
|
|
385
|
-
"cmd": "pixverse task wait",
|
|
386
|
-
"desc": "Wait for a generation task to complete",
|
|
387
|
-
"run": true,
|
|
388
|
-
"auth": true,
|
|
389
|
-
"args": {
|
|
390
|
-
"id": "Video, image, audio, or MiniApp project ID"
|
|
391
|
-
},
|
|
392
|
-
"options": {
|
|
393
|
-
"--type <type>": "Asset type: video, image, audio, or miniapps | default: video",
|
|
394
|
-
"--timeout <seconds>": "Timeout in seconds | default: 300",
|
|
395
|
-
"--json": "Output as JSON"
|
|
396
|
-
}
|
|
397
|
-
},
|
|
398
|
-
{
|
|
399
|
-
"cmd": "pixverse asset",
|
|
400
|
-
"desc": "Manage your generated assets",
|
|
401
|
-
"children": ["list", "info", "download", "upload", "delete"]
|
|
402
|
-
},
|
|
403
|
-
{
|
|
404
|
-
"cmd": "pixverse asset list",
|
|
405
|
-
"desc": "List your generated assets",
|
|
406
|
-
"run": true,
|
|
407
|
-
"auth": true,
|
|
408
|
-
"options": {
|
|
409
|
-
"--type <type>": "Asset type: video, image, audio, or miniapps | default: video | choices: video, image, audio, miniapps",
|
|
410
|
-
"--source <source>": "Asset source: create or upload | default: create | choices: create, upload",
|
|
411
|
-
"--off-peak": "Filter off-peak generations only (video + create only)",
|
|
412
|
-
"--limit <number>": "Number of items per page | default: 20",
|
|
413
|
-
"--page <number>": "Page number | default: 1",
|
|
414
|
-
"--json": "Output as JSON"
|
|
415
|
-
}
|
|
416
|
-
},
|
|
417
|
-
{
|
|
418
|
-
"cmd": "pixverse asset info",
|
|
419
|
-
"desc": "Get details of a specific asset",
|
|
420
|
-
"run": true,
|
|
421
|
-
"auth": true,
|
|
422
|
-
"args": {
|
|
423
|
-
"id": "Video, image, or audio ID"
|
|
424
|
-
},
|
|
425
|
-
"options": {
|
|
426
|
-
"--type <type>": "Asset type: video, image, audio, or miniapps (auto-detected if omitted; miniapps must be explicit)",
|
|
427
|
-
"--source <source>": "Audio source: create or upload | default: create | choices: create, upload",
|
|
428
|
-
"--json": "Output as JSON"
|
|
429
|
-
}
|
|
430
|
-
},
|
|
431
|
-
{
|
|
432
|
-
"cmd": "pixverse asset download",
|
|
433
|
-
"desc": "Download a created video, image, or audio to local disk",
|
|
434
|
-
"run": true,
|
|
435
|
-
"auth": true,
|
|
436
|
-
"args": {
|
|
437
|
-
"id": "Created video, image, or audio ID (uploads not downloadable)"
|
|
438
|
-
},
|
|
439
|
-
"options": {
|
|
440
|
-
"--type <type>": "Asset type: video, image, audio, or miniapps (auto-detected if omitted; miniapps must be explicit)",
|
|
441
|
-
"--dest <path>": "Destination directory",
|
|
442
|
-
"--json": "Output as JSON"
|
|
443
|
-
}
|
|
444
|
-
},
|
|
445
|
-
{
|
|
446
|
-
"cmd": "pixverse asset upload",
|
|
447
|
-
"desc": "Upload a local file or HTTPS URL to asset library",
|
|
448
|
-
"run": true,
|
|
449
|
-
"auth": true,
|
|
450
|
-
"effect": "uploads_local_or_remote_file",
|
|
451
|
-
"args": {
|
|
452
|
-
"input": "Local file path or HTTPS URL (jpg/png/webp/mp4/mov/mp3/wav/m4a/aac/ogg)"
|
|
453
|
-
},
|
|
454
|
-
"options": {
|
|
455
|
-
"--json": "Output as JSON"
|
|
456
|
-
}
|
|
457
|
-
},
|
|
458
|
-
{
|
|
459
|
-
"cmd": "pixverse asset delete",
|
|
460
|
-
"desc": "Delete a video, image, or audio asset",
|
|
461
|
-
"run": true,
|
|
462
|
-
"auth": true,
|
|
463
|
-
"effect": "destructive_remote_or_local_change",
|
|
464
|
-
"destructive": true,
|
|
465
|
-
"args": {
|
|
466
|
-
"id": "Video, image, or audio ID"
|
|
467
|
-
},
|
|
468
|
-
"options": {
|
|
469
|
-
"--type <type>": "Asset type: video, image, audio, or miniapps (auto-detected if omitted; miniapps must be explicit) | choices: video, image, audio, miniapps",
|
|
470
|
-
"--source <source>": "Asset source: create or upload | default: create | choices: create, upload",
|
|
471
|
-
"--json": "Output as JSON"
|
|
472
|
-
}
|
|
473
|
-
},
|
|
474
|
-
{
|
|
475
|
-
"cmd": "pixverse account",
|
|
476
|
-
"desc": "View account info and credit usage",
|
|
477
|
-
"children": ["info", "usage", "slots"]
|
|
478
|
-
},
|
|
479
|
-
{
|
|
480
|
-
"cmd": "pixverse account info",
|
|
481
|
-
"desc": "Show account info, workspace, and credit balance",
|
|
482
|
-
"run": true,
|
|
483
|
-
"auth": true,
|
|
484
|
-
"options": {
|
|
485
|
-
"--json": "Output as JSON"
|
|
486
|
-
}
|
|
487
|
-
},
|
|
488
|
-
{
|
|
489
|
-
"cmd": "pixverse account usage",
|
|
490
|
-
"desc": "Show credit consumption records",
|
|
491
|
-
"run": true,
|
|
492
|
-
"auth": true,
|
|
493
|
-
"options": {
|
|
494
|
-
"--type <type>": "Filter: all, earned, used (personal only) | default: all",
|
|
495
|
-
"--limit <n>": "Number of records to show | default: 20",
|
|
496
|
-
"--page <n>": "Page number | default: 1",
|
|
497
|
-
"--json": "Output as JSON"
|
|
498
|
-
}
|
|
499
|
-
},
|
|
500
|
-
{
|
|
501
|
-
"cmd": "pixverse account slots",
|
|
502
|
-
"desc": "Show current concurrent generation slots (image / video)",
|
|
503
|
-
"run": true,
|
|
504
|
-
"auth": true,
|
|
505
|
-
"options": {
|
|
506
|
-
"--json": "Output as JSON"
|
|
507
|
-
}
|
|
508
|
-
},
|
|
509
|
-
{
|
|
510
|
-
"cmd": "pixverse subscribe",
|
|
511
|
-
"desc": "Open the PixVerse subscription page in your browser",
|
|
512
|
-
"run": true,
|
|
513
|
-
"auth": true,
|
|
514
|
-
"options": {
|
|
515
|
-
"--json": "Output as JSON"
|
|
516
|
-
}
|
|
517
|
-
},
|
|
518
|
-
{
|
|
519
|
-
"cmd": "pixverse config",
|
|
520
|
-
"desc": "Manage CLI configuration",
|
|
521
|
-
"children": ["list", "get", "set", "reset", "path", "defaults"]
|
|
522
|
-
},
|
|
523
|
-
{
|
|
524
|
-
"cmd": "pixverse config list",
|
|
525
|
-
"desc": "List configuration values",
|
|
526
|
-
"run": true,
|
|
527
|
-
"options": {
|
|
528
|
-
"--json": "Output as JSON"
|
|
529
|
-
}
|
|
530
|
-
},
|
|
531
|
-
{
|
|
532
|
-
"cmd": "pixverse config get",
|
|
533
|
-
"desc": "Get a configuration value",
|
|
534
|
-
"run": true,
|
|
535
|
-
"args": {
|
|
536
|
-
"key": "required"
|
|
537
|
-
},
|
|
538
|
-
"options": {
|
|
539
|
-
"--json": "Output as JSON"
|
|
540
|
-
}
|
|
541
|
-
},
|
|
542
|
-
{
|
|
543
|
-
"cmd": "pixverse config set",
|
|
544
|
-
"desc": "Set a configuration value",
|
|
545
|
-
"run": true,
|
|
546
|
-
"effect": "mutates_cli_or_remote_state",
|
|
547
|
-
"args": {
|
|
548
|
-
"key": "required",
|
|
549
|
-
"value": "required"
|
|
550
|
-
},
|
|
551
|
-
"options": {
|
|
552
|
-
"--json": "Output as JSON"
|
|
553
|
-
}
|
|
554
|
-
},
|
|
555
|
-
{
|
|
556
|
-
"cmd": "pixverse config reset",
|
|
557
|
-
"desc": "Reset all configuration to defaults",
|
|
558
|
-
"run": true,
|
|
559
|
-
"options": {
|
|
560
|
-
"--json": "Output as JSON"
|
|
561
|
-
}
|
|
562
|
-
},
|
|
563
|
-
{
|
|
564
|
-
"cmd": "pixverse config path",
|
|
565
|
-
"desc": "Show configuration file path",
|
|
566
|
-
"run": true,
|
|
567
|
-
"options": {
|
|
568
|
-
"--json": "Output as JSON"
|
|
569
|
-
}
|
|
570
|
-
},
|
|
571
|
-
{
|
|
572
|
-
"cmd": "pixverse config defaults",
|
|
573
|
-
"desc": "Manage per-mode creation default parameters",
|
|
574
|
-
"run": true,
|
|
575
|
-
"children": ["show", "set", "reset"]
|
|
576
|
-
},
|
|
577
|
-
{
|
|
578
|
-
"cmd": "pixverse config defaults show",
|
|
579
|
-
"desc": "Show creation defaults (all modes or a specific mode)",
|
|
580
|
-
"run": true,
|
|
581
|
-
"args": {
|
|
582
|
-
"mode?": "optional"
|
|
583
|
-
},
|
|
584
|
-
"options": {
|
|
585
|
-
"--json": "Output as JSON"
|
|
586
|
-
}
|
|
587
|
-
},
|
|
588
|
-
{
|
|
589
|
-
"cmd": "pixverse config defaults set",
|
|
590
|
-
"desc": "Set a creation default value",
|
|
591
|
-
"run": true,
|
|
592
|
-
"effect": "mutates_cli_or_remote_state",
|
|
593
|
-
"args": {
|
|
594
|
-
"mode": "required",
|
|
595
|
-
"key": "required",
|
|
596
|
-
"value": "required"
|
|
597
|
-
},
|
|
598
|
-
"options": {
|
|
599
|
-
"--json": "Output as JSON"
|
|
600
|
-
}
|
|
601
|
-
},
|
|
602
|
-
{
|
|
603
|
-
"cmd": "pixverse config defaults reset",
|
|
604
|
-
"desc": "Reset creation defaults to built-in values",
|
|
605
|
-
"run": true,
|
|
606
|
-
"effect": "destructive_remote_or_local_change",
|
|
607
|
-
"destructive": true,
|
|
608
|
-
"args": {
|
|
609
|
-
"mode?": "optional"
|
|
610
|
-
},
|
|
611
|
-
"options": {
|
|
612
|
-
"--json": "Output as JSON"
|
|
613
|
-
}
|
|
614
|
-
},
|
|
615
|
-
{
|
|
616
|
-
"cmd": "pixverse template",
|
|
617
|
-
"desc": "Browse and manage templates",
|
|
618
|
-
"children": ["categories", "list", "search", "info"]
|
|
619
|
-
},
|
|
620
|
-
{
|
|
621
|
-
"cmd": "pixverse template categories",
|
|
622
|
-
"desc": "List template categories",
|
|
623
|
-
"run": true,
|
|
624
|
-
"auth": true,
|
|
625
|
-
"options": {
|
|
626
|
-
"--json": "Output as JSON"
|
|
627
|
-
}
|
|
628
|
-
},
|
|
629
|
-
{
|
|
630
|
-
"cmd": "pixverse template list",
|
|
631
|
-
"desc": "List templates",
|
|
632
|
-
"run": true,
|
|
633
|
-
"auth": true,
|
|
634
|
-
"options": {
|
|
635
|
-
"--category <id>": "Filter by category ID",
|
|
636
|
-
"--limit <number>": "Number of items per page | default: 20",
|
|
637
|
-
"--page <number>": "Page number | default: 1",
|
|
638
|
-
"--json": "Output as JSON"
|
|
639
|
-
}
|
|
640
|
-
},
|
|
641
|
-
{
|
|
642
|
-
"cmd": "pixverse template search",
|
|
643
|
-
"desc": "Search templates by keyword",
|
|
644
|
-
"run": true,
|
|
645
|
-
"auth": true,
|
|
646
|
-
"args": {
|
|
647
|
-
"query": "Search keyword"
|
|
648
|
-
},
|
|
649
|
-
"options": {
|
|
650
|
-
"--json": "Output as JSON"
|
|
651
|
-
}
|
|
652
|
-
},
|
|
653
|
-
{
|
|
654
|
-
"cmd": "pixverse template info",
|
|
655
|
-
"desc": "Get template details",
|
|
656
|
-
"run": true,
|
|
657
|
-
"auth": true,
|
|
658
|
-
"args": {
|
|
659
|
-
"id": "Template ID"
|
|
660
|
-
},
|
|
661
|
-
"options": {
|
|
662
|
-
"--json": "Output as JSON"
|
|
663
|
-
}
|
|
664
|
-
},
|
|
665
|
-
{
|
|
666
|
-
"cmd": "pixverse voice",
|
|
667
|
-
"desc": "Browse voice/TTS models and preset voices",
|
|
668
|
-
"children": ["models", "presets"]
|
|
669
|
-
},
|
|
670
|
-
{
|
|
671
|
-
"cmd": "pixverse voice models",
|
|
672
|
-
"desc": "List available voice providers, models, and languages",
|
|
673
|
-
"run": true,
|
|
674
|
-
"auth": true,
|
|
675
|
-
"options": {
|
|
676
|
-
"--json": "Output as JSON"
|
|
677
|
-
}
|
|
678
|
-
},
|
|
679
|
-
{
|
|
680
|
-
"cmd": "pixverse voice presets",
|
|
681
|
-
"desc": "List preset voices",
|
|
682
|
-
"run": true,
|
|
683
|
-
"auth": true,
|
|
684
|
-
"options": {
|
|
685
|
-
"--model <id>": "Filter by model id",
|
|
686
|
-
"--language <code>": "Filter by language code",
|
|
687
|
-
"--provider <name>": "Filter by provider (minimax|elevenlabs)",
|
|
688
|
-
"--page <number>": "Page number | default: 1",
|
|
689
|
-
"--page-size <number>": "Items per page (max 10) | default: 10",
|
|
690
|
-
"--json": "Output as JSON"
|
|
691
|
-
}
|
|
692
|
-
},
|
|
693
|
-
{
|
|
694
|
-
"cmd": "pixverse music",
|
|
695
|
-
"desc": "Browse music generation models",
|
|
696
|
-
"children": ["models"]
|
|
697
|
-
},
|
|
698
|
-
{
|
|
699
|
-
"cmd": "pixverse music models",
|
|
700
|
-
"desc": "List available music providers and models",
|
|
701
|
-
"run": true,
|
|
702
|
-
"auth": true,
|
|
703
|
-
"options": {
|
|
704
|
-
"--json": "Output as JSON"
|
|
705
|
-
}
|
|
706
|
-
},
|
|
707
|
-
{
|
|
708
|
-
"cmd": "pixverse miniapps",
|
|
709
|
-
"desc": "Run PixVerse MiniApps (preset generators)",
|
|
710
|
-
"children": ["list", "info", "create"]
|
|
711
|
-
},
|
|
712
|
-
{
|
|
713
|
-
"cmd": "pixverse miniapps list",
|
|
714
|
-
"desc": "List available MiniApps",
|
|
715
|
-
"run": true,
|
|
716
|
-
"auth": true,
|
|
717
|
-
"options": {
|
|
718
|
-
"--json": "Output as JSON"
|
|
719
|
-
}
|
|
720
|
-
},
|
|
721
|
-
{
|
|
722
|
-
"cmd": "pixverse miniapps info",
|
|
723
|
-
"desc": "Show a MiniApp's details",
|
|
724
|
-
"run": true,
|
|
725
|
-
"auth": true,
|
|
726
|
-
"args": {
|
|
727
|
-
"id": "MiniApp id (e.g. magic_extend)"
|
|
728
|
-
},
|
|
729
|
-
"options": {
|
|
730
|
-
"--json": "Output as JSON"
|
|
731
|
-
}
|
|
732
|
-
},
|
|
733
|
-
{
|
|
734
|
-
"cmd": "pixverse miniapps create",
|
|
735
|
-
"desc": "Create a MiniApp project (returns a project_id)",
|
|
736
|
-
"run": true,
|
|
737
|
-
"auth": true,
|
|
738
|
-
"options": {
|
|
739
|
-
"--id <app_id>": "MiniApp id, e.g. magic_extend or image_region_editor",
|
|
740
|
-
"--params <input>": "App args as JSON (required) - a literal string, a file path, or - for stdin",
|
|
741
|
-
"--output <path>": "Download the finished main asset to this directory",
|
|
742
|
-
"--no-wait": "Return immediately with the project_id, without polling | negates: wait",
|
|
743
|
-
"--timeout <seconds>": "Polling timeout in seconds | default: 300",
|
|
744
|
-
"--json": "Output as JSON"
|
|
745
|
-
}
|
|
746
|
-
},
|
|
747
|
-
{
|
|
748
|
-
"cmd": "pixverse saved",
|
|
749
|
-
"desc": "Manage saved folders and their contents",
|
|
750
|
-
"children": ["list", "items", "new", "rename", "add", "remove", "delete"]
|
|
751
|
-
},
|
|
752
|
-
{
|
|
753
|
-
"cmd": "pixverse saved list",
|
|
754
|
-
"desc": "List your saved folders",
|
|
755
|
-
"run": true,
|
|
756
|
-
"auth": true,
|
|
757
|
-
"options": {
|
|
758
|
-
"--json": "Output as JSON"
|
|
759
|
-
}
|
|
760
|
-
},
|
|
761
|
-
{
|
|
762
|
-
"cmd": "pixverse saved items",
|
|
763
|
-
"desc": "List items in a saved folder",
|
|
764
|
-
"run": true,
|
|
765
|
-
"auth": true,
|
|
766
|
-
"args": {
|
|
767
|
-
"folder_id?": "Folder ID (default: default folder) | default: default"
|
|
768
|
-
},
|
|
769
|
-
"options": {
|
|
770
|
-
"--type <type>": "Asset type: all, video, or image | default: all | choices: all, video, image",
|
|
771
|
-
"--source <source>": "Asset source: create or upload | default: create | choices: create, upload",
|
|
772
|
-
"--limit <number>": "Number of items per page | default: 20",
|
|
773
|
-
"--page <number>": "Page number | default: 1",
|
|
774
|
-
"--json": "Output as JSON"
|
|
775
|
-
}
|
|
776
|
-
},
|
|
777
|
-
{
|
|
778
|
-
"cmd": "pixverse saved new",
|
|
779
|
-
"desc": "Create a new saved folder",
|
|
780
|
-
"run": true,
|
|
781
|
-
"auth": true,
|
|
782
|
-
"effect": "mutates_cli_or_remote_state",
|
|
783
|
-
"args": {
|
|
784
|
-
"name": "Folder name"
|
|
785
|
-
},
|
|
786
|
-
"options": {
|
|
787
|
-
"--json": "Output as JSON"
|
|
788
|
-
}
|
|
789
|
-
},
|
|
790
|
-
{
|
|
791
|
-
"cmd": "pixverse saved rename",
|
|
792
|
-
"desc": "Rename a saved folder",
|
|
793
|
-
"run": true,
|
|
794
|
-
"auth": true,
|
|
795
|
-
"effect": "mutates_cli_or_remote_state",
|
|
796
|
-
"args": {
|
|
797
|
-
"folder_id": "Folder ID",
|
|
798
|
-
"name": "New folder name"
|
|
799
|
-
},
|
|
800
|
-
"options": {
|
|
801
|
-
"--json": "Output as JSON"
|
|
802
|
-
}
|
|
803
|
-
},
|
|
804
|
-
{
|
|
805
|
-
"cmd": "pixverse saved add",
|
|
806
|
-
"desc": "Add assets to a saved folder",
|
|
807
|
-
"run": true,
|
|
808
|
-
"auth": true,
|
|
809
|
-
"effect": "mutates_cli_or_remote_state",
|
|
810
|
-
"args": {
|
|
811
|
-
"ids...": "Asset IDs to add"
|
|
812
|
-
},
|
|
813
|
-
"options": {
|
|
814
|
-
"--folder <folder_id>": "Folder ID (default: default folder) | default: default",
|
|
815
|
-
"--type <type>": "Asset type: video or image | choices: video, image",
|
|
816
|
-
"--source <source>": "Asset source: create or upload | default: create | choices: create, upload",
|
|
817
|
-
"--json": "Output as JSON"
|
|
818
|
-
}
|
|
819
|
-
},
|
|
820
|
-
{
|
|
821
|
-
"cmd": "pixverse saved remove",
|
|
822
|
-
"desc": "Remove assets from a saved folder",
|
|
823
|
-
"run": true,
|
|
824
|
-
"auth": true,
|
|
825
|
-
"effect": "destructive_remote_or_local_change",
|
|
826
|
-
"destructive": true,
|
|
827
|
-
"args": {
|
|
828
|
-
"ids...": "Asset IDs to remove"
|
|
829
|
-
},
|
|
830
|
-
"options": {
|
|
831
|
-
"--folder <folder_id>": "Folder ID (default: default folder) | default: default",
|
|
832
|
-
"--type <type>": "Asset type: video or image | choices: video, image",
|
|
833
|
-
"--source <source>": "Asset source: create or upload | default: create | choices: create, upload",
|
|
834
|
-
"--json": "Output as JSON"
|
|
835
|
-
}
|
|
836
|
-
},
|
|
837
|
-
{
|
|
838
|
-
"cmd": "pixverse saved delete",
|
|
839
|
-
"desc": "Delete a saved folder",
|
|
840
|
-
"run": true,
|
|
841
|
-
"auth": true,
|
|
842
|
-
"effect": "destructive_remote_or_local_change",
|
|
843
|
-
"destructive": true,
|
|
844
|
-
"args": {
|
|
845
|
-
"folder_id": "Folder ID"
|
|
846
|
-
},
|
|
847
|
-
"options": {
|
|
848
|
-
"--json": "Output as JSON"
|
|
849
|
-
}
|
|
850
|
-
},
|
|
851
|
-
{
|
|
852
|
-
"cmd": "pixverse workspace",
|
|
853
|
-
"desc": "Manage workspaces (list, switch, status)",
|
|
854
|
-
"children": ["list", "status", "switch", "manage"]
|
|
855
|
-
},
|
|
856
|
-
{
|
|
857
|
-
"cmd": "pixverse workspace list",
|
|
858
|
-
"desc": "List all workspaces",
|
|
859
|
-
"run": true,
|
|
860
|
-
"auth": true,
|
|
861
|
-
"options": {
|
|
862
|
-
"--json": "Output as JSON"
|
|
863
|
-
}
|
|
864
|
-
},
|
|
865
|
-
{
|
|
866
|
-
"cmd": "pixverse workspace status",
|
|
867
|
-
"desc": "Show the currently active workspace",
|
|
868
|
-
"run": true,
|
|
869
|
-
"auth": true,
|
|
870
|
-
"options": {
|
|
871
|
-
"--json": "Output as JSON"
|
|
872
|
-
}
|
|
873
|
-
},
|
|
874
|
-
{
|
|
875
|
-
"cmd": "pixverse workspace switch",
|
|
876
|
-
"desc": "Switch to a different workspace (interactive if ID omitted)",
|
|
877
|
-
"run": true,
|
|
878
|
-
"auth": true,
|
|
879
|
-
"effect": "mutates_cli_or_remote_state",
|
|
880
|
-
"args": {
|
|
881
|
-
"workspace-id?": "optional"
|
|
882
|
-
},
|
|
883
|
-
"options": {
|
|
884
|
-
"--json": "Output as JSON"
|
|
885
|
-
}
|
|
886
|
-
},
|
|
887
|
-
{
|
|
888
|
-
"cmd": "pixverse workspace manage",
|
|
889
|
-
"desc": "Open workspace management page in your browser",
|
|
890
|
-
"run": true,
|
|
891
|
-
"auth": true,
|
|
892
|
-
"options": {
|
|
893
|
-
"--json": "Output as JSON"
|
|
894
|
-
}
|
|
895
|
-
},
|
|
896
|
-
{
|
|
897
|
-
"cmd": "pixverse update",
|
|
898
|
-
"desc": "Update the CLI to the latest version (npm i -g pixverse@latest)",
|
|
899
|
-
"run": true,
|
|
900
|
-
"effect": "updates_local_cli_installation",
|
|
901
|
-
"options": {
|
|
902
|
-
"--json": "Output as JSON"
|
|
903
|
-
}
|
|
904
|
-
}
|
|
905
|
-
]
|
|
906
|
-
}
|
|
1
|
+
{"schema_version":"1.2.0","format":"pixverse-cli-capabilities-compact","source":"Generated from Commander definitions and the bundled Create capability registry. Do not hand-edit.","cli":{"name":"pixverse","package":"pixverse","version":"1.4.0","binary":"pixverse","node":">=22.12.0","description":"PixVerse CLI - generate videos and images from the command line"},"contract":{"service":"PixVerse public service","regions":["global","cn"],"default_region":"global","region_precedence":["PIXVERSE_REGION","--region","default"],"auth":"OAuth device flow with a local CLI session","json":"Use --json or -p for pure JSON stdout; errors and progress go to stderr.","text_inputs":"prompt, text, lyrics accept literal text, local file path, or - for stdin.","polling":"done=1; retry=5,9,10; failed=7,8; intervals=2s,5s,10s"},"exit_codes":{"0":"SUCCESS: success","1":"GENERAL_ERROR: general API or unexpected error","2":"TIMEOUT: polling timeout","3":"AUTH_EXPIRED: authentication token invalid or expired","4":"CREDIT_INSUFFICIENT: subscription or credit limit","5":"GENERATION_FAILED: generation failed or was not approved","6":"VALIDATION_ERROR: CLI input validation error","7":"CONCURRENCY_LIMIT: concurrent generation limit; wait for a slot and retry"},"global_options":{"-V, --version":"output the version number","--json":"Output results as JSON","-p":"Print mode - pure JSON output (alias for --json)","--workspace-id <id>":"Override active workspace for this command (0 = personal)","--trace-id <id>":"Trace ID to attach to all API requests in this invocation (must be UUIDv4)","--region <region>":"Region: global or cn (default: global; PIXVERSE_REGION overrides) | choices: global, cn"},"commands":[{"cmd":"pixverse","desc":"PixVerse CLI - generate videos and images from the command line","children":["auth","create","capabilities","canvas","task","asset","account","subscribe","config","template","voice","music","miniapps","saved","workspace","update"],"options":{"-V, --version":"output the version number","--json":"Output results as JSON","-p":"Print mode - pure JSON output (alias for --json)","--workspace-id <id>":"Override active workspace for this command (0 = personal)","--trace-id <id>":"Trace ID to attach to all API requests in this invocation (must be UUIDv4)","--region <region>":"Region: global or cn (default: global; PIXVERSE_REGION overrides) | choices: global, cn"}},{"cmd":"pixverse auth","desc":"Manage authentication","children":["login","status","logout"]},{"cmd":"pixverse auth login","desc":"Login via browser authorization (OAuth device flow)","run":true,"effect":"mutates_cli_or_remote_state","options":{"--json":"Output as JSON"}},{"cmd":"pixverse auth status","desc":"Check authentication status and account info","run":true,"auth":true,"options":{"--json":"Output as JSON"}},{"cmd":"pixverse auth logout","desc":"Remove stored token","run":true,"effect":"destructive_remote_or_local_change","destructive":true,"options":{"--json":"Output as JSON"}},{"cmd":"pixverse create","desc":"Create videos, images, and audio","children":["video","image","transition","voice","music","extend","modify","upscale","reference","motion-control","template"]},{"cmd":"pixverse create video","desc":"Text/image to video (T2V / I2V)","run":true,"auth":true,"effect":"creates_remote_media_asset","options":{"--prompt <text>":"Prompt text - literal, a local file path, or - for stdin (required)","--image <input>":"Image input: file path, HTTPS URL, image ID, or media path (local oversized images are auto-resized to fit 1920x1920)","-m, --model <model>":"Video model","-d, --duration <seconds>":"Duration in seconds","-q, --quality <quality>":"Video quality","--aspect-ratio <ratio>":"Aspect ratio, or auto for model-determined framing where supported","--seed <number>":"Random seed","--count <number>":"Number of generations","--audio":"Enable audio generation","--no-audio":"Disable audio generation | negates: audio","--multi-shot":"Enable multi-shot mode","--no-multi-shot":"Disable multi-shot mode | negates: multiShot","--off-peak":"Use off-peak pricing","--idempotency-key <key>":"Idempotency key for safe retry - backend dedupes by key so repeated submissions return the original task without re-charging","--no-wait":"Return immediately without polling | negates: wait","--timeout <seconds>":"Polling timeout in seconds | default: 300","--json":"Output as JSON"}},{"cmd":"pixverse create image","desc":"Text/image to image (T2I / I2I)","run":true,"auth":true,"effect":"creates_remote_media_asset","options":{"--prompt <text>":"Prompt text - literal, a local file path, or - for stdin (required)","--image <input>":"Single image input: file path, HTTPS URL, image ID, or media path (local oversized images are auto-resized to fit 1920x1920)","--images <inputs...>":"Multiple image inputs: file paths, HTTPS URLs, image IDs, or media paths (local oversized images are auto-resized to fit 1920x1920)","-m, --model <model>":"Image model","-q, --quality <quality>":"Image quality","--aspect-ratio <ratio>":"Aspect ratio","--detail-level <level>":"Detail level for gpt-image-2.0: low | medium | high","--count <number>":"Number of generations","--seed <number>":"Random seed","--idempotency-key <key>":"Idempotency key for safe retry - backend dedupes by key so repeated submissions return the original task without re-charging","--no-wait":"Return immediately without polling | negates: wait","--timeout <seconds>":"Polling timeout in seconds | default: 300","--json":"Output as JSON"}},{"cmd":"pixverse create transition","desc":"Multi-frame keyframe transition video","run":true,"auth":true,"effect":"creates_remote_media_asset","options":{"--images <inputs...>":"Image inputs: file paths, HTTPS URLs, image IDs, or media paths (2+ required; local oversized images are auto-resized to fit 1920x1920)","--prompt <text>":"Prompt text","-m, --model <model>":"Video model","-q, --quality <quality>":"Video quality","-d, --duration <seconds>":"Duration in seconds","--count <number>":"Number of generations","--seed <number>":"Random seed","--audio":"Enable audio generation","--no-audio":"Disable audio generation | negates: audio","--off-peak":"Use off-peak pricing","--idempotency-key <key>":"Idempotency key for safe retry - backend dedupes by key so repeated submissions return the original task without re-charging","--no-wait":"Return immediately without polling | negates: wait","--timeout <seconds>":"Polling timeout in seconds | default: 300","--json":"Output as JSON"}},{"cmd":"pixverse create voice","desc":"Generate speech audio from text (TTS)","run":true,"auth":true,"effect":"creates_remote_media_asset","options":{"--text <str>":"Text to synthesize - literal, a local file path, or - for stdin","-m, --model <id>":"Voice/TTS model | default: speech-2.8-hd","--voice-id <id>":"PixVerse preset voice ID (recommended)","--provider-voice-id <id>":"Provider raw voice ID","--language <code>":"Language code (default: auto) | default: auto","--stability <0..1>":"ElevenLabs stability","--similarity-boost <0..1>":"ElevenLabs similarity boost","--style <0..1>":"ElevenLabs style (eleven-multilingual-v2 only)","--use-speaker-boost":"ElevenLabs speaker boost (eleven-multilingual-v2 only)","--no-use-speaker-boost":"Disable ElevenLabs speaker boost | negates: useSpeakerBoost","--speed <n>":"Speech speed (default 1.0; EL 0.7..1.2, MM 0.5..2.0)","--volume <0..10>":"MiniMax volume","--pitch <-12..12>":"MiniMax pitch","--emotion <enum>":"MiniMax emotion preset","--client-request-id <id>":"Caller-side request id (logged only)","--output <path>":"Download the finished audio to this file/dir","--no-wait":"Return immediately without polling | negates: wait","--timeout <seconds>":"Polling timeout in seconds | default: 300","--json":"Output as JSON"}},{"cmd":"pixverse create music","desc":"Generate music audio from a prompt","run":true,"auth":true,"effect":"creates_remote_media_asset","options":{"--prompt <text>":"Music prompt - literal, a local file path, or - for stdin (required)","--lyrics <text>":"Lyrics for models that support lyrics - literal, a local file path, or - for stdin","-m, --model <id>":"Music model | default: music-2.6","--instrumental":"Generate instrumental music","--auto-lyrics":"Let the model generate lyrics","--no-duration-auto":"Disable automatic duration selection | negates: durationAuto","--duration-seconds <seconds>":"Target duration in seconds (sets duration_auto=false)","--image <input...>":"Reference image(s) for Google Lyria: file path, HTTPS URL, image ID, or media path","--client-request-id <id>":"Caller-side request id (logged only)","--output <path>":"Download the finished music to this file/dir","--no-wait":"Return immediately without polling | negates: wait","--timeout <seconds>":"Polling timeout in seconds | default: 300","--json":"Output as JSON"}},{"cmd":"pixverse create extend","desc":"Extend an existing video","run":true,"auth":true,"effect":"creates_remote_media_asset","options":{"--video <input>":"Video input: file path, HTTPS URL, video ID, or media path","--prompt <text>":"Prompt for extension","-m, --model <model>":"Video model","-q, --quality <quality>":"Video quality","-d, --duration <seconds>":"Duration in seconds","--count <number>":"Number of generations","--seed <number>":"Random seed","--audio":"Enable audio generation","--no-audio":"Disable audio generation | negates: audio","--off-peak":"Use off-peak pricing","--idempotency-key <key>":"Idempotency key for safe retry - backend dedupes by key so repeated submissions return the original task without re-charging","--no-wait":"Return immediately without polling | negates: wait","--timeout <seconds>":"Polling timeout in seconds | default: 300","--json":"Output as JSON"}},{"cmd":"pixverse create modify","desc":"Modify an existing video","run":true,"auth":true,"effect":"creates_remote_media_asset","options":{"--video <input>":"Video input: file path, HTTPS URL, video ID, or media path","--prompt <text>":"Prompt describing the modification. Reference uploaded images with @image1, @image2, ... (1-indexed, matches --images order)","--images <inputs...>":"Reference image inputs (max 5): file paths, HTTPS URLs, image IDs, or media paths. Reference them in --prompt as @image1, @image2, ...","--keyframe-time <ms>":"Keyframe time in milliseconds (0 = first frame) | default: 0","-m, --model <model>":"Video model","-q, --quality <quality>":"Video quality","--count <number>":"Number of generations","--seed <number>":"Random seed","--off-peak":"Use off-peak pricing","--idempotency-key <key>":"Idempotency key for safe retry - backend dedupes by key so repeated submissions return the original task without re-charging","--no-wait":"Return immediately without polling | negates: wait","--timeout <seconds>":"Polling timeout in seconds | default: 300","--json":"Output as JSON"}},{"cmd":"pixverse create upscale","desc":"Upscale video resolution to 2160p","run":true,"auth":true,"effect":"creates_remote_media_asset","options":{"--video <input>":"Video input: file path, HTTPS URL, video ID, or media path","-q, --quality <quality>":"Target quality | default: 2160p | choices: 2160p","--idempotency-key <key>":"Idempotency key for safe retry - backend dedupes by key so repeated submissions return the original task without re-charging","--no-wait":"Return immediately without polling | negates: wait","--timeout <seconds>":"Polling timeout in seconds | default: 300","--json":"Output as JSON"}},{"cmd":"pixverse create reference","desc":"Create or edit a video with reference media","run":true,"auth":true,"effect":"creates_remote_media_asset","options":{"--images <inputs...>":"Image references: file paths, HTTPS URLs, image IDs, or media paths (model-specific limits; local oversized images are auto-resized to fit 1920x1920)","--videos <inputs...>":"Video references: file paths, HTTPS URLs, video IDs, or media paths (supported by V6, Seedance, MiniMax H3, Wan 3.0, Gemini Omni, Kling O3, and Grok Imagine; model-specific limits apply)","--audios <inputs...>":"Audio references (Seedance, MiniMax H3, and Wan 3.0): file paths, HTTPS URLs, audio IDs, or media paths (model-specific count and known-duration limits apply; Wan 3.0 permits audio-only input)","--prompt <text>":"Prompt text","-m, --model <model>":"Video model","--task-type <type>":"Seedance 2.5 reference task type: auto, reference, edit, or extend","-q, --quality <quality>":"Video quality","--aspect-ratio <ratio>":"Aspect ratio, or auto for model-determined framing where supported","-d, --duration <seconds|auto>":"Duration in seconds, or auto (locked for V6/Grok video references; default for Seedance 2.5/Wan 3.0 video references)","--count <number>":"Number of generations","--seed <number>":"Random seed","--audio":"Enable audio generation","--no-audio":"Disable audio generation | negates: audio","--off-peak":"Use off-peak pricing","--idempotency-key <key>":"Idempotency key for safe retry - backend dedupes by key so repeated submissions return the original task without re-charging","--no-wait":"Return immediately without polling | negates: wait","--timeout <seconds>":"Polling timeout in seconds | default: 300","--json":"Output as JSON"}},{"cmd":"pixverse create motion-control","desc":"Generate video with character image + motion reference video","run":true,"auth":true,"effect":"creates_remote_media_asset","options":{"--image <input>":"Character image: file path, HTTPS URL, image ID, or media path (required; local oversized images are auto-resized to fit 1920x1920)","--video <input>":"Motion reference video: file path, HTTPS URL, video ID, or media path (required)","-m, --model <model>":"Video model","-q, --quality <quality>":"Video quality","--count <number>":"Number of generations","--off-peak":"Use off-peak pricing","--idempotency-key <key>":"Idempotency key for safe retry - backend dedupes by key so repeated submissions return the original task without re-charging","--no-wait":"Return immediately without polling | negates: wait","--timeout <seconds>":"Polling timeout in seconds | default: 300","--json":"Output as JSON"}},{"cmd":"pixverse create template","desc":"Create from a template/effect","run":true,"auth":true,"effect":"creates_remote_media_asset","options":{"--template-id <id>":"Template ID (required)","--image <paths...>":"Image input(s): file paths, HTTPS URLs, image IDs, or media paths (local oversized images are auto-resized to fit 1920x1920)","--video <input>":"Video input: file path, HTTPS URL, video ID, or media path","--prompt <text>":"Prompt text (optional for some templates)","-q, --quality <quality>":"Video/image quality","-d, --duration <seconds>":"Duration in seconds","--aspect-ratio <ratio>":"Aspect ratio","--seed <number>":"Random seed","--count <number>":"Number of generations","--off-peak":"Use off-peak pricing","--idempotency-key <key>":"Idempotency key for safe retry - backend dedupes by key so repeated submissions return the original task without re-charging","--no-wait":"Return immediately without polling | negates: wait","--timeout <seconds>":"Polling timeout in seconds | default: 300","--json":"Output as JSON"}},{"cmd":"pixverse capabilities","desc":"Show installed PixVerse CLI capabilities","run":true,"children":["create","canvas"],"options":{"--json":"Output as JSON"}},{"cmd":"pixverse capabilities create","desc":"Show bundled capabilities for create commands","run":true,"args":{"mode?":"Create mode"},"options":{"-m, --model <id>":"Resolve capabilities for one model","--json":"Output as JSON"}},{"cmd":"pixverse capabilities canvas","desc":"Show merged Canvas and installed CLI capabilities","run":true,"auth":true,"options":{"--node-type <type>":"Filter by Canvas node type","--selector <value>":"Filter by Canvas adapter route selector","-m, --model <id>":"Resolve mapped CLI capabilities for one model","--raw":"Show the unmodified Canvas capabilities response","--refresh":"Refresh Canvas capabilities from the server","--json":"Output as JSON"}},{"cmd":"pixverse canvas","desc":"Manage Canvas projects, nodes, versions, and generation workflows","children":["project","graph","node","patch","dispatch"]},{"cmd":"pixverse canvas project","desc":"Create and manage Canvas projects","children":["create"]},{"cmd":"pixverse canvas project create","desc":"Create an empty Canvas project","run":true,"auth":true,"effect":"mutates_cli_or_remote_state","options":{"--name <name>":"Project name","--description <text>":"Project description","--json":"Output as JSON"}},{"cmd":"pixverse canvas graph","desc":"Inspect Canvas project structure, status, and recovery","children":["get","status","invalid-nodes","reconcile"]},{"cmd":"pixverse canvas graph get","desc":"Get a Canvas project's nodes, connections, and edit version","run":true,"auth":true,"options":{"--project-id <id>":"Canvas project ID","--json":"Output as JSON"}},{"cmd":"pixverse canvas graph status","desc":"Get the generation status of Canvas nodes","run":true,"auth":true,"options":{"--project-id <id>":"Canvas project ID","--node-ids <a,b,c>":"Node IDs to include (comma-separated)","--json":"Output as JSON"}},{"cmd":"pixverse canvas graph invalid-nodes","desc":"Show Canvas validation issues and invalid node details","run":true,"auth":true,"options":{"--project-id <id>":"Canvas project ID","--json":"Output as JSON"}},{"cmd":"pixverse canvas graph reconcile","desc":"Recover generation for specific Canvas nodes","run":true,"auth":true,"effect":"mutates_cli_or_remote_state","options":{"--project-id <id>":"Canvas project ID","--node-ids <a,b,c>":"Node IDs to process (required, comma-separated)","--edit-version <n>":"Current Canvas edit version (required)","--session-id <id>":"Optional agent session ID (positive decimal)","--run-id <id>":"Optional agent run ID (positive decimal)","--dispatch-plan-id <id>":"Confirmed dispatch plan ID","--require-dispatch":"Fail if no new generation is started","--json":"Output as JSON"}},{"cmd":"pixverse canvas node","desc":"Inspect and manage Canvas nodes","children":["get","schema","versions","version","rerun","extract-audio"]},{"cmd":"pixverse canvas node get","desc":"Get details for a Canvas node","run":true,"auth":true,"options":{"--project-id <id>":"Canvas project ID","--node-id <id>":"Canvas node ID","--json":"Output as JSON"}},{"cmd":"pixverse canvas node schema","desc":"Show the current schema for a Canvas node type","run":true,"auth":true,"options":{"--node-type <type>":"Canvas node type (for example video_compose)","--json":"Output as JSON"}},{"cmd":"pixverse canvas node versions","desc":"List saved versions for a Canvas node","run":true,"auth":true,"options":{"--project-id <id>":"Canvas project ID","--node-id <id>":"Canvas node ID","--page <n>":"Page number (default: 1)","--page-size <n>":"Items per page, 1..100 (default: 20)","--json":"Output as JSON"}},{"cmd":"pixverse canvas node version","desc":"Get or apply a saved version for a Canvas node","run":true,"auth":true,"children":["apply"],"options":{"--project-id <id>":"Canvas project ID","--node-id <id>":"Canvas node ID","--history-id <id>":"Saved version ID (from `canvas node versions`)","--json":"Output as JSON"}},{"cmd":"pixverse canvas node version apply","desc":"Set a saved version as the current Canvas node version","run":true,"auth":true,"effect":"mutates_cli_or_remote_state","options":{"--project-id <id>":"Canvas project ID","--node-id <id>":"Canvas node ID","--history-id <id>":"Saved version ID","--session-id <id>":"Optional agent session ID (positive decimal)","--run-id <id>":"Optional agent run ID (positive decimal)","--json":"Output as JSON"}},{"cmd":"pixverse canvas node rerun","desc":"Run generation again for a specific Canvas node","run":true,"auth":true,"effect":"mutates_cli_or_remote_state","options":{"--project-id <id>":"Canvas project ID","--node-id <id>":"Canvas node ID","--edit-version <n>":"Current Canvas edit version (required)","--session-id <id>":"Optional agent session ID (positive decimal)","--run-id <id>":"Optional agent run ID (positive decimal)","--json":"Output as JSON"}},{"cmd":"pixverse canvas node extract-audio","desc":"Extract the full audio track from a Canvas video node","run":true,"auth":true,"effect":"mutates_cli_or_remote_state","options":{"--project-id <id>":"Canvas project ID","--node-id <id>":"Target audio node ID (created if missing)","--source-node-id <id>":"Source video node ID","--json":"Output as JSON"}},{"cmd":"pixverse canvas patch","desc":"Validate and apply changes to a Canvas project","children":["dry-run","apply"]},{"cmd":"pixverse canvas patch dry-run","desc":"Validate Canvas changes without saving them","run":true,"auth":true,"options":{"--project-id <id>":"Canvas project ID","--patch <input>":"Canvas graph_patch as JSON - a literal string, a file path, or \"-\" for stdin","--session-id <id>":"Optional agent session ID (positive decimal)","--run-id <id>":"Optional agent run ID (positive decimal)","--idempotency-key <key>":"Custom stable retry key (automatically derived if omitted)","--json":"Output as JSON"}},{"cmd":"pixverse canvas patch apply","desc":"Apply validated changes to a Canvas project","run":true,"auth":true,"effect":"mutates_cli_or_remote_state","options":{"--project-id <id>":"Canvas project ID","--patch <input>":"Canvas graph_patch as JSON - a literal string, a file path, or \"-\" for stdin","--session-id <id>":"Optional agent session ID (positive decimal)","--run-id <id>":"Optional agent run ID (positive decimal)","--idempotency-key <key>":"Custom stable retry key (automatically derived if omitted)","--json":"Output as JSON"}},{"cmd":"pixverse canvas dispatch","desc":"Start generation for specific ready Canvas nodes","run":true,"auth":true,"effect":"mutates_cli_or_remote_state","children":["rebind"],"options":{"--project-id <id>":"Canvas project ID","--node-ids <a,b,c>":"Node IDs to process (required, comma-separated)","--edit-version <n>":"Current Canvas edit version (required)","--session-id <id>":"Optional agent session ID (positive decimal)","--run-id <id>":"Optional agent run ID (positive decimal)","--dispatch-plan-id <id>":"Confirmed dispatch plan ID","--require-dispatch":"Fail if no new generation is started","--json":"Output as JSON"}},{"cmd":"pixverse canvas dispatch rebind","desc":"Bind specific ready Canvas nodes to a dispatch plan","run":true,"auth":true,"effect":"mutates_cli_or_remote_state","options":{"--project-id <id>":"Canvas project ID","--dispatch-plan-id <id>":"Dispatch plan ID","--node-ids <a,b,c>":"Ready node IDs (required, comma-separated)","--session-id <id>":"Optional agent session ID (positive decimal)","--run-id <id>":"Optional agent run ID (positive decimal)","--json":"Output as JSON"}},{"cmd":"pixverse task","desc":"Manage generation tasks","children":["status","wait"]},{"cmd":"pixverse task status","desc":"Check the status of one or more generation tasks","run":true,"auth":true,"args":{"ids...":"One or more space-separated video, image, or audio IDs (omit when using --ids)"},"options":{"--ids <ids>":"Comma-separated list of IDs for batch query (e.g. 123,456,789)","--type <type>":"Asset type: video, image, audio, or miniapps | default: video","--json":"Output as JSON"}},{"cmd":"pixverse task wait","desc":"Wait for a generation task to complete","run":true,"auth":true,"args":{"id":"Video, image, audio, or MiniApp project ID"},"options":{"--type <type>":"Asset type: video, image, audio, or miniapps | default: video","--timeout <seconds>":"Timeout in seconds | default: 300","--json":"Output as JSON"}},{"cmd":"pixverse asset","desc":"Manage your generated assets","children":["list","info","download","upload","delete"]},{"cmd":"pixverse asset list","desc":"List your generated assets","run":true,"auth":true,"options":{"--type <type>":"Asset type: video, image, audio, or miniapps | default: video | choices: video, image, audio, miniapps","--source <source>":"Asset source: create or upload | default: create | choices: create, upload","--off-peak":"Filter off-peak generations only (video + create only)","--limit <number>":"Number of items per page | default: 20","--page <number>":"Page number | default: 1","--json":"Output as JSON"}},{"cmd":"pixverse asset info","desc":"Get details of a specific asset","run":true,"auth":true,"args":{"id":"Video, image, or audio ID"},"options":{"--type <type>":"Asset type: video, image, audio, or miniapps (auto-detected if omitted; miniapps must be explicit)","--source <source>":"Audio source: create or upload | default: create | choices: create, upload","--json":"Output as JSON"}},{"cmd":"pixverse asset download","desc":"Download a created video, image, or audio to local disk","run":true,"auth":true,"args":{"id":"Created video, image, or audio ID (uploads not downloadable)"},"options":{"--type <type>":"Asset type: video, image, audio, or miniapps (auto-detected if omitted; miniapps must be explicit)","--dest <path>":"Destination directory","--json":"Output as JSON"}},{"cmd":"pixverse asset upload","desc":"Upload a local file or HTTPS URL to asset library","run":true,"auth":true,"effect":"uploads_local_or_remote_file","args":{"input":"Local file path or HTTPS URL (jpg/png/webp/mp4/mov/mp3/wav/m4a/aac/ogg)"},"options":{"--json":"Output as JSON"}},{"cmd":"pixverse asset delete","desc":"Delete a video, image, or audio asset","run":true,"auth":true,"effect":"destructive_remote_or_local_change","destructive":true,"args":{"id":"Video, image, or audio ID"},"options":{"--type <type>":"Asset type: video, image, audio, or miniapps (auto-detected if omitted; miniapps must be explicit) | choices: video, image, audio, miniapps","--source <source>":"Asset source: create or upload | default: create | choices: create, upload","--json":"Output as JSON"}},{"cmd":"pixverse account","desc":"View account info and credit usage","children":["info","usage","slots"]},{"cmd":"pixverse account info","desc":"Show account info, workspace, and credit balance","run":true,"auth":true,"options":{"--json":"Output as JSON"}},{"cmd":"pixverse account usage","desc":"Show credit consumption records","run":true,"auth":true,"options":{"--type <type>":"Filter: all, earned, used (personal only) | default: all","--limit <n>":"Number of records to show | default: 20","--page <n>":"Page number | default: 1","--json":"Output as JSON"}},{"cmd":"pixverse account slots","desc":"Show current concurrent generation slots (image / video)","run":true,"auth":true,"options":{"--json":"Output as JSON"}},{"cmd":"pixverse subscribe","desc":"Open the PixVerse subscription page in your browser","run":true,"auth":true,"options":{"--json":"Output as JSON"}},{"cmd":"pixverse config","desc":"Manage CLI configuration","children":["list","get","set","reset","path","defaults"]},{"cmd":"pixverse config list","desc":"List configuration values","run":true,"options":{"--json":"Output as JSON"}},{"cmd":"pixverse config get","desc":"Get a configuration value","run":true,"args":{"key":"required"},"options":{"--json":"Output as JSON"}},{"cmd":"pixverse config set","desc":"Set a configuration value","run":true,"effect":"mutates_cli_or_remote_state","args":{"key":"required","value":"required"},"options":{"--json":"Output as JSON"}},{"cmd":"pixverse config reset","desc":"Reset all configuration to defaults","run":true,"options":{"--json":"Output as JSON"}},{"cmd":"pixverse config path","desc":"Show configuration file path","run":true,"options":{"--json":"Output as JSON"}},{"cmd":"pixverse config defaults","desc":"Manage per-mode creation default parameters","run":true,"children":["show","set","reset"]},{"cmd":"pixverse config defaults show","desc":"Show creation defaults (all modes or a specific mode)","run":true,"args":{"mode?":"optional"},"options":{"--json":"Output as JSON"}},{"cmd":"pixverse config defaults set","desc":"Set a creation default value","run":true,"effect":"mutates_cli_or_remote_state","args":{"mode":"required","key":"required","value":"required"},"options":{"--json":"Output as JSON"}},{"cmd":"pixverse config defaults reset","desc":"Reset creation defaults to built-in values","run":true,"effect":"destructive_remote_or_local_change","destructive":true,"args":{"mode?":"optional"},"options":{"--json":"Output as JSON"}},{"cmd":"pixverse template","desc":"Browse and manage templates","children":["categories","list","search","info"]},{"cmd":"pixverse template categories","desc":"List template categories","run":true,"auth":true,"options":{"--json":"Output as JSON"}},{"cmd":"pixverse template list","desc":"List templates","run":true,"auth":true,"options":{"--category <id>":"Filter by category ID","--limit <number>":"Number of items per page | default: 20","--page <number>":"Page number | default: 1","--json":"Output as JSON"}},{"cmd":"pixverse template search","desc":"Search templates by keyword","run":true,"auth":true,"args":{"query":"Search keyword"},"options":{"--json":"Output as JSON"}},{"cmd":"pixverse template info","desc":"Get template details","run":true,"auth":true,"args":{"id":"Template ID"},"options":{"--json":"Output as JSON"}},{"cmd":"pixverse voice","desc":"Browse voice/TTS models and preset voices","children":["models","presets"]},{"cmd":"pixverse voice models","desc":"List available voice providers, models, and languages","run":true,"auth":true,"options":{"--json":"Output as JSON"}},{"cmd":"pixverse voice presets","desc":"List preset voices","run":true,"auth":true,"options":{"--model <id>":"Filter by model id","--language <code>":"Filter by language code","--provider <name>":"Filter by provider (minimax|elevenlabs)","--page <number>":"Page number | default: 1","--page-size <number>":"Items per page (max 10) | default: 10","--json":"Output as JSON"}},{"cmd":"pixverse music","desc":"Browse music generation models","children":["models"]},{"cmd":"pixverse music models","desc":"List available music providers and models","run":true,"auth":true,"options":{"--json":"Output as JSON"}},{"cmd":"pixverse miniapps","desc":"Run PixVerse MiniApps (preset generators)","children":["list","info","create"]},{"cmd":"pixverse miniapps list","desc":"List available MiniApps","run":true,"auth":true,"options":{"--json":"Output as JSON"}},{"cmd":"pixverse miniapps info","desc":"Show a MiniApp's details","run":true,"auth":true,"args":{"id":"MiniApp id (e.g. magic_extend)"},"options":{"--json":"Output as JSON"}},{"cmd":"pixverse miniapps create","desc":"Create a MiniApp project (returns a project_id)","run":true,"auth":true,"options":{"--id <app_id>":"MiniApp id, e.g. magic_extend or image_region_editor","--params <input>":"App args as JSON (required) - a literal string, a file path, or - for stdin","--output <path>":"Download the finished main asset to this directory","--no-wait":"Return immediately with the project_id, without polling | negates: wait","--timeout <seconds>":"Polling timeout in seconds | default: 300","--json":"Output as JSON"}},{"cmd":"pixverse saved","desc":"Manage saved folders and their contents","children":["list","items","new","rename","add","remove","delete"]},{"cmd":"pixverse saved list","desc":"List your saved folders","run":true,"auth":true,"options":{"--json":"Output as JSON"}},{"cmd":"pixverse saved items","desc":"List items in a saved folder","run":true,"auth":true,"args":{"folder_id?":"Folder ID (default: default folder) | default: default"},"options":{"--type <type>":"Asset type: all, video, or image | default: all | choices: all, video, image","--source <source>":"Asset source: create or upload | default: create | choices: create, upload","--limit <number>":"Number of items per page | default: 20","--page <number>":"Page number | default: 1","--json":"Output as JSON"}},{"cmd":"pixverse saved new","desc":"Create a new saved folder","run":true,"auth":true,"effect":"mutates_cli_or_remote_state","args":{"name":"Folder name"},"options":{"--json":"Output as JSON"}},{"cmd":"pixverse saved rename","desc":"Rename a saved folder","run":true,"auth":true,"effect":"mutates_cli_or_remote_state","args":{"folder_id":"Folder ID","name":"New folder name"},"options":{"--json":"Output as JSON"}},{"cmd":"pixverse saved add","desc":"Add assets to a saved folder","run":true,"auth":true,"effect":"mutates_cli_or_remote_state","args":{"ids...":"Asset IDs to add"},"options":{"--folder <folder_id>":"Folder ID (default: default folder) | default: default","--type <type>":"Asset type: video or image | choices: video, image","--source <source>":"Asset source: create or upload | default: create | choices: create, upload","--json":"Output as JSON"}},{"cmd":"pixverse saved remove","desc":"Remove assets from a saved folder","run":true,"auth":true,"effect":"destructive_remote_or_local_change","destructive":true,"args":{"ids...":"Asset IDs to remove"},"options":{"--folder <folder_id>":"Folder ID (default: default folder) | default: default","--type <type>":"Asset type: video or image | choices: video, image","--source <source>":"Asset source: create or upload | default: create | choices: create, upload","--json":"Output as JSON"}},{"cmd":"pixverse saved delete","desc":"Delete a saved folder","run":true,"auth":true,"effect":"destructive_remote_or_local_change","destructive":true,"args":{"folder_id":"Folder ID"},"options":{"--json":"Output as JSON"}},{"cmd":"pixverse workspace","desc":"Manage workspaces (list, switch, status)","children":["list","status","switch","manage"]},{"cmd":"pixverse workspace list","desc":"List all workspaces","run":true,"auth":true,"options":{"--json":"Output as JSON"}},{"cmd":"pixverse workspace status","desc":"Show the currently active workspace","run":true,"auth":true,"options":{"--json":"Output as JSON"}},{"cmd":"pixverse workspace switch","desc":"Switch to a different workspace (interactive if ID omitted)","run":true,"auth":true,"effect":"mutates_cli_or_remote_state","args":{"workspace-id?":"optional"},"options":{"--json":"Output as JSON"}},{"cmd":"pixverse workspace manage","desc":"Open workspace management page in your browser","run":true,"auth":true,"options":{"--json":"Output as JSON"}},{"cmd":"pixverse update","desc":"Update the CLI to the latest version (npm i -g pixverse@latest)","run":true,"effect":"updates_local_cli_installation","options":{"--json":"Output as JSON"}}],"capability_domains":{"create":{"schema_version":"pixverse_create_capabilities.v1","source":"bundled","encoding":"normalized","model_catalog":{"v6":"PixVerse V6","pixverse-c1":"PixVerse C1","seedance-2.5":"Seedance 2.5","seedance-2.0-standard":"Seedance 2.0 Standard","seedance-2.0-fast":"Seedance 2.0 Fast","seedance-2.0-mini":"Seedance 2.0 Mini","minimax-h3":"MiniMax H3","flux-3.0":"FLUX 3","wan-3.0":"Wan 3.0","gemini-omni-flash":"Google Gemini Omni","happyhorse-1.0":"Happy Horse 1.0","kling-o3-pro":"Kling O3 Pro","kling-o3-standard":"Kling O3 Standard","kling-o3-4k":"Kling O3 4K","kling-3.0-pro":"Kling 3.0 Pro","kling-3.0-standard":"Kling 3.0 Standard","kling-3.0-4k":"Kling 3.0 4K","grok-imagine-1.5":"Grok Imagine 1.5","grok-imagine":"Grok Imagine","veo-3.1-lite":"Veo 3.1 Lite","veo-3.1-standard":"Veo 3.1 Standard","veo-3.1-fast":"Veo 3.1 Fast","sora-2-pro":"Sora 2 Pro","sora-2":"Sora 2","v5.6":"PixVerse V5.6","gpt-image-2.0":"GPT Image 2","gemini-3.1-flash":"Nano Banana 2","gemini-3.1-flash-lite":"Nano Banana 2 Lite","qwen-image":"Qwen-image","gemini-3.0":"Nano Banana Pro","gemini-2.5-flash":"Nano Banana","seedream-5.0-pro":"Seedream 5.0 Pro","seedream-5.0-lite":"Seedream 5.0 Lite","seedream-4.5":"Seedream 4.5","seedream-4.0":"Seedream 4.0","kling-image-o3":"Kling Image O3","kling-image-v3":"Kling Image V3","v5":"PixVerse V5","speech-2.8-hd":"MiniMax Speech 2.8 HD","speech-2.8-turbo":"MiniMax Speech 2.8 Turbo","eleven-multilingual-v2":"Eleven Multilingual v2","eleven-v3":"Eleven v3","eleven-turbo-v2.5":"Eleven Turbo v2.5","music-3.0":"MiniMax Music 3.0","music-2.6":"MiniMax Music 2.6","music-v2":"ElevenLabs Music V2","music-v1":"ElevenLabs Music","lyria-3-pro-preview":"Google Lyria 3 Pro","v5.5":"PixVerse V5.5"},"shared_parameters":{"count":{"flag":"--count","type":"integer","required":false,"default":1,"min":1,"max":4,"unit":"count","on_invalid":"reject","description":"Number of generation results."},"seed":{"flag":"--seed","type":"integer","required":false,"on_invalid":"reject","description":"Random seed for reproducible generation."},"idempotency_key":{"flag":"--idempotency-key","type":"string","required":false,"on_invalid":"backend","description":"Caller-provided key for safe request retries."},"wait":{"flag":"--no-wait","type":"boolean","required":false,"default":true,"description":"Wait for the generated asset unless disabled."},"timeout":{"flag":"--timeout","type":"integer","required":false,"default":300,"min":1,"unit":"seconds","on_invalid":"reject","description":"Polling timeout when waiting for completion."},"json":{"flag":"--json","type":"boolean","required":false,"default":false,"description":"Write pure JSON to stdout."},"audio":{"flag":"--audio / --no-audio","type":"boolean","required":false,"default":true,"on_invalid":"adjust","description":"Enable or disable generated audio where supported."},"client_request_id":{"flag":"--client-request-id","type":"string","required":false,"description":"Caller-side request identifier."},"output":{"flag":"--output","type":"string","required":false,"description":"File or directory for the completed download."}},"modes":{"video":{"capability_id":"create.video","command":"pixverse create video","description":"Create a video from text or an image.","default_model":"v6","parameters":{"prompt":{"flag":"--prompt","type":"text","required":true,"accepts":["literal","local_file","stdin"],"on_invalid":"reject","description":"Generation prompt."},"image":{"flag":"--image","type":"media","required":false,"accepts":["local_path","https_url","asset_id","media_path"],"on_invalid":"reject","description":"Optional source image for image-to-video."},"model":{"flag":"--model","type":"string","required":false,"default":"v6","on_invalid":"reject","description":"Generation model.","enum_ref":"model_ids"},"quality":{"flag":"--quality","type":"string","required":false,"default":"720p","unit":"output_resolution","on_invalid":"adjust","description":"Output quality where the selected model supports it."},"duration":{"flag":"--duration","type":"integer","required":false,"default":5,"unit":"seconds","on_invalid":"adjust","description":"Output duration."},"off_peak":{"flag":"--off-peak","type":"boolean","required":false,"default":false,"on_invalid":"adjust","description":"Use off-peak generation where supported."},"aspect_ratio":{"flag":"--aspect-ratio","type":"string","required":false,"default":"16:9","unit":"width:height","on_invalid":"adjust","description":"Output framing for text-to-video and supported models."},"multi_shot":{"flag":"--multi-shot / --no-multi-shot","type":"boolean","required":false,"default":true,"on_invalid":"adjust","description":"Enable multi-shot generation where supported."}},"model_ids":["v6","pixverse-c1","seedance-2.5","seedance-2.0-standard","seedance-2.0-fast","seedance-2.0-mini","minimax-h3","flux-3.0","wan-3.0","gemini-omni-flash","happyhorse-1.0","kling-o3-pro","kling-o3-standard","kling-o3-4k","kling-3.0-pro","kling-3.0-standard","kling-3.0-4k","grok-imagine-1.5","grok-imagine","veo-3.1-lite","veo-3.1-standard","veo-3.1-fast","sora-2-pro","sora-2","v5.6"],"model_parameters":{"duration":{"v6":{"enum":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15],"default":5,"on_invalid":"adjust"},"pixverse-c1":{"enum":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15],"default":5,"on_invalid":"adjust"},"seedance-2.5":{"enum":[4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30],"default":5,"on_invalid":"adjust"},"seedance-2.0-standard":{"enum":[4,5,6,7,8,9,10,11,12,13,14,15],"default":5,"on_invalid":"adjust"},"seedance-2.0-fast":{"enum":[4,5,6,7,8,9,10,11,12,13,14,15],"default":5,"on_invalid":"adjust"},"seedance-2.0-mini":{"enum":[4,5,6,7,8,9,10,11,12,13,14,15],"default":5,"on_invalid":"adjust"},"minimax-h3":{"enum":[5,6,7,8,9,10,11,12,13,14,15],"default":5,"on_invalid":"adjust"},"flux-3.0":{"enum":[5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20],"default":5,"on_invalid":"adjust"},"wan-3.0":{"enum":[2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30],"default":5,"on_invalid":"adjust"},"gemini-omni-flash":{"enum":[3,4,5,6,7,8,9,10],"default":5,"on_invalid":"adjust"},"happyhorse-1.0":{"enum":[3,4,5,6,7,8,9,10,11,12,13,14,15],"default":5,"on_invalid":"adjust"},"kling-o3-pro":{"enum":[3,4,5,6,7,8,9,10,11,12,13,14,15],"default":5,"on_invalid":"adjust"},"kling-o3-standard":{"enum":[3,4,5,6,7,8,9,10,11,12,13,14,15],"default":5,"on_invalid":"adjust"},"kling-o3-4k":{"enum":[3,4,5,6,7,8,9,10,11,12,13,14,15],"default":5,"on_invalid":"adjust"},"kling-3.0-pro":{"enum":[3,4,5,6,7,8,9,10,11,12,13,14,15],"default":5,"on_invalid":"adjust"},"kling-3.0-standard":{"enum":[3,4,5,6,7,8,9,10,11,12,13,14,15],"default":5,"on_invalid":"adjust"},"kling-3.0-4k":{"enum":[3,4,5,6,7,8,9,10,11,12,13,14,15],"default":5,"on_invalid":"adjust"},"grok-imagine-1.5":{"enum":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15],"default":5,"on_invalid":"adjust"},"grok-imagine":{"enum":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15],"default":5,"on_invalid":"adjust"},"veo-3.1-lite":{"enum":[4,6,8],"default":4,"on_invalid":"adjust"},"veo-3.1-standard":{"enum":[4,6,8],"default":4,"on_invalid":"adjust"},"veo-3.1-fast":{"enum":[4,6,8],"default":4,"on_invalid":"adjust"},"sora-2-pro":{"enum":[4,8,12],"default":4,"on_invalid":"adjust"},"sora-2":{"enum":[4,8,12],"default":4,"on_invalid":"adjust"},"v5.6":{"enum":[1,2,3,4,5,6,7,8,9,10],"default":5,"on_invalid":"adjust"}},"quality":{"v6":{"supported":true,"enum":["360p","540p","720p","1080p"],"default":"720p","on_invalid":"adjust"},"pixverse-c1":{"supported":true,"enum":["360p","540p","720p","1080p"],"default":"720p","on_invalid":"adjust"},"seedance-2.5":{"supported":true,"enum":["480p","720p","1080p"],"default":"720p","on_invalid":"adjust"},"seedance-2.0-standard":{"supported":true,"enum":["480p","720p","1080p","2160p"],"default":"720p","on_invalid":"adjust"},"seedance-2.0-fast":{"supported":true,"enum":["480p","720p"],"default":"720p","on_invalid":"adjust"},"seedance-2.0-mini":{"supported":true,"enum":["480p","720p"],"default":"720p","on_invalid":"adjust"},"minimax-h3":{"supported":true,"enum":["768p","1440p"],"default":"1440p","on_invalid":"adjust"},"flux-3.0":{"supported":true,"enum":["720p","1080p"],"default":"720p","on_invalid":"adjust"},"wan-3.0":{"supported":true,"enum":["480p","720p","1080p"],"default":"720p","on_invalid":"adjust"},"gemini-omni-flash":{"supported":true,"enum":["720p"],"default":"720p","on_invalid":"adjust"},"happyhorse-1.0":{"supported":true,"enum":["720p","1080p"],"default":"720p","on_invalid":"adjust"},"kling-o3-pro":{"supported":false,"on_invalid":"adjust","description":"Resolution is selected by the model ID."},"kling-o3-standard":{"supported":false,"on_invalid":"adjust","description":"Resolution is selected by the model ID."},"kling-o3-4k":{"supported":false,"on_invalid":"adjust","description":"Resolution is selected by the model ID."},"kling-3.0-pro":{"supported":false,"on_invalid":"adjust","description":"Resolution is selected by the model ID."},"kling-3.0-standard":{"supported":false,"on_invalid":"adjust","description":"Resolution is selected by the model ID."},"kling-3.0-4k":{"supported":false,"on_invalid":"adjust","description":"Resolution is selected by the model ID."},"grok-imagine-1.5":{"supported":true,"enum":["480p","720p","1080p"],"default":"720p","on_invalid":"adjust"},"grok-imagine":{"supported":true,"enum":["480p","720p"],"default":"720p","on_invalid":"adjust"},"veo-3.1-lite":{"supported":true,"enum":["720p","1080p"],"default":"720p","on_invalid":"adjust"},"veo-3.1-standard":{"supported":true,"enum":["720p","1080p","2160p"],"default":"720p","on_invalid":"adjust"},"veo-3.1-fast":{"supported":true,"enum":["720p","1080p","2160p"],"default":"720p","on_invalid":"adjust"},"sora-2-pro":{"supported":true,"enum":["720p","1080p"],"default":"720p","on_invalid":"adjust"},"sora-2":{"supported":true,"enum":["720p"],"default":"720p","on_invalid":"adjust"},"v5.6":{"supported":true,"enum":["360p","480p","540p","720p","1080p"],"default":"720p","on_invalid":"adjust"}},"aspect_ratio":{"v6":{"supported":true,"enum":["16:9","21:9","4:3","1:1","3:4","9:16","3:2","2:3"],"default":"16:9","on_invalid":"adjust"},"pixverse-c1":{"supported":true,"enum":["16:9","4:3","1:1","3:4","9:16","3:2","2:3"],"default":"16:9","on_invalid":"adjust"},"seedance-2.5":{"supported":true,"enum":["auto","21:9","16:9","4:3","1:1","3:4","9:16"],"default":"16:9","on_invalid":"adjust"},"seedance-2.0-standard":{"supported":true,"enum":["16:9","4:3","1:1","3:4","9:16","21:9"],"default":"16:9","on_invalid":"adjust"},"seedance-2.0-fast":{"supported":true,"enum":["16:9","4:3","1:1","3:4","9:16","21:9"],"default":"16:9","on_invalid":"adjust"},"seedance-2.0-mini":{"supported":true,"enum":["16:9","4:3","1:1","3:4","9:16","21:9"],"default":"16:9","on_invalid":"adjust"},"minimax-h3":{"supported":true,"enum":["21:9","16:9","4:3","1:1","3:4","9:16","auto"],"default":"16:9","on_invalid":"adjust"},"flux-3.0":{"supported":true,"enum":["auto","21:9","2:1","16:9","4:3","1:1","3:4","9:16"],"default":"16:9","on_invalid":"adjust"},"wan-3.0":{"supported":true,"enum":["auto","16:9","4:3","1:1","3:4","9:16"],"default":"auto","on_invalid":"adjust"},"gemini-omni-flash":{"supported":true,"enum":["16:9","9:16"],"default":"16:9","on_invalid":"adjust"},"happyhorse-1.0":{"supported":true,"enum":["16:9","9:16","1:1","4:3","3:4"],"default":"16:9","on_invalid":"adjust"},"kling-o3-pro":{"supported":true,"enum":["16:9","9:16","1:1"],"default":"16:9","on_invalid":"adjust"},"kling-o3-standard":{"supported":true,"enum":["16:9","9:16","1:1"],"default":"16:9","on_invalid":"adjust"},"kling-o3-4k":{"supported":true,"enum":["16:9","9:16","1:1"],"default":"16:9","on_invalid":"adjust"},"kling-3.0-pro":{"supported":true,"enum":["16:9","9:16","1:1"],"default":"16:9","on_invalid":"adjust"},"kling-3.0-standard":{"supported":true,"enum":["16:9","9:16","1:1"],"default":"16:9","on_invalid":"adjust"},"kling-3.0-4k":{"supported":true,"enum":["16:9","9:16","1:1"],"default":"16:9","on_invalid":"adjust"},"grok-imagine-1.5":{"supported":false,"on_invalid":"adjust","description":"Framing is derived from the required source image."},"grok-imagine":{"supported":true,"enum":["16:9","4:3","1:1","9:16","3:4","3:2","2:3"],"default":"16:9","on_invalid":"adjust"},"veo-3.1-lite":{"supported":true,"enum":["16:9","9:16"],"default":"16:9","on_invalid":"adjust"},"veo-3.1-standard":{"supported":true,"enum":["16:9","9:16"],"default":"16:9","on_invalid":"adjust"},"veo-3.1-fast":{"supported":true,"enum":["16:9","9:16"],"default":"16:9","on_invalid":"adjust"},"sora-2-pro":{"supported":true,"enum":["16:9","9:16"],"default":"16:9","on_invalid":"adjust"},"sora-2":{"supported":true,"enum":["16:9","9:16"],"default":"16:9","on_invalid":"adjust"},"v5.6":{"supported":true,"enum":["16:9","9:16","1:1","4:3","3:4","3:2","2:3"],"default":"16:9","on_invalid":"adjust"}},"audio":{"v6":{"supported":true,"on_invalid":"reject","description":"Enable generated audio."},"pixverse-c1":{"supported":true,"on_invalid":"reject","description":"Enable generated audio."},"seedance-2.5":{"supported":false,"on_invalid":"adjust"},"seedance-2.0-standard":{"supported":true,"on_invalid":"reject","description":"Enable generated audio."},"seedance-2.0-fast":{"supported":true,"on_invalid":"reject","description":"Enable generated audio."},"seedance-2.0-mini":{"supported":true,"on_invalid":"reject","description":"Enable generated audio."},"minimax-h3":{"supported":false,"on_invalid":"adjust"},"flux-3.0":{"supported":true,"on_invalid":"reject","description":"Enable generated audio."},"wan-3.0":{"supported":true,"on_invalid":"reject","description":"Enable generated audio."},"gemini-omni-flash":{"supported":false,"on_invalid":"adjust"},"happyhorse-1.0":{"supported":true,"default":true,"on_invalid":"adjust","description":"Audio is always enabled for this model."},"kling-o3-pro":{"supported":true,"on_invalid":"reject","description":"Enable generated audio."},"kling-o3-standard":{"supported":true,"on_invalid":"reject","description":"Enable generated audio."},"kling-o3-4k":{"supported":true,"on_invalid":"reject","description":"Enable generated audio."},"kling-3.0-pro":{"supported":true,"on_invalid":"reject","description":"Enable generated audio."},"kling-3.0-standard":{"supported":true,"on_invalid":"reject","description":"Enable generated audio."},"kling-3.0-4k":{"supported":true,"on_invalid":"reject","description":"Enable generated audio."},"grok-imagine-1.5":{"supported":false,"on_invalid":"adjust"},"grok-imagine":{"supported":false,"on_invalid":"adjust"},"veo-3.1-lite":{"supported":false,"on_invalid":"adjust"},"veo-3.1-standard":{"supported":true,"default":true,"on_invalid":"adjust","description":"Audio is always enabled for this model."},"veo-3.1-fast":{"supported":true,"default":true,"on_invalid":"adjust","description":"Audio is always enabled for this model."},"sora-2-pro":{"supported":false,"on_invalid":"adjust"},"sora-2":{"supported":false,"on_invalid":"adjust"},"v5.6":{"supported":true,"on_invalid":"reject","description":"Enable generated audio."}},"multi_shot":{"v6":{"supported":true},"pixverse-c1":{"supported":false,"on_invalid":"adjust"},"seedance-2.5":{"supported":false,"on_invalid":"adjust"},"seedance-2.0-standard":{"supported":false,"on_invalid":"adjust"},"seedance-2.0-fast":{"supported":false,"on_invalid":"adjust"},"seedance-2.0-mini":{"supported":false,"on_invalid":"adjust"},"minimax-h3":{"supported":false,"on_invalid":"adjust"},"flux-3.0":{"supported":false,"on_invalid":"adjust"},"wan-3.0":{"supported":false,"on_invalid":"adjust"},"gemini-omni-flash":{"supported":false,"on_invalid":"adjust"},"happyhorse-1.0":{"supported":false,"on_invalid":"adjust"},"kling-o3-pro":{"supported":false,"on_invalid":"adjust"},"kling-o3-standard":{"supported":false,"on_invalid":"adjust"},"kling-o3-4k":{"supported":false,"on_invalid":"adjust"},"kling-3.0-pro":{"supported":false,"on_invalid":"adjust"},"kling-3.0-standard":{"supported":false,"on_invalid":"adjust"},"kling-3.0-4k":{"supported":false,"on_invalid":"adjust"},"grok-imagine-1.5":{"supported":false,"on_invalid":"adjust"},"grok-imagine":{"supported":false,"on_invalid":"adjust"},"veo-3.1-lite":{"supported":false,"on_invalid":"adjust"},"veo-3.1-standard":{"supported":false,"on_invalid":"adjust"},"veo-3.1-fast":{"supported":false,"on_invalid":"adjust"},"sora-2-pro":{"supported":false,"on_invalid":"adjust"},"sora-2":{"supported":false,"on_invalid":"adjust"},"v5.6":{"supported":false,"on_invalid":"adjust"}},"off_peak":{"v6":{"supported":true},"pixverse-c1":{"supported":true},"seedance-2.5":{"supported":false,"on_invalid":"adjust"},"seedance-2.0-standard":{"supported":false,"on_invalid":"adjust"},"seedance-2.0-fast":{"supported":false,"on_invalid":"adjust"},"seedance-2.0-mini":{"supported":false,"on_invalid":"adjust"},"minimax-h3":{"supported":false,"on_invalid":"adjust"},"flux-3.0":{"supported":false,"on_invalid":"adjust"},"wan-3.0":{"supported":false,"on_invalid":"adjust"},"gemini-omni-flash":{"supported":false,"on_invalid":"adjust"},"happyhorse-1.0":{"supported":false,"on_invalid":"adjust"},"kling-o3-pro":{"supported":false,"on_invalid":"adjust"},"kling-o3-standard":{"supported":false,"on_invalid":"adjust"},"kling-o3-4k":{"supported":false,"on_invalid":"adjust"},"kling-3.0-pro":{"supported":false,"on_invalid":"adjust"},"kling-3.0-standard":{"supported":false,"on_invalid":"adjust"},"kling-3.0-4k":{"supported":false,"on_invalid":"adjust"},"grok-imagine-1.5":{"supported":false,"on_invalid":"adjust"},"grok-imagine":{"supported":false,"on_invalid":"adjust"},"veo-3.1-lite":{"supported":false,"on_invalid":"adjust"},"veo-3.1-standard":{"supported":false,"on_invalid":"adjust"},"veo-3.1-fast":{"supported":false,"on_invalid":"adjust"},"sora-2-pro":{"supported":false,"on_invalid":"adjust"},"sora-2":{"supported":false,"on_invalid":"adjust"},"v5.6":{"supported":true}}},"variants":{"text_to_video":{"description":"No source image is provided.","when":{"image":{"present":false}}},"image_to_video":{"description":"A source image is provided.","when":{"image":{"present":true}},"rules":[{"id":"image-derived-framing","description":"Most image-to-video models derive framing from the source image; model-specific validation remains authoritative.","when":{"model":{"not_in":["seedance-2.5"]}},"parameters":{"aspect_ratio":{"on_invalid":"adjust"}}}]}},"rules":[{"id":"grok-1.5-requires-image","description":"Grok Imagine 1.5 is image-to-video only.","when":{"model":"grok-imagine-1.5"},"parameters":{"image":{"required":true}}}],"parameter_refs":["count","seed","idempotency_key","wait","timeout","json","audio"]},"image":{"capability_id":"create.image","command":"pixverse create image","description":"Create an image from text and optional reference images.","default_model":"gpt-image-2.0","parameters":{"prompt":{"flag":"--prompt","type":"text","required":true,"accepts":["literal","local_file","stdin"],"on_invalid":"reject","description":"Generation prompt."},"image":{"flag":"--image","type":"media","required":false,"accepts":["local_path","https_url","asset_id","media_path"],"on_invalid":"reject","description":"Single reference image."},"images":{"flag":"--images","type":"media_list","required":false,"accepts":["local_path","https_url","asset_id","media_path"],"on_invalid":"reject","description":"Multiple reference images; limits depend on the selected model."},"model":{"flag":"--model","type":"string","required":false,"default":"gpt-image-2.0","on_invalid":"reject","description":"Image generation model.","enum_ref":"model_ids"},"quality":{"flag":"--quality","type":"string","required":false,"default":"1080p","unit":"output_resolution","on_invalid":"adjust","description":"Output quality."},"aspect_ratio":{"flag":"--aspect-ratio","type":"string","required":false,"default":"16:9","unit":"width:height","on_invalid":"adjust","description":"Output framing."},"detail_level":{"flag":"--detail-level","type":"string","required":false,"supported":false,"on_invalid":"reject","description":"GPT Image 2 detail level."}},"model_ids":["gpt-image-2.0","gemini-3.1-flash","gemini-3.1-flash-lite","qwen-image","gemini-3.0","gemini-2.5-flash","seedream-5.0-pro","seedream-5.0-lite","seedream-4.5","seedream-4.0","kling-image-o3","kling-image-v3"],"model_parameters":{"quality":{"gpt-image-2.0":{"enum":["1080p","1440p","2160p"],"default":"1080p","on_invalid":"adjust"},"gemini-3.1-flash":{"enum":["512p","1080p","1440p","2160p"],"default":"1080p","on_invalid":"adjust"},"gemini-3.1-flash-lite":{"enum":["1080p"],"default":"1080p","on_invalid":"adjust"},"qwen-image":{"enum":["720p","1080p"],"default":"1080p","on_invalid":"adjust"},"gemini-3.0":{"enum":["1080p","1440p","2160p"],"default":"1080p","on_invalid":"adjust"},"gemini-2.5-flash":{"enum":["1080p"],"default":"1080p","on_invalid":"adjust"},"seedream-5.0-pro":{"enum":["1080p","1440p"],"default":"1080p","on_invalid":"adjust"},"seedream-5.0-lite":{"enum":["1440p","1800p","2160p"],"default":"1440p","on_invalid":"adjust"},"seedream-4.5":{"enum":["1440p","2160p"],"default":"1440p","on_invalid":"adjust"},"seedream-4.0":{"enum":["1080p","1440p","2160p"],"default":"1080p","on_invalid":"adjust"},"kling-image-o3":{"enum":["1080p","1440p","2160p"],"default":"1080p","on_invalid":"adjust"},"kling-image-v3":{"enum":["1080p","1440p"],"default":"1080p","on_invalid":"adjust"}},"aspect_ratio":{"gpt-image-2.0":{"enum":["1:1","16:9","9:16","4:3","3:4","3:2","2:3","2:1","1:2","21:9"],"default":"1:1","on_invalid":"adjust"},"gemini-3.1-flash":{"enum":["auto","1:1","16:9","9:16","4:3","3:4","5:4","4:5","3:2","2:3","21:9"],"default":"1:1","on_invalid":"adjust"},"gemini-3.1-flash-lite":{"enum":["auto","1:1","3:2","2:3","3:4","4:3","4:5","5:4","9:16","16:9","21:9"],"default":"1:1","on_invalid":"adjust"},"qwen-image":{"enum":["1:1","16:9","9:16","4:3","3:4","5:4","4:5","3:2","2:3","21:9"],"default":"1:1","on_invalid":"adjust"},"gemini-3.0":{"enum":["auto","1:1","16:9","9:16","4:3","3:4","5:4","4:5","3:2","2:3","21:9"],"default":"1:1","on_invalid":"adjust"},"gemini-2.5-flash":{"enum":["auto","1:1","16:9","9:16","4:3","3:4","5:4","4:5","3:2","2:3","21:9"],"default":"1:1","on_invalid":"adjust"},"seedream-5.0-pro":{"enum":["auto","1:1","16:9","9:16","4:3","3:4","5:4","4:5","3:2","2:3","21:9"],"default":"1:1","on_invalid":"adjust"},"seedream-5.0-lite":{"enum":["auto","1:1","16:9","9:16","4:3","3:4","5:4","4:5","3:2","2:3","21:9"],"default":"1:1","on_invalid":"adjust"},"seedream-4.5":{"enum":["auto","1:1","16:9","9:16","4:3","3:4","5:4","4:5","3:2","2:3","21:9"],"default":"1:1","on_invalid":"adjust"},"seedream-4.0":{"enum":["auto","1:1","16:9","9:16","4:3","3:4","5:4","4:5","3:2","2:3","21:9"],"default":"1:1","on_invalid":"adjust"},"kling-image-o3":{"enum":["16:9","9:16","1:1","4:3","3:4","3:2","2:3","21:9"],"default":"1:1","on_invalid":"adjust"},"kling-image-v3":{"enum":["16:9","9:16","1:1","4:3","3:4","3:2","2:3","21:9"],"default":"1:1","on_invalid":"adjust"}},"images":{"gpt-image-2.0":{"max_count":9},"gemini-3.1-flash":{"max_count":9},"gemini-3.1-flash-lite":{"max_count":14},"qwen-image":{"max_count":3},"gemini-3.0":{"max_count":9},"gemini-2.5-flash":{"max_count":3},"seedream-5.0-pro":{"max_count":10},"seedream-5.0-lite":{"max_count":6},"seedream-4.5":{"max_count":6},"seedream-4.0":{"max_count":6},"kling-image-o3":{"max_count":10},"kling-image-v3":{"max_count":1}},"count":{"gpt-image-2.0":{"max":4,"on_invalid":"adjust"},"gemini-3.1-flash":{"max":4,"on_invalid":"adjust"},"gemini-3.1-flash-lite":{"max":4,"on_invalid":"adjust"},"qwen-image":{"max":3,"on_invalid":"adjust"},"gemini-3.0":{"max":4,"on_invalid":"adjust"},"gemini-2.5-flash":{"max":3,"on_invalid":"adjust"},"seedream-5.0-pro":{"max":4,"on_invalid":"adjust"},"seedream-5.0-lite":{"max":4,"on_invalid":"adjust"},"seedream-4.5":{"max":4,"on_invalid":"adjust"},"seedream-4.0":{"max":4,"on_invalid":"adjust"},"kling-image-o3":{"max":4,"on_invalid":"adjust"},"kling-image-v3":{"max":1,"on_invalid":"adjust"}},"detail_level":{"gpt-image-2.0":{"supported":true,"default":"low","enum":["low","medium","high"]},"gemini-3.1-flash":{"supported":false,"on_invalid":"reject"},"gemini-3.1-flash-lite":{"supported":false,"on_invalid":"reject"},"qwen-image":{"supported":false,"on_invalid":"reject"},"gemini-3.0":{"supported":false,"on_invalid":"reject"},"gemini-2.5-flash":{"supported":false,"on_invalid":"reject"},"seedream-5.0-pro":{"supported":false,"on_invalid":"reject"},"seedream-5.0-lite":{"supported":false,"on_invalid":"reject"},"seedream-4.5":{"supported":false,"on_invalid":"reject"},"seedream-4.0":{"supported":false,"on_invalid":"reject"},"kling-image-o3":{"supported":false,"on_invalid":"reject"},"kling-image-v3":{"supported":false,"on_invalid":"reject"}}},"parameter_refs":["count","seed","idempotency_key","wait","timeout","json"]},"transition":{"capability_id":"create.transition","command":"pixverse create transition","description":"Create a transition video from ordered keyframe images.","default_model":"v6","parameters":{"images":{"flag":"--images","type":"media_list","required":true,"accepts":["local_path","https_url","asset_id","media_path"],"min_count":2,"on_invalid":"reject","description":"Ordered keyframe images."},"prompt":{"flag":"--prompt","type":"text","required":false,"accepts":["literal","local_file","stdin"],"on_invalid":"reject","description":"Optional prompt; required by some models."},"model":{"flag":"--model","type":"string","required":false,"default":"v6","on_invalid":"reject","description":"Generation model.","enum_ref":"model_ids"},"quality":{"flag":"--quality","type":"string","required":false,"default":"720p","unit":"output_resolution","on_invalid":"adjust","description":"Output quality where the selected model supports it."},"duration":{"flag":"--duration","type":"integer","required":false,"default":5,"unit":"seconds","on_invalid":"adjust","description":"Output duration."},"off_peak":{"flag":"--off-peak","type":"boolean","required":false,"default":false,"on_invalid":"adjust","description":"Use off-peak generation where supported."}},"model_ids":["v6","pixverse-c1","seedance-2.5","seedance-2.0-standard","seedance-2.0-fast","seedance-2.0-mini","minimax-h3","wan-3.0","kling-o3-pro","kling-o3-standard","kling-o3-4k","kling-3.0-pro","kling-3.0-standard","kling-3.0-4k","veo-3.1-lite","veo-3.1-standard","veo-3.1-fast","v5.6","v5"],"model_parameters":{"duration":{"v6":{"enum":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15],"default":5,"on_invalid":"adjust"},"pixverse-c1":{"enum":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15],"default":5,"on_invalid":"adjust"},"seedance-2.5":{"enum":[4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30],"default":5,"on_invalid":"adjust"},"seedance-2.0-standard":{"enum":[4,5,6,7,8,9,10,11,12,13,14,15],"default":5,"on_invalid":"adjust"},"seedance-2.0-fast":{"enum":[4,5,6,7,8,9,10,11,12,13,14,15],"default":5,"on_invalid":"adjust"},"seedance-2.0-mini":{"enum":[4,5,6,7,8,9,10,11,12,13,14,15],"default":5,"on_invalid":"adjust"},"minimax-h3":{"enum":[5,6,7,8,9,10,11,12,13,14,15],"default":5,"on_invalid":"adjust"},"wan-3.0":{"enum":[2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30],"default":5,"on_invalid":"adjust"},"kling-o3-pro":{"enum":[3,4,5,6,7,8,9,10,11,12,13,14,15],"default":5,"on_invalid":"adjust"},"kling-o3-standard":{"enum":[3,4,5,6,7,8,9,10,11,12,13,14,15],"default":5,"on_invalid":"adjust"},"kling-o3-4k":{"enum":[3,4,5,6,7,8,9,10,11,12,13,14,15],"default":5,"on_invalid":"adjust"},"kling-3.0-pro":{"enum":[3,4,5,6,7,8,9,10,11,12,13,14,15],"default":5,"on_invalid":"adjust"},"kling-3.0-standard":{"enum":[3,4,5,6,7,8,9,10,11,12,13,14,15],"default":5,"on_invalid":"adjust"},"kling-3.0-4k":{"enum":[3,4,5,6,7,8,9,10,11,12,13,14,15],"default":5,"on_invalid":"adjust"},"veo-3.1-lite":{"enum":[4,6,8],"default":4,"on_invalid":"adjust"},"veo-3.1-standard":{"enum":[4,6,8],"default":4,"on_invalid":"adjust"},"veo-3.1-fast":{"enum":[4,6,8],"default":4,"on_invalid":"adjust"},"v5.6":{"enum":[1,2,3,4,5,6,7,8,9,10],"default":5,"on_invalid":"adjust"},"v5":{"enum":[1,2,3,4,5,6,7,8,9,10],"default":5,"on_invalid":"adjust"}},"quality":{"v6":{"supported":true,"enum":["360p","540p","720p","1080p"],"default":"720p","on_invalid":"adjust"},"pixverse-c1":{"supported":true,"enum":["360p","540p","720p","1080p"],"default":"720p","on_invalid":"adjust"},"seedance-2.5":{"supported":true,"enum":["480p","720p","1080p"],"default":"720p","on_invalid":"adjust"},"seedance-2.0-standard":{"supported":true,"enum":["480p","720p","1080p","2160p"],"default":"720p","on_invalid":"adjust"},"seedance-2.0-fast":{"supported":true,"enum":["480p","720p"],"default":"720p","on_invalid":"adjust"},"seedance-2.0-mini":{"supported":true,"enum":["480p","720p"],"default":"720p","on_invalid":"adjust"},"minimax-h3":{"supported":true,"enum":["768p","1440p"],"default":"1440p","on_invalid":"adjust"},"wan-3.0":{"supported":true,"enum":["480p","720p","1080p"],"default":"720p","on_invalid":"adjust"},"kling-o3-pro":{"supported":false,"on_invalid":"adjust","description":"Resolution is selected by the model ID."},"kling-o3-standard":{"supported":false,"on_invalid":"adjust","description":"Resolution is selected by the model ID."},"kling-o3-4k":{"supported":false,"on_invalid":"adjust","description":"Resolution is selected by the model ID."},"kling-3.0-pro":{"supported":false,"on_invalid":"adjust","description":"Resolution is selected by the model ID."},"kling-3.0-standard":{"supported":false,"on_invalid":"adjust","description":"Resolution is selected by the model ID."},"kling-3.0-4k":{"supported":false,"on_invalid":"adjust","description":"Resolution is selected by the model ID."},"veo-3.1-lite":{"supported":true,"enum":["720p","1080p"],"default":"720p","on_invalid":"adjust"},"veo-3.1-standard":{"supported":true,"enum":["720p","1080p","2160p"],"default":"720p","on_invalid":"adjust"},"veo-3.1-fast":{"supported":true,"enum":["720p","1080p","2160p"],"default":"720p","on_invalid":"adjust"},"v5.6":{"supported":true,"enum":["360p","480p","540p","720p","1080p"],"default":"720p","on_invalid":"adjust"},"v5":{"supported":true,"enum":["360p","540p","720p","1080p"],"default":"720p","on_invalid":"adjust"}},"audio":{"v6":{"supported":true,"on_invalid":"reject","description":"Enable generated audio."},"pixverse-c1":{"supported":true,"on_invalid":"reject","description":"Enable generated audio."},"seedance-2.5":{"supported":false,"on_invalid":"adjust"},"seedance-2.0-standard":{"supported":true,"on_invalid":"reject","description":"Enable generated audio."},"seedance-2.0-fast":{"supported":true,"on_invalid":"reject","description":"Enable generated audio."},"seedance-2.0-mini":{"supported":true,"on_invalid":"reject","description":"Enable generated audio."},"minimax-h3":{"supported":false,"on_invalid":"adjust"},"wan-3.0":{"supported":true,"on_invalid":"reject","description":"Enable generated audio."},"kling-o3-pro":{"supported":true,"on_invalid":"reject","description":"Enable generated audio."},"kling-o3-standard":{"supported":true,"on_invalid":"reject","description":"Enable generated audio."},"kling-o3-4k":{"supported":true,"on_invalid":"reject","description":"Enable generated audio."},"kling-3.0-pro":{"supported":true,"on_invalid":"reject","description":"Enable generated audio."},"kling-3.0-standard":{"supported":true,"on_invalid":"reject","description":"Enable generated audio."},"kling-3.0-4k":{"supported":true,"on_invalid":"reject","description":"Enable generated audio."},"veo-3.1-lite":{"supported":false,"on_invalid":"adjust"},"veo-3.1-standard":{"supported":true,"default":true,"on_invalid":"adjust","description":"Audio is always enabled for this model."},"veo-3.1-fast":{"supported":true,"default":true,"on_invalid":"adjust","description":"Audio is always enabled for this model."},"v5.6":{"supported":true,"on_invalid":"reject","description":"Enable generated audio."},"v5":{"supported":false,"on_invalid":"adjust"}},"off_peak":{"v6":{"supported":true},"pixverse-c1":{"supported":true},"seedance-2.5":{"supported":false,"on_invalid":"adjust"},"seedance-2.0-standard":{"supported":false,"on_invalid":"adjust"},"seedance-2.0-fast":{"supported":false,"on_invalid":"adjust"},"seedance-2.0-mini":{"supported":false,"on_invalid":"adjust"},"minimax-h3":{"supported":false,"on_invalid":"adjust"},"wan-3.0":{"supported":false,"on_invalid":"adjust"},"kling-o3-pro":{"supported":false,"on_invalid":"adjust"},"kling-o3-standard":{"supported":false,"on_invalid":"adjust"},"kling-o3-4k":{"supported":false,"on_invalid":"adjust"},"kling-3.0-pro":{"supported":false,"on_invalid":"adjust"},"kling-3.0-standard":{"supported":false,"on_invalid":"adjust"},"kling-3.0-4k":{"supported":false,"on_invalid":"adjust"},"veo-3.1-lite":{"supported":false,"on_invalid":"adjust"},"veo-3.1-standard":{"supported":false,"on_invalid":"adjust"},"veo-3.1-fast":{"supported":false,"on_invalid":"adjust"},"v5.6":{"supported":true},"v5":{"supported":true}}},"variants":{"two_frames":{"description":"Exactly two keyframes.","when":{"images":{"count":2}},"allowed_models":["v6","pixverse-c1","seedance-2.5","seedance-2.0-standard","seedance-2.0-fast","seedance-2.0-mini","minimax-h3","wan-3.0","kling-o3-pro","kling-o3-standard","kling-o3-4k","kling-3.0-pro","kling-3.0-standard","kling-3.0-4k","veo-3.1-lite","veo-3.1-standard","veo-3.1-fast","v5.6"]},"multi_frame":{"description":"Three or more keyframes.","when":{"images":{"min_count":3}},"allowed_models":["v5"]}},"rules":[{"id":"transition-prompt-required","description":"These models require a transition prompt.","when":{"model":{"in":["minimax-h3","seedance-2.5","wan-3.0"]}},"parameters":{"prompt":{"required":true}}}],"parameter_refs":["count","seed","idempotency_key","wait","timeout","json","audio"]},"voice":{"capability_id":"create.voice","command":"pixverse create voice","description":"Generate speech audio from text.","default_model":"speech-2.8-hd","parameters":{"text":{"flag":"--text","type":"text","required":true,"accepts":["literal","local_file","stdin"],"on_invalid":"reject","description":"Text to synthesize.","min_length":1},"model":{"flag":"--model","type":"string","required":false,"default":"speech-2.8-hd","on_invalid":"reject","description":"Voice model.","enum_ref":"model_ids"},"voice_id":{"flag":"--voice-id","type":"string","required":false,"on_invalid":"backend","description":"PixVerse preset voice identifier."},"provider_voice_id":{"flag":"--provider-voice-id","type":"string","required":false,"on_invalid":"backend","description":"Provider-native voice identifier."},"language":{"flag":"--language","type":"string","required":false,"default":"auto","on_invalid":"backend","description":"Language code; auto omits the provider language field."},"stability":{"flag":"--stability","type":"number","required":false,"min":0,"max":1,"on_invalid":"reject","description":"ElevenLabs voice stability."},"similarity_boost":{"flag":"--similarity-boost","type":"number","required":false,"min":0,"max":1,"on_invalid":"reject","description":"ElevenLabs similarity boost."},"style":{"flag":"--style","type":"number","required":false,"min":0,"max":1,"on_invalid":"reject","description":"Eleven Multilingual v2 style strength."},"use_speaker_boost":{"flag":"--use-speaker-boost / --no-use-speaker-boost","type":"boolean","required":false,"on_invalid":"reject","description":"Eleven Multilingual v2 speaker boost."},"speed":{"flag":"--speed","type":"number","required":false,"default":1,"unit":"multiplier","on_invalid":"reject","description":"Provider-specific speech speed."},"volume":{"flag":"--volume","type":"number","required":false,"min":0,"max":10,"on_invalid":"reject","description":"MiniMax volume."},"pitch":{"flag":"--pitch","type":"number","required":false,"min":-12,"max":12,"unit":"semitones","on_invalid":"reject","description":"MiniMax pitch adjustment."},"emotion":{"flag":"--emotion","type":"string","required":false,"enum":["auto","happy","sad","angry","fearful","disgusted","surprised","calm","fluent","whisper"],"on_invalid":"reject","description":"MiniMax emotion preset."}},"model_ids":["speech-2.8-hd","speech-2.8-turbo","eleven-multilingual-v2","eleven-v3","eleven-turbo-v2.5"],"model_parameters":{"text":{"speech-2.8-hd":{"max_length":10000},"speech-2.8-turbo":{"max_length":10000},"eleven-multilingual-v2":{"max_length":10000},"eleven-v3":{"max_length":5000},"eleven-turbo-v2.5":{"max_length":40000}},"language":{"speech-2.8-hd":{"supported":true,"on_invalid":"backend"},"speech-2.8-turbo":{"supported":true,"on_invalid":"backend"},"eleven-multilingual-v2":{"supported":true,"on_invalid":"backend"},"eleven-v3":{"supported":false,"on_invalid":"adjust"},"eleven-turbo-v2.5":{"supported":true,"on_invalid":"backend"}},"stability":{"speech-2.8-hd":{"supported":false,"on_invalid":"reject"},"speech-2.8-turbo":{"supported":false,"on_invalid":"reject"},"eleven-multilingual-v2":{"supported":true,"min":0,"max":1,"default":0.5},"eleven-v3":{"supported":true,"min":0,"max":1,"default":0.5},"eleven-turbo-v2.5":{"supported":true,"min":0,"max":1,"default":0.5}},"similarity_boost":{"speech-2.8-hd":{"supported":false,"on_invalid":"reject"},"speech-2.8-turbo":{"supported":false,"on_invalid":"reject"},"eleven-multilingual-v2":{"supported":true,"min":0,"max":1,"default":0.75},"eleven-v3":{"supported":true,"min":0,"max":1,"default":0.75},"eleven-turbo-v2.5":{"supported":true,"min":0,"max":1,"default":0.75}},"style":{"speech-2.8-hd":{"supported":false,"on_invalid":"reject"},"speech-2.8-turbo":{"supported":false,"on_invalid":"reject"},"eleven-multilingual-v2":{"supported":true,"min":0,"max":1,"default":0},"eleven-v3":{"supported":false,"on_invalid":"reject"},"eleven-turbo-v2.5":{"supported":false,"on_invalid":"reject"}},"use_speaker_boost":{"speech-2.8-hd":{"supported":false,"on_invalid":"reject"},"speech-2.8-turbo":{"supported":false,"on_invalid":"reject"},"eleven-multilingual-v2":{"supported":true,"default":true},"eleven-v3":{"supported":false,"on_invalid":"reject"},"eleven-turbo-v2.5":{"supported":false,"on_invalid":"reject"}},"speed":{"speech-2.8-hd":{"min":0.5,"max":2,"default":1},"speech-2.8-turbo":{"min":0.5,"max":2,"default":1},"eleven-multilingual-v2":{"min":0.7,"max":1.2,"default":1},"eleven-v3":{"min":0.7,"max":1.2,"default":1},"eleven-turbo-v2.5":{"min":0.7,"max":1.2,"default":1}},"volume":{"speech-2.8-hd":{"supported":true,"min":0,"max":10,"default":1},"speech-2.8-turbo":{"supported":true,"min":0,"max":10,"default":1},"eleven-multilingual-v2":{"supported":false,"on_invalid":"reject"},"eleven-v3":{"supported":false,"on_invalid":"reject"},"eleven-turbo-v2.5":{"supported":false,"on_invalid":"reject"}},"pitch":{"speech-2.8-hd":{"supported":true,"min":-12,"max":12,"default":0},"speech-2.8-turbo":{"supported":true,"min":-12,"max":12,"default":0},"eleven-multilingual-v2":{"supported":false,"on_invalid":"reject"},"eleven-v3":{"supported":false,"on_invalid":"reject"},"eleven-turbo-v2.5":{"supported":false,"on_invalid":"reject"}},"emotion":{"speech-2.8-hd":{"supported":true,"enum":["auto","happy","sad","angry","fearful","disgusted","surprised","calm","fluent","whisper"],"default":"auto"},"speech-2.8-turbo":{"supported":true,"enum":["auto","happy","sad","angry","fearful","disgusted","surprised","calm","fluent","whisper"],"default":"auto"},"eleven-multilingual-v2":{"supported":false,"on_invalid":"reject"},"eleven-v3":{"supported":false,"on_invalid":"reject"},"eleven-turbo-v2.5":{"supported":false,"on_invalid":"reject"}}},"model_metadata":{"speech-2.8-hd":{"provider":"minimax","max_characters":10000},"speech-2.8-turbo":{"provider":"minimax","max_characters":10000},"eleven-multilingual-v2":{"provider":"elevenlabs","max_characters":10000},"eleven-v3":{"provider":"elevenlabs","max_characters":5000},"eleven-turbo-v2.5":{"provider":"elevenlabs","max_characters":40000}},"rules":[{"id":"voice-required","description":"Either voice_id or provider_voice_id is required.","when":{"always":true}}],"runtime_discovery":["pixverse voice models --json","pixverse voice presets --model <id> --json"],"parameter_refs":["wait","timeout","json","client_request_id","output"]},"music":{"capability_id":"create.music","command":"pixverse create music","description":"Generate music audio from a prompt.","default_model":"music-2.6","parameters":{"prompt":{"flag":"--prompt","type":"text","required":true,"accepts":["literal","local_file","stdin"],"on_invalid":"reject","description":"Music generation prompt.","min_length":1},"lyrics":{"flag":"--lyrics","type":"text","required":false,"accepts":["literal","local_file","stdin"],"on_invalid":"reject","description":"Lyrics for models that support separate lyrics."},"model":{"flag":"--model","type":"string","required":false,"default":"music-2.6","on_invalid":"reject","description":"Music model.","enum_ref":"model_ids"},"instrumental":{"flag":"--instrumental","type":"boolean","required":false,"default":false,"on_invalid":"reject","description":"Generate instrumental music."},"auto_lyrics":{"flag":"--auto-lyrics","type":"boolean","required":false,"default":false,"on_invalid":"reject","description":"Let the model generate lyrics."},"duration_auto":{"flag":"--no-duration-auto","type":"boolean","required":false,"default":true,"on_invalid":"reject","description":"Automatically select duration unless disabled."},"duration_seconds":{"flag":"--duration-seconds","type":"integer","required":false,"unit":"seconds","on_invalid":"reject","description":"Manual target duration."},"image":{"flag":"--image","type":"media_list","required":false,"accepts":["local_path","https_url","asset_id","media_path"],"on_invalid":"reject","description":"Reference images for models that support them."}},"model_ids":["music-3.0","music-2.6","music-v2","music-v1","lyria-3-pro-preview"],"model_parameters":{"prompt":{"music-3.0":{"max_length":2000},"music-2.6":{"max_length":2000},"music-v2":{"max_length":4100},"music-v1":{"max_length":4000},"lyria-3-pro-preview":{"max_length":5000}},"lyrics":{"music-3.0":{"supported":true,"max_length":3500},"music-2.6":{"supported":true,"max_length":3500},"music-v2":{"supported":true,"max_length":3500},"music-v1":{"supported":true,"max_length":3500},"lyria-3-pro-preview":{"supported":false,"on_invalid":"reject"}},"instrumental":{"music-3.0":{"supported":true,"on_invalid":"reject"},"music-2.6":{"supported":true,"on_invalid":"reject"},"music-v2":{"supported":true,"on_invalid":"reject"},"music-v1":{"supported":true,"on_invalid":"reject"},"lyria-3-pro-preview":{"supported":true,"on_invalid":"reject"}},"auto_lyrics":{"music-3.0":{"supported":true,"on_invalid":"reject"},"music-2.6":{"supported":true,"on_invalid":"reject"},"music-v2":{"supported":true,"on_invalid":"reject"},"music-v1":{"supported":true,"on_invalid":"reject"},"lyria-3-pro-preview":{"supported":true,"on_invalid":"reject"}},"duration_auto":{"music-3.0":{"supported":true,"default":true,"on_invalid":"reject"},"music-2.6":{"supported":true,"default":true,"on_invalid":"reject"},"music-v2":{"supported":true,"default":true,"on_invalid":"reject"},"music-v1":{"supported":true,"default":true,"on_invalid":"reject"},"lyria-3-pro-preview":{"supported":true,"default":true,"on_invalid":"reject"}},"duration_seconds":{"music-3.0":{"min":10,"max":240},"music-2.6":{"min":10,"max":240},"music-v2":{"min":10,"max":240},"music-v1":{"min":10,"max":240},"lyria-3-pro-preview":{"min":10,"max":240}},"image":{"music-3.0":{"supported":false,"max_count":0,"on_invalid":"reject"},"music-2.6":{"supported":false,"max_count":0,"on_invalid":"reject"},"music-v2":{"supported":false,"max_count":0,"on_invalid":"reject"},"music-v1":{"supported":false,"max_count":0,"on_invalid":"reject"},"lyria-3-pro-preview":{"supported":true,"max_count":10,"on_invalid":"reject"}}},"model_metadata":{"music-3.0":{"provider":"minimax","credits":50},"music-2.6":{"provider":"minimax","credits":40},"music-v2":{"provider":"elevenlabs","credits":125},"music-v1":{"provider":"elevenlabs","credits":150},"lyria-3-pro-preview":{"provider":"google","credits":20}},"rules":[{"id":"music-lyrics-choice","description":"Models with separate lyrics require lyrics, instrumental, or auto_lyrics.","when":{"model":{"supports":"lyrics"}}},{"id":"manual-duration-required","description":"duration_seconds is required when automatic duration is disabled.","when":{"duration_auto":false},"parameters":{"duration_seconds":{"required":true}}}],"runtime_discovery":["pixverse music models --json"],"parameter_refs":["wait","timeout","json","client_request_id","output"]},"extend":{"capability_id":"create.extend","command":"pixverse create extend","description":"Extend an existing video.","default_model":"v6","parameters":{"video":{"flag":"--video","type":"media","required":true,"accepts":["local_path","https_url","asset_id","media_path"],"on_invalid":"reject","description":"Source video to extend."},"prompt":{"flag":"--prompt","type":"text","required":false,"accepts":["literal","local_file","stdin"],"on_invalid":"reject","description":"Extension prompt."},"model":{"flag":"--model","type":"string","required":false,"default":"v6","on_invalid":"reject","description":"Generation model.","enum_ref":"model_ids"},"quality":{"flag":"--quality","type":"string","required":false,"default":"720p","unit":"output_resolution","on_invalid":"adjust","description":"Output quality where the selected model supports it."},"duration":{"flag":"--duration","type":"integer","required":false,"default":5,"unit":"seconds","on_invalid":"adjust","description":"Output duration."},"off_peak":{"flag":"--off-peak","type":"boolean","required":false,"default":false,"on_invalid":"adjust","description":"Use off-peak generation where supported."}},"model_ids":["v6","grok-imagine"],"model_parameters":{"duration":{"v6":{"enum":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15],"default":5,"on_invalid":"adjust"},"grok-imagine":{"enum":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15],"default":5,"on_invalid":"adjust"}},"quality":{"v6":{"supported":true,"enum":["360p","540p","720p","1080p"],"default":"720p","on_invalid":"adjust"},"grok-imagine":{"supported":true,"enum":["480p","720p"],"default":"720p","on_invalid":"adjust"}},"audio":{"v6":{"supported":true,"on_invalid":"reject","description":"Enable generated audio."},"grok-imagine":{"supported":false,"on_invalid":"adjust"}},"off_peak":{"v6":{"supported":true},"grok-imagine":{"supported":false,"on_invalid":"adjust"}}},"parameter_refs":["count","seed","idempotency_key","wait","timeout","json","audio"]},"modify":{"capability_id":"create.modify","command":"pixverse create modify","description":"Modify an existing video with a prompt and references.","default_model":"v5.5","parameters":{"video":{"flag":"--video","type":"media","required":true,"accepts":["local_path","https_url","asset_id","media_path"],"on_invalid":"reject","description":"Source video to modify."},"prompt":{"flag":"--prompt","type":"text","required":true,"accepts":["literal","local_file","stdin"],"on_invalid":"reject","description":"Modification prompt."},"images":{"flag":"--images","type":"media_list","required":false,"accepts":["local_path","https_url","asset_id","media_path"],"max_count":5,"on_invalid":"reject","description":"Reference images addressable as @image1, @image2, and so on."},"keyframe_time":{"flag":"--keyframe-time","type":"integer","required":false,"default":0,"min":0,"unit":"milliseconds","on_invalid":"reject","description":"Frame position used as the modification keyframe."},"model":{"flag":"--model","type":"string","required":false,"default":"v5.5","on_invalid":"reject","description":"Generation model.","enum_ref":"model_ids"},"quality":{"flag":"--quality","type":"string","required":false,"default":"720p","unit":"output_resolution","on_invalid":"adjust","description":"Output quality where the selected model supports it."},"off_peak":{"flag":"--off-peak","type":"boolean","required":false,"default":false,"on_invalid":"adjust","description":"Use off-peak generation where supported."}},"model_ids":["v5.5"],"model_parameters":{"quality":{"v5.5":{"supported":true,"enum":["360p","540p","720p"],"default":"720p","on_invalid":"adjust"}},"off_peak":{"v5.5":{"supported":true}}},"parameter_refs":["count","seed","idempotency_key","wait","timeout","json"]},"upscale":{"capability_id":"create.upscale","command":"pixverse create upscale","description":"Upscale a video to 2160p.","parameters":{"video":{"flag":"--video","type":"media","required":true,"accepts":["local_path","https_url","asset_id","media_path"],"on_invalid":"reject","description":"Source video to upscale."},"quality":{"flag":"--quality","type":"string","required":false,"default":"2160p","enum":["2160p"],"unit":"output_resolution","on_invalid":"reject","description":"Target output quality."}},"parameter_refs":["idempotency_key","wait","timeout","json"]},"reference":{"capability_id":"create.reference","command":"pixverse create reference","description":"Create or edit a video with reference media.","default_model":"v6","parameters":{"images":{"flag":"--images","type":"media_list","required":false,"accepts":["local_path","https_url","asset_id","media_path"],"on_invalid":"reject","description":"Reference images."},"videos":{"flag":"--videos","type":"media_list","required":false,"accepts":["local_path","https_url","asset_id","media_path"],"on_invalid":"reject","description":"Reference videos."},"audios":{"flag":"--audios","type":"media_list","required":false,"accepts":["local_path","https_url","asset_id","media_path"],"on_invalid":"reject","description":"Reference audio clips."},"prompt":{"flag":"--prompt","type":"text","required":true,"accepts":["literal","local_file","stdin"],"on_invalid":"reject","description":"Generation or editing prompt."},"model":{"flag":"--model","type":"string","required":false,"default":"v6","on_invalid":"reject","description":"Generation model.","enum_ref":"model_ids"},"quality":{"flag":"--quality","type":"string","required":false,"default":"720p","unit":"output_resolution","on_invalid":"adjust","description":"Output quality where the selected model supports it."},"duration":{"flag":"--duration","type":"integer","required":false,"default":5,"unit":"seconds","on_invalid":"adjust","description":"Output duration in seconds; 0 is the normalized automatic-duration value where supported (use \"auto\" in the CLI)."},"off_peak":{"flag":"--off-peak","type":"boolean","required":false,"default":false,"on_invalid":"adjust","description":"Use off-peak generation where supported."},"task_type":{"flag":"--task-type","type":"string","required":false,"supported":false,"on_invalid":"reject","description":"Seedance 2.5 reference task type."},"aspect_ratio":{"flag":"--aspect-ratio","type":"string","required":false,"default":"16:9","unit":"width:height","on_invalid":"adjust","description":"Output framing or auto where supported."}},"model_ids":["v6","pixverse-c1","seedance-2.5","seedance-2.0-standard","seedance-2.0-fast","seedance-2.0-mini","minimax-h3","wan-3.0","gemini-omni-flash","kling-o3-pro","kling-o3-standard","kling-o3-4k","grok-imagine","v5.6"],"model_parameters":{"duration":{"v6":{"enum":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0],"default":5,"on_invalid":"adjust"},"pixverse-c1":{"enum":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15],"default":5,"on_invalid":"adjust"},"seedance-2.5":{"enum":[4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,0],"default":5,"on_invalid":"adjust"},"seedance-2.0-standard":{"enum":[4,5,6,7,8,9,10,11,12,13,14,15],"default":5,"on_invalid":"adjust"},"seedance-2.0-fast":{"enum":[4,5,6,7,8,9,10,11,12,13,14,15],"default":5,"on_invalid":"adjust"},"seedance-2.0-mini":{"enum":[4,5,6,7,8,9,10,11,12,13,14,15],"default":5,"on_invalid":"adjust"},"minimax-h3":{"enum":[5,6,7,8,9,10,11,12,13,14,15],"default":5,"on_invalid":"adjust"},"wan-3.0":{"enum":[2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,0],"default":5,"on_invalid":"adjust"},"gemini-omni-flash":{"enum":[3,4,5,6,7,8,9,10,0],"default":5,"on_invalid":"adjust"},"kling-o3-pro":{"enum":[3,4,5,6,7,8,9,10,11,12,13,14,15],"default":5,"on_invalid":"adjust"},"kling-o3-standard":{"enum":[3,4,5,6,7,8,9,10,11,12,13,14,15],"default":5,"on_invalid":"adjust"},"kling-o3-4k":{"enum":[3,4,5,6,7,8,9,10,11,12,13,14,15],"default":5,"on_invalid":"adjust"},"grok-imagine":{"enum":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0],"default":5,"on_invalid":"adjust"},"v5.6":{"enum":[1,2,3,4,5,6,7,8,9,10],"default":5,"on_invalid":"adjust"}},"quality":{"v6":{"supported":true,"enum":["360p","540p","720p","1080p"],"default":"720p","on_invalid":"adjust"},"pixverse-c1":{"supported":true,"enum":["360p","540p","720p","1080p"],"default":"720p","on_invalid":"adjust"},"seedance-2.5":{"supported":true,"enum":["480p","720p","1080p"],"default":"720p","on_invalid":"adjust"},"seedance-2.0-standard":{"supported":true,"enum":["480p","720p","1080p","2160p"],"default":"720p","on_invalid":"adjust"},"seedance-2.0-fast":{"supported":true,"enum":["480p","720p"],"default":"720p","on_invalid":"adjust"},"seedance-2.0-mini":{"supported":true,"enum":["480p","720p"],"default":"720p","on_invalid":"adjust"},"minimax-h3":{"supported":true,"enum":["768p","1440p"],"default":"1440p","on_invalid":"adjust"},"wan-3.0":{"supported":true,"enum":["480p","720p","1080p"],"default":"720p","on_invalid":"adjust"},"gemini-omni-flash":{"supported":true,"enum":["720p"],"default":"720p","on_invalid":"adjust"},"kling-o3-pro":{"supported":false,"on_invalid":"adjust","description":"Resolution is selected by the model ID."},"kling-o3-standard":{"supported":false,"on_invalid":"adjust","description":"Resolution is selected by the model ID."},"kling-o3-4k":{"supported":false,"on_invalid":"adjust","description":"Resolution is selected by the model ID."},"grok-imagine":{"supported":true,"enum":["480p","720p"],"default":"720p","on_invalid":"adjust"},"v5.6":{"supported":true,"enum":["360p","480p","540p","720p","1080p"],"default":"720p","on_invalid":"adjust"}},"aspect_ratio":{"v6":{"supported":true,"enum":["16:9","21:9","4:3","1:1","3:4","9:16","3:2","2:3"],"default":"16:9","on_invalid":"adjust"},"pixverse-c1":{"supported":true,"enum":["16:9","4:3","1:1","3:4","9:16","3:2","2:3"],"default":"16:9","on_invalid":"adjust"},"seedance-2.5":{"supported":true,"enum":["auto","21:9","16:9","4:3","1:1","3:4","9:16"],"default":"16:9","on_invalid":"adjust"},"seedance-2.0-standard":{"supported":true,"enum":["16:9","4:3","1:1","3:4","9:16","21:9"],"default":"16:9","on_invalid":"adjust"},"seedance-2.0-fast":{"supported":true,"enum":["16:9","4:3","1:1","3:4","9:16","21:9"],"default":"16:9","on_invalid":"adjust"},"seedance-2.0-mini":{"supported":true,"enum":["16:9","4:3","1:1","3:4","9:16","21:9"],"default":"16:9","on_invalid":"adjust"},"minimax-h3":{"supported":true,"enum":["21:9","16:9","4:3","1:1","3:4","9:16","auto"],"default":"16:9","on_invalid":"adjust"},"wan-3.0":{"supported":true,"enum":["auto","16:9","4:3","1:1","3:4","9:16"],"default":"auto","on_invalid":"adjust"},"gemini-omni-flash":{"supported":true,"enum":["16:9","9:16"],"default":"16:9","on_invalid":"adjust"},"kling-o3-pro":{"supported":true,"enum":["16:9","9:16","1:1"],"default":"16:9","on_invalid":"adjust"},"kling-o3-standard":{"supported":true,"enum":["16:9","9:16","1:1"],"default":"16:9","on_invalid":"adjust"},"kling-o3-4k":{"supported":true,"enum":["16:9","9:16","1:1"],"default":"16:9","on_invalid":"adjust"},"grok-imagine":{"supported":true,"enum":["16:9","4:3","1:1","9:16","3:4","3:2","2:3"],"default":"16:9","on_invalid":"adjust"},"v5.6":{"supported":true,"enum":["16:9","9:16","1:1","4:3","3:4","3:2","2:3"],"default":"16:9","on_invalid":"adjust"}},"audio":{"v6":{"supported":true,"on_invalid":"reject","description":"Enable generated audio."},"pixverse-c1":{"supported":true,"on_invalid":"reject","description":"Enable generated audio."},"seedance-2.5":{"supported":false,"on_invalid":"adjust"},"seedance-2.0-standard":{"supported":true,"on_invalid":"reject","description":"Enable generated audio."},"seedance-2.0-fast":{"supported":true,"on_invalid":"reject","description":"Enable generated audio."},"seedance-2.0-mini":{"supported":true,"on_invalid":"reject","description":"Enable generated audio."},"minimax-h3":{"supported":false,"on_invalid":"adjust"},"wan-3.0":{"supported":true,"on_invalid":"reject","description":"Enable generated audio."},"gemini-omni-flash":{"supported":false,"on_invalid":"adjust"},"kling-o3-pro":{"supported":true,"on_invalid":"reject","description":"Enable generated audio."},"kling-o3-standard":{"supported":true,"on_invalid":"reject","description":"Enable generated audio."},"kling-o3-4k":{"supported":true,"on_invalid":"reject","description":"Enable generated audio."},"grok-imagine":{"supported":false,"on_invalid":"adjust"},"v5.6":{"supported":true,"on_invalid":"reject","description":"Enable generated audio."}},"off_peak":{"v6":{"supported":true},"pixverse-c1":{"supported":true},"seedance-2.5":{"supported":false,"on_invalid":"adjust"},"seedance-2.0-standard":{"supported":false,"on_invalid":"adjust"},"seedance-2.0-fast":{"supported":false,"on_invalid":"adjust"},"seedance-2.0-mini":{"supported":false,"on_invalid":"adjust"},"minimax-h3":{"supported":false,"on_invalid":"adjust"},"wan-3.0":{"supported":false,"on_invalid":"adjust"},"gemini-omni-flash":{"supported":false,"on_invalid":"adjust"},"kling-o3-pro":{"supported":false,"on_invalid":"adjust"},"kling-o3-standard":{"supported":false,"on_invalid":"adjust"},"kling-o3-4k":{"supported":false,"on_invalid":"adjust"},"grok-imagine":{"supported":false,"on_invalid":"adjust"},"v5.6":{"supported":true}},"images":{"v6":{"max_count":10},"pixverse-c1":{"max_count":7},"seedance-2.5":{"max_count":30},"seedance-2.0-standard":{"max_count":9},"seedance-2.0-fast":{"max_count":9},"seedance-2.0-mini":{"max_count":9},"minimax-h3":{"max_count":9},"wan-3.0":{"max_count":10},"gemini-omni-flash":{"max_count":5},"kling-o3-pro":{"max_count":7},"kling-o3-standard":{"max_count":7},"kling-o3-4k":{"max_count":7},"grok-imagine":{"max_count":7},"v5.6":{"max_count":7}},"videos":{"v6":{"supported":true,"max_count":2},"pixverse-c1":{"supported":false,"max_count":0},"seedance-2.5":{"supported":true,"max_count":10},"seedance-2.0-standard":{"supported":true,"max_count":3},"seedance-2.0-fast":{"supported":true,"max_count":3},"seedance-2.0-mini":{"supported":true,"max_count":3},"minimax-h3":{"supported":true,"max_count":3},"wan-3.0":{"supported":true,"max_count":5},"gemini-omni-flash":{"supported":true,"max_count":1},"kling-o3-pro":{"supported":true,"max_count":1},"kling-o3-standard":{"supported":true,"max_count":1},"kling-o3-4k":{"supported":true,"max_count":1},"grok-imagine":{"supported":true,"max_count":1},"v5.6":{"supported":false,"max_count":0}},"audios":{"v6":{"supported":false,"max_count":0},"pixverse-c1":{"supported":false,"max_count":0},"seedance-2.5":{"supported":true,"max_count":10},"seedance-2.0-standard":{"supported":true,"max_count":3},"seedance-2.0-fast":{"supported":true,"max_count":3},"seedance-2.0-mini":{"supported":true,"max_count":3},"minimax-h3":{"supported":true,"max_count":3},"wan-3.0":{"supported":true,"max_count":5},"gemini-omni-flash":{"supported":false,"max_count":0},"kling-o3-pro":{"supported":false,"max_count":0},"kling-o3-standard":{"supported":false,"max_count":0},"kling-o3-4k":{"supported":false,"max_count":0},"grok-imagine":{"supported":false,"max_count":0},"v5.6":{"supported":false,"max_count":0}},"task_type":{"v6":{"supported":false,"on_invalid":"reject"},"pixverse-c1":{"supported":false,"on_invalid":"reject"},"seedance-2.5":{"supported":true,"enum":["auto","reference","edit","extend"],"default":"auto"},"seedance-2.0-standard":{"supported":false,"on_invalid":"reject"},"seedance-2.0-fast":{"supported":false,"on_invalid":"reject"},"seedance-2.0-mini":{"supported":false,"on_invalid":"reject"},"minimax-h3":{"supported":false,"on_invalid":"reject"},"wan-3.0":{"supported":false,"on_invalid":"reject"},"gemini-omni-flash":{"supported":false,"on_invalid":"reject"},"kling-o3-pro":{"supported":false,"on_invalid":"reject"},"kling-o3-standard":{"supported":false,"on_invalid":"reject"},"kling-o3-4k":{"supported":false,"on_invalid":"reject"},"grok-imagine":{"supported":false,"on_invalid":"reject"},"v5.6":{"supported":false,"on_invalid":"reject"}}},"model_metadata":{"v6":{"max_video_duration_seconds":15},"pixverse-c1":{},"seedance-2.5":{"max_reference_items":50,"max_video_duration_seconds":30},"seedance-2.0-standard":{"max_video_duration_seconds":15},"seedance-2.0-fast":{"max_video_duration_seconds":15},"seedance-2.0-mini":{"max_video_duration_seconds":15},"minimax-h3":{},"wan-3.0":{"max_reference_items":20,"max_video_duration_seconds":15},"gemini-omni-flash":{"max_video_duration_seconds":10},"kling-o3-pro":{"max_video_duration_seconds":15},"kling-o3-standard":{"max_video_duration_seconds":15},"kling-o3-4k":{"max_video_duration_seconds":15},"grok-imagine":{"max_video_duration_seconds":8.7},"v5.6":{}},"rules":[{"id":"reference-media-required","description":"At least one supported image, video, or audio reference is required.","when":{"always":true}},{"id":"audio-requires-visual-reference","description":"Audio references require an image or video reference except where the selected model explicitly supports audio-only input.","when":{"model":{"not_in":["wan-3.0"]},"audios":{"min_count":1}}}],"parameter_refs":["count","seed","idempotency_key","wait","timeout","json","audio"]},"motion-control":{"capability_id":"create.motion-control","command":"pixverse create motion-control","description":"Create a video from a character image and motion video.","default_model":"v5.6","parameters":{"image":{"flag":"--image","type":"media","required":true,"accepts":["local_path","https_url","asset_id","media_path"],"on_invalid":"reject","description":"Character image."},"video":{"flag":"--video","type":"media","required":true,"accepts":["local_path","https_url","asset_id","media_path"],"on_invalid":"reject","description":"Motion reference video."},"model":{"flag":"--model","type":"string","required":false,"default":"v5.6","on_invalid":"reject","description":"Motion-control model.","enum_ref":"model_ids"},"quality":{"flag":"--quality","type":"string","required":false,"default":"720p","unit":"output_resolution","on_invalid":"adjust","description":"Output quality."},"off_peak":{"flag":"--off-peak","type":"boolean","required":false,"default":false,"on_invalid":"adjust","description":"Use off-peak generation where supported."}},"model_ids":["v5.6"],"model_parameters":{"quality":{"v5.6":{"supported":true,"enum":["360p","480p","540p","720p","1080p"],"default":"720p","on_invalid":"adjust"}},"off_peak":{"v5.6":{"supported":true}}},"parameter_refs":["count","idempotency_key","wait","timeout","json"]},"template":{"capability_id":"create.template","command":"pixverse create template","description":"Create media from a template or effect.","parameters":{"template_id":{"flag":"--template-id","type":"integer","required":true,"min":1,"unit":"identifier","on_invalid":"reject","description":"Template identifier."},"image":{"flag":"--image","type":"media_list","required":false,"accepts":["local_path","https_url","asset_id","media_path"],"on_invalid":"reject","description":"Template image inputs."},"video":{"flag":"--video","type":"media","required":false,"accepts":["local_path","https_url","asset_id","media_path"],"on_invalid":"reject","description":"Template video input."},"prompt":{"flag":"--prompt","type":"text","required":false,"accepts":["literal","local_file","stdin"],"on_invalid":"reject","description":"Prompt for templates that accept text."},"quality":{"flag":"--quality","type":"string","required":false,"default":"720p","unit":"output_resolution","on_invalid":"backend","description":"Template output quality."},"duration":{"flag":"--duration","type":"integer","required":false,"unit":"seconds","on_invalid":"backend","description":"Template output duration."},"aspect_ratio":{"flag":"--aspect-ratio","type":"string","required":false,"unit":"width:height","on_invalid":"backend","description":"Template output framing."},"off_peak":{"flag":"--off-peak","type":"boolean","required":false,"default":false,"on_invalid":"backend","description":"Use off-peak generation where the template supports it."}},"runtime_discovery":["pixverse template info <id> --json"],"parameter_refs":["count","seed","idempotency_key","wait","timeout","json"]}}},"canvas":{"source":"runtime","discovery":{"merged_command":"pixverse capabilities canvas --json","raw_command":"pixverse capabilities canvas --raw --json","schema_command":"pixverse canvas node schema --node-type <type> --json","adapter_contract_revision":"canvas_cli_capability_adapter.v2"}}},"bindings":{"canvas_cli":{"schema_version":"pixverse_canvas_cli_bindings.v1","items":[]}}}
|