@mixio-pro/kalaasetu-mcp 2.3.25 → 2.3.27
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
|
@@ -110,13 +110,6 @@ export const imageToVideo = {
|
|
|
110
110
|
"(e.g., 'scenes/intro/robot_walking.mp4'). " +
|
|
111
111
|
"If omitted, a timestamped filename is generated automatically.",
|
|
112
112
|
),
|
|
113
|
-
model_id: z
|
|
114
|
-
.string()
|
|
115
|
-
.optional()
|
|
116
|
-
.default("veo-3.1-fast-generate-001")
|
|
117
|
-
.describe(
|
|
118
|
-
"Specific Vertex Veo model ID to use. Default Value is veo-3.1-fast-generate-001",
|
|
119
|
-
),
|
|
120
113
|
generate_audio: z
|
|
121
114
|
.boolean()
|
|
122
115
|
.optional()
|
|
@@ -168,7 +161,7 @@ export const imageToVideo = {
|
|
|
168
161
|
async () => {
|
|
169
162
|
const projectId = "mixio-pro";
|
|
170
163
|
const location = "us-central1";
|
|
171
|
-
const modelId =
|
|
164
|
+
const modelId = "veo-3.1-lite-generate-001";
|
|
172
165
|
|
|
173
166
|
// Validate and parse duration_seconds - snap to nearest 4, 6, or 8
|
|
174
167
|
let durationSeconds = parseInt(args.duration_seconds || "6");
|