enhancerandroid02/flix_s2v_1.6.0
Public
18
runs
Run enhancerandroid02/flix_s2v_1.6.0 with an API
Use one of our client libraries to get started quickly. Clicking on a library will take you to the Playground tab where you can tweak different inputs, see the results, and copy the corresponding code to use in your own project.
Input schema
The fields you can use to run this model with an API. If you don't give a value for a field its default value will be used.
| Field | Type | Default value | Description |
|---|---|---|---|
| voice |
None
|
coral
|
Voice for speech generation
|
| seed |
integer
|
0
|
Random seed for image generation
|
| image |
string
|
Input image for video generation
|
|
| steps |
integer
|
3
Min: 1 Max: 8 |
Number of steps for image generation
|
| width |
integer
|
640
Min: 240 Max: 1280 |
Width of the generated image
|
| height |
integer
|
368
Min: 240 Max: 1280 |
Height of the generated image
|
| prompt |
string
|
A bearded man wearing large dark sunglasses and a blue patterned cardigan sits in a garden, actively speaking. Behind him, a garden is covered with green tree, textured sound-dampening foam on the left.
|
Prompt for video generation
|
| speech |
string
|
Today is a wonderful day to build something people love!
|
Input speech for video generation
|
| instructions |
string
|
Speak in a cheerful and positive tone.
|
Instructions for speech generation
|
{
"type": "object",
"title": "Input",
"properties": {
"seed": {
"type": "integer",
"title": "Seed",
"default": 0,
"description": "Random seed for image generation"
},
"image": {
"type": "string",
"title": "Image",
"format": "uri",
"nullable": true,
"description": "Input image for video generation"
},
"steps": {
"type": "integer",
"title": "Steps",
"default": 3,
"maximum": 8,
"minimum": 1,
"description": "Number of steps for image generation"
},
"voice": {
"enum": [
"alloy",
"ash",
"ballad",
"coral",
"echo",
"fable",
"nova",
"onyx",
"sage",
"shimmer"
],
"type": "string",
"title": "voice",
"description": "Voice for speech generation",
"default": "coral",
"x-order": 3
},
"width": {
"type": "integer",
"title": "Width",
"default": 640,
"maximum": 1280,
"minimum": 240,
"description": "Width of the generated image"
},
"height": {
"type": "integer",
"title": "Height",
"default": 368,
"maximum": 1280,
"minimum": 240,
"description": "Height of the generated image"
},
"prompt": {
"type": "string",
"title": "Prompt",
"default": "A bearded man wearing large dark sunglasses and a blue patterned cardigan sits in a garden, actively speaking. Behind him, a garden is covered with green tree, textured sound-dampening foam on the left.",
"description": "Prompt for video generation"
},
"speech": {
"type": "string",
"title": "Speech",
"default": "Today is a wonderful day to build something people love!",
"maxLength": 150,
"minLength": 1,
"description": "Input speech for video generation"
},
"instructions": {
"type": "string",
"title": "Instructions",
"default": "Speak in a cheerful and positive tone.",
"description": "Instructions for speech generation"
}
}
}
Output schema
The shape of the response you’ll get when you run this model with an API.
Schema
{
"type": "array",
"items": {
"type": "string",
"format": "uri"
},
"title": "Output"
}