zerocut-cli 0.2.0 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -110,7 +110,7 @@ zerocut config --ott <token> --region <cn|us> # non-interactive
110
110
  - Options:
111
111
  - `--prompt <prompt>` (required)
112
112
  - `--duration <seconds>` (integer 1–16; when `--sourceVideo` is set, must be 3–10)
113
- - `--model <model>` (enum: `zerocut3.0|seedance-1.5-pro|vidu|vidu-pro|viduq3|viduq3-turbo|kling|kling-v3|wan|wan-flash|sora2|sora2-pro|veo3.1|veo3.1-pro`; default `vidu`)
113
+ - `--model <model>` (enum: `zerocut3.0|zerocut3.0-pro|zerocut3.0-pro-fast|seedance-1.5-pro|vidu|vidu-pro|viduq3|viduq3-turbo|kling|kling-v3|wan|wan-flash|sora2|sora2-pro|veo3.1|veo3.1-pro`; default `vidu`)
114
114
  - `--sourceVideo <video>` (base video path/url for edit mode)
115
115
  - `--seed <seed>`
116
116
  - `--firstFrame <image>`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zerocut-cli",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "ZeroCut CLI: AI assistant CLI for creating and editing images/audio/video",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -38,7 +38,7 @@
38
38
  "typescript-eslint": "^8.54.0"
39
39
  },
40
40
  "dependencies": {
41
- "cerevox": "^4.22.0",
41
+ "cerevox": "^4.29.3",
42
42
  "commander": "^14.0.3",
43
43
  "inquirer": "^13.2.2"
44
44
  },
@@ -32,6 +32,8 @@ export function register(program: Command): void {
32
32
 
33
33
  const allowedTypes = [
34
34
  "zerocut3.0",
35
+ "zerocut3.0-pro",
36
+ "zerocut3.0-pro-fast",
35
37
  "seedance-1.5-pro",
36
38
  "vidu",
37
39
  "vidu-pro",
@@ -169,6 +171,7 @@ export function register(program: Command): void {
169
171
  ]
170
172
  : undefined,
171
173
  onProgress: createProgressSpinner("inferencing"),
174
+ timeout: 7_200_000,
172
175
  });
173
176
  const initialUrl = resolveResultUrl(res);
174
177
  try {
@@ -137,7 +137,7 @@ Options:
137
137
  Validation rules:
138
138
 
139
139
  - `--prompt` must be non-empty
140
- - `--model` allowed: `zerocut3.0|seedance-1.5-pro|vidu|vidu-pro|viduq3|viduq3-turbo|kling|kling-v3|wan|wan-flash|sora2|sora2-pro|veo3.1|veo3.1-pro|zerocut-avatar-1.0|zerocut-avatar-1.5|zerocut-mv-1.0`
140
+ - `--model` allowed: `zerocut3.0|zerocut3.0-pro|zerocut3.0-pro-fast|seedance-1.5-pro|vidu|vidu-pro|viduq3|viduq3-turbo|kling|kling-v3|wan|wan-flash|sora2|sora2-pro|veo3.1|veo3.1-pro|zerocut-avatar-1.0|zerocut-avatar-1.5|zerocut-mv-1.0`
141
141
  - `--duration` must follow model range:
142
142
  - default models: `1-16`
143
143
  - `zerocut-avatar-1.0` / `zerocut-avatar-1.5`: `5-240`