@blockrun/franklin 3.15.52 → 3.15.53
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/tools/videogen.js +7 -1
- package/package.json +1 -1
package/dist/tools/videogen.js
CHANGED
|
@@ -462,7 +462,13 @@ export function createVideoGenCapability(deps = {}) {
|
|
|
462
462
|
properties: {
|
|
463
463
|
prompt: { type: 'string', description: 'Text description of the video to generate' },
|
|
464
464
|
output_path: { type: 'string', description: 'Where to save the MP4. Default: generated-<timestamp>.mp4 in working directory' },
|
|
465
|
-
model: {
|
|
465
|
+
model: {
|
|
466
|
+
type: 'string',
|
|
467
|
+
description: 'Video model. Default: xai/grok-imagine-video. Known-valid models on the BlockRun gateway as of 2026-05: ' +
|
|
468
|
+
'xai/grok-imagine-video, bytedance/seedance-1.5-pro, bytedance/seedance-2.0, bytedance/seedance-2.0-fast. ' +
|
|
469
|
+
'Pick from this list; the gateway rejects unknown names with HTTP 400 (no money charged on rejection). ' +
|
|
470
|
+
'Speak "Seedance Pro" → bytedance/seedance-2.0; speak "Seedance fast" → bytedance/seedance-2.0-fast.',
|
|
471
|
+
},
|
|
466
472
|
image_url: { type: 'string', description: 'Optional seed image (image-to-video). Accepts http(s) URL, data: URI, or local file path — local paths get inlined as base64 data URIs automatically.' },
|
|
467
473
|
duration_seconds: { type: 'number', description: 'Duration billed for. Default depends on model (8s for grok-imagine-video).' },
|
|
468
474
|
contentId: { type: 'string', description: 'Optional Content id to attach and budget against.' },
|
package/package.json
CHANGED