@acedatacloud/skills 2026.406.3 → 2026.418.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@acedatacloud/skills",
|
|
3
|
-
"version": "2026.
|
|
3
|
+
"version": "2026.418.1",
|
|
4
4
|
"description": "Agent Skills for AceDataCloud AI services — music, image, video generation, LLM chat, web search. Compatible with Claude Code, GitHub Copilot, Gemini CLI, OpenAI Codex, and 30+ AI coding agents.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agent-skills",
|
|
@@ -20,7 +20,7 @@ Generate AI videos through AceDataCloud's Kuaishou Kling API.
|
|
|
20
20
|
curl -X POST https://api.acedata.cloud/kling/videos \
|
|
21
21
|
-H "Authorization: Bearer $ACEDATACLOUD_API_TOKEN" \
|
|
22
22
|
-H "Content-Type: application/json" \
|
|
23
|
-
-d '{"action": "text2video", "prompt": "a cat playing piano on a rooftop at sunset", "model": "kling-
|
|
23
|
+
-d '{"action": "text2video", "prompt": "a cat playing piano on a rooftop at sunset", "model": "kling-v3", "mode": "std", "duration": 5}'
|
|
24
24
|
```
|
|
25
25
|
|
|
26
26
|
> **Async:** See [async task polling](../_shared/async-tasks.md). Poll via `POST /kling/tasks` with `{"task_id": "..."}`.
|
|
@@ -28,12 +28,15 @@ curl -X POST https://api.acedata.cloud/kling/videos \
|
|
|
28
28
|
|
|
29
29
|
| Model | Quality | Best For |
|
|
30
30
|
|-------|---------|----------|
|
|
31
|
-
| `kling-
|
|
32
|
-
| `kling-
|
|
31
|
+
| `kling-v3` | Latest | Best quality, flexible 3–15s duration, optional audio generation |
|
|
32
|
+
| `kling-v3-omni` | Latest | Omni model with audio support, flexible 3–15s duration |
|
|
33
|
+
| `kling-v2-6` | High | High-quality output with optional audio (pro mode) |
|
|
34
|
+
| `kling-v2-5-turbo` | High + Fast | Best speed/quality trade-off |
|
|
33
35
|
| `kling-v2-master` | High | High-quality output |
|
|
34
36
|
| `kling-v2-1-master` | High | Improved v2 |
|
|
35
|
-
| `kling-
|
|
36
|
-
| `kling-
|
|
37
|
+
| `kling-v1-6` | Improved | Better quality than v1 |
|
|
38
|
+
| `kling-v1` | Standard | Basic generation, lowest cost |
|
|
39
|
+
| `kling-video-o1` | Premium | Highest quality (thinking model) |
|
|
37
40
|
|
|
38
41
|
## Quality Modes
|
|
39
42
|
|
|
@@ -51,7 +54,7 @@ POST /kling/videos
|
|
|
51
54
|
{
|
|
52
55
|
"action": "text2video",
|
|
53
56
|
"prompt": "a futuristic city with flying cars",
|
|
54
|
-
"model": "kling-
|
|
57
|
+
"model": "kling-v3",
|
|
55
58
|
"mode": "std",
|
|
56
59
|
"duration": 5,
|
|
57
60
|
"aspect_ratio": "16:9"
|
|
@@ -69,7 +72,7 @@ POST /kling/videos
|
|
|
69
72
|
"prompt": "the scene slowly comes alive with movement",
|
|
70
73
|
"start_image_url": "https://example.com/scene.jpg",
|
|
71
74
|
"end_image_url": "https://example.com/end-scene.jpg",
|
|
72
|
-
"model": "kling-
|
|
75
|
+
"model": "kling-v3",
|
|
73
76
|
"mode": "pro"
|
|
74
77
|
}
|
|
75
78
|
```
|
|
@@ -107,7 +110,8 @@ POST /kling/motion
|
|
|
107
110
|
| `action` | `"text2video"`, `"image2video"`, `"extend"` | Generation mode |
|
|
108
111
|
| `model` | See models table | Model to use |
|
|
109
112
|
| `mode` | `"std"`, `"pro"` | Quality mode |
|
|
110
|
-
| `duration` | `5`, `10` | Duration in seconds |
|
|
113
|
+
| `duration` | `5`, `10` (v3/v3-omni: `3`–`15`) | Duration in seconds |
|
|
114
|
+
| `generate_audio` | `true`, `false` | Generate audio with video (v3, v3-omni, v2-6 pro only) |
|
|
111
115
|
| `aspect_ratio` | `"16:9"`, `"9:16"`, `"1:1"` | Video aspect ratio |
|
|
112
116
|
| `cfg_scale` | 0–1 | Prompt relevance strength |
|
|
113
117
|
| `negative_prompt` | string | What to avoid in the video |
|
|
@@ -118,7 +122,8 @@ POST /kling/motion
|
|
|
118
122
|
|
|
119
123
|
## Gotchas
|
|
120
124
|
|
|
121
|
-
- `duration`
|
|
125
|
+
- `duration` supports `5` or `10` seconds for most models; `kling-v3` and `kling-v3-omni` support flexible `3`–`15` seconds
|
|
126
|
+
- `generate_audio` enables synchronized audio generation (supported by `kling-v3`, `kling-v3-omni`, and `kling-v2-6` in pro mode)
|
|
122
127
|
- `end_image_url` is only for `image2video` action — it defines the last frame
|
|
123
128
|
- Motion control (`/kling/motion`) is a separate endpoint from video generation
|
|
124
129
|
- `pro` mode costs roughly 2x `std` mode but generates faster with better quality
|
|
@@ -43,7 +43,7 @@ curl -X POST https://api.acedata.cloud/veo/tasks \
|
|
|
43
43
|
| `veo3-fast` | Yes (native) | Faster audiovisual generation |
|
|
44
44
|
| `veo31` | Yes (native) | Veo 3.1, highest quality |
|
|
45
45
|
| `veo31-fast` | Yes (native) | Veo 3.1 fast variant |
|
|
46
|
-
| `veo31-fast-
|
|
46
|
+
| `veo31-fast-ingredients` | Yes (native) | Veo 3.1 fast, ingredient mode |
|
|
47
47
|
|
|
48
48
|
## Workflows
|
|
49
49
|
|