@felores/kie-cli 0.1.1 → 0.1.2
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/dist/index.js +5 -5
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -150,7 +150,7 @@ var ElevenLabsSoundEffectsSchema = z.object({
|
|
|
150
150
|
var ByteDanceSeedanceVideoSchema = z.object({
|
|
151
151
|
prompt: z.string().min(3).max(2e4).describe("Text prompt for video generation (3-20000 characters)"),
|
|
152
152
|
// Mode: standard (seedance-2) or fast (seedance-2-fast)
|
|
153
|
-
mode: z.enum(["standard", "fast"]).default("standard").optional().describe("Generation mode
|
|
153
|
+
mode: z.enum(["standard", "fast"]).default("standard").optional().describe("Generation mode: standard (seedance-2, higher quality) or fast (seedance-2-fast, iterative workflows)"),
|
|
154
154
|
// Frame control
|
|
155
155
|
first_frame_url: z.string().url().optional().describe("URL of image to use as the first frame (optional)"),
|
|
156
156
|
last_frame_url: z.string().url().optional().describe("URL of image to use as the last frame (optional)"),
|
|
@@ -160,7 +160,7 @@ var ByteDanceSeedanceVideoSchema = z.object({
|
|
|
160
160
|
reference_audio_urls: z.array(z.string().url()).max(3).optional().describe("Reference audio for sound-guided generation (up to 3)"),
|
|
161
161
|
// Output settings
|
|
162
162
|
aspect_ratio: z.enum(["1:1", "9:16", "16:9", "4:3", "3:4", "21:9", "9:21", "adaptive"]).default("16:9").optional().describe("Aspect ratio of the generated video"),
|
|
163
|
-
resolution: z.enum(["480p", "720p"]).default("720p").optional().describe("Video resolution
|
|
163
|
+
resolution: z.enum(["480p", "720p"]).default("720p").optional().describe("Video resolution: 480p for faster, 720p for balance"),
|
|
164
164
|
duration: z.number().int().min(4).max(15).default(5).optional().describe("Duration of video in seconds (4-15)"),
|
|
165
165
|
// Audio & safety
|
|
166
166
|
generate_audio: z.boolean().default(true).optional().describe("Generate native audio for the video"),
|
|
@@ -1447,7 +1447,7 @@ var TaskDatabase = class {
|
|
|
1447
1447
|
import { z as z2 } from "zod";
|
|
1448
1448
|
var bytedanceSeedanceVideoTool = {
|
|
1449
1449
|
name: "bytedance_seedance_video",
|
|
1450
|
-
description: "Generate videos with ByteDance Seedance 2.0
|
|
1450
|
+
description: "Generate videos with ByteDance Seedance 2.0: multimodal inputs (image/video/audio references), native audio generation, standard and fast modes",
|
|
1451
1451
|
category: "video",
|
|
1452
1452
|
schema: ByteDanceSeedanceVideoSchema,
|
|
1453
1453
|
async run(args, ctx) {
|
|
@@ -1510,14 +1510,14 @@ var bytedanceSeedanceVideoTool = {
|
|
|
1510
1510
|
if (error instanceof z2.ZodError) {
|
|
1511
1511
|
return ctx.formatError("bytedance_seedance_video", error, {
|
|
1512
1512
|
prompt: "Required: Text prompt for video generation (3-20000 characters)",
|
|
1513
|
-
mode: 'Optional: Generation mode
|
|
1513
|
+
mode: 'Optional: Generation mode: "standard" or "fast" (default: standard)',
|
|
1514
1514
|
first_frame_url: "Optional: URL of image to use as first frame",
|
|
1515
1515
|
last_frame_url: "Optional: URL of image to use as last frame",
|
|
1516
1516
|
reference_image_urls: "Optional: Reference images for style guidance (up to 9)",
|
|
1517
1517
|
reference_video_urls: "Optional: Reference videos for motion guidance (up to 3)",
|
|
1518
1518
|
reference_audio_urls: "Optional: Reference audio for sound-guided generation (up to 3)",
|
|
1519
1519
|
aspect_ratio: "Optional: Video aspect ratio (default: 16:9)",
|
|
1520
|
-
resolution: 'Optional: Video resolution
|
|
1520
|
+
resolution: 'Optional: Video resolution: "480p" or "720p" (default: 720p)',
|
|
1521
1521
|
duration: "Optional: Video duration in seconds 4-15 (default: 5)",
|
|
1522
1522
|
generate_audio: "Optional: Generate native audio (default: true)",
|
|
1523
1523
|
web_search: "Optional: Enable web search for prompt enhancement (default: false)",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@felores/kie-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Standalone CLI for Kie.ai APIs: generate images, video, music and speech from the terminal. Same models as the Kie.ai MCP server, no MCP client required.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -29,11 +29,11 @@
|
|
|
29
29
|
"license": "MIT",
|
|
30
30
|
"repository": {
|
|
31
31
|
"type": "git",
|
|
32
|
-
"url": "git+https://github.com/felores/kie-
|
|
32
|
+
"url": "git+https://github.com/felores/kie-cli-mcp.git"
|
|
33
33
|
},
|
|
34
|
-
"homepage": "https://github.com/felores/kie-
|
|
34
|
+
"homepage": "https://github.com/felores/kie-cli-mcp#readme",
|
|
35
35
|
"bugs": {
|
|
36
|
-
"url": "https://github.com/felores/kie-
|
|
36
|
+
"url": "https://github.com/felores/kie-cli-mcp/issues"
|
|
37
37
|
},
|
|
38
38
|
"publishConfig": {
|
|
39
39
|
"registry": "https://registry.npmjs.org/",
|