diff --git a/components/ApiKeyModal.js b/components/ApiKeyModal.js index 012d373..7050dfd 100644 --- a/components/ApiKeyModal.js +++ b/components/ApiKeyModal.js @@ -26,7 +26,7 @@ export default function ApiKeyModal({ onSave }) { Open Higgsfield AI
- Enter your Muapi.ai API key to start generating + Enter your Muapi.ai API key to start generating
@@ -54,7 +54,7 @@ export default function ApiKeyModal({ onSave }) {Don't have a key?{' '} - + Get one free at Muapi.ai →
diff --git a/packages/studio/src/models.js b/packages/studio/src/models.js index f7774f5..a7fb52d 100644 --- a/packages/studio/src/models.js +++ b/packages/studio/src/models.js @@ -2271,6 +2271,16 @@ export const t2vModels = [ "resolution": { "enum": ["1080p"], "title": "Resolution", "name": "resolution", "type": "string", "description": "The resolution of the generated video.", "default": "1080p" } } }, + { + "id": "veo3.1-lite-text-to-video", + "name": "Veo 3.1 Lite", + "inputs": { + "prompt": { "type": "string", "title": "Prompt", "name": "prompt", "description": "Text prompt describing the video." }, + "aspect_ratio": { "enum": ["16:9", "9:16"], "title": "Aspect Ratio", "name": "aspect_ratio", "type": "string", "description": "Aspect ratio of the output video.", "default": "16:9" }, + "duration": { "enum": [8], "title": "Duration", "name": "duration", "type": "int", "description": "The duration of the generated video in seconds", "default": 8 }, + "resolution": { "enum": ["1080p"], "title": "Resolution", "name": "resolution", "type": "string", "description": "The resolution of the generated video.", "default": "1080p" } + } + }, { "id": "runway-text-to-video", "name": "Runway Gen-3", @@ -6702,6 +6712,53 @@ export const i2vModels = [ } } }, + { + "id": "veo3.1-lite-image-to-video", + "name": "Veo3.1 Lite Image To Video", + "endpoint": "veo3.1-lite-image-to-video", + "family": "veo3.1", + "imageField": "image_url", + "hasPrompt": true, + "inputs": { + "prompt": { + "type": "string", + "title": "Prompt", + "name": "prompt", + "description": "Text prompt describing the video." + }, + "aspect_ratio": { + "type": "string", + "title": "Aspect Ratio", + "name": "aspect_ratio", + "description": "Aspect ratio of the output video.", + "enum": [ + "16:9", + "9:16" + ], + "default": "16:9" + }, + "duration": { + "type": "int", + "title": "Duration", + "name": "duration", + "description": "The duration of the generated video in seconds", + "enum": [ + 8 + ], + "default": 8 + }, + "resolution": { + "type": "string", + "title": "Resolution", + "name": "resolution", + "description": "The resolution of the generated video.", + "enum": [ + "1080p" + ], + "default": "1080p" + } + } + }, { "id": "veo3.1-reference-to-video", "name": "Veo3.1 Reference To Video", diff --git a/src/lib/models.js b/src/lib/models.js index f7774f5..a7fb52d 100644 --- a/src/lib/models.js +++ b/src/lib/models.js @@ -2271,6 +2271,16 @@ export const t2vModels = [ "resolution": { "enum": ["1080p"], "title": "Resolution", "name": "resolution", "type": "string", "description": "The resolution of the generated video.", "default": "1080p" } } }, + { + "id": "veo3.1-lite-text-to-video", + "name": "Veo 3.1 Lite", + "inputs": { + "prompt": { "type": "string", "title": "Prompt", "name": "prompt", "description": "Text prompt describing the video." }, + "aspect_ratio": { "enum": ["16:9", "9:16"], "title": "Aspect Ratio", "name": "aspect_ratio", "type": "string", "description": "Aspect ratio of the output video.", "default": "16:9" }, + "duration": { "enum": [8], "title": "Duration", "name": "duration", "type": "int", "description": "The duration of the generated video in seconds", "default": 8 }, + "resolution": { "enum": ["1080p"], "title": "Resolution", "name": "resolution", "type": "string", "description": "The resolution of the generated video.", "default": "1080p" } + } + }, { "id": "runway-text-to-video", "name": "Runway Gen-3", @@ -6702,6 +6712,53 @@ export const i2vModels = [ } } }, + { + "id": "veo3.1-lite-image-to-video", + "name": "Veo3.1 Lite Image To Video", + "endpoint": "veo3.1-lite-image-to-video", + "family": "veo3.1", + "imageField": "image_url", + "hasPrompt": true, + "inputs": { + "prompt": { + "type": "string", + "title": "Prompt", + "name": "prompt", + "description": "Text prompt describing the video." + }, + "aspect_ratio": { + "type": "string", + "title": "Aspect Ratio", + "name": "aspect_ratio", + "description": "Aspect ratio of the output video.", + "enum": [ + "16:9", + "9:16" + ], + "default": "16:9" + }, + "duration": { + "type": "int", + "title": "Duration", + "name": "duration", + "description": "The duration of the generated video in seconds", + "enum": [ + 8 + ], + "default": 8 + }, + "resolution": { + "type": "string", + "title": "Resolution", + "name": "resolution", + "description": "The resolution of the generated video.", + "enum": [ + "1080p" + ], + "default": "1080p" + } + } + }, { "id": "veo3.1-reference-to-video", "name": "Veo3.1 Reference To Video",