
jlamoreaux/kitchen-sink
Public
4
runs
Run jlamoreaux/kitchen-sink 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 |
---|---|---|---|
prompt |
string
|
None
|
|
source_image |
string
|
Optional source image to start the video generation with
|
|
max_duration |
integer
|
30
|
Maximum total duration in seconds for the final video
|
style |
string
|
cinematic
|
Overall style/mood for the video (cinematic, documentary, commercial, etc.)
|
include_audio_effects |
boolean
|
True
|
Whether to add sound effects to the final video
|
{
"type": "object",
"title": "Input",
"required": [
"prompt"
],
"properties": {
"style": {
"type": "string",
"title": "Style",
"default": "cinematic",
"x-order": 3,
"description": "Overall style/mood for the video (cinematic, documentary, commercial, etc.)"
},
"prompt": {
"type": "string",
"title": "Prompt",
"x-order": 0
},
"max_duration": {
"type": "integer",
"title": "Max Duration",
"default": 30,
"x-order": 2,
"description": "Maximum total duration in seconds for the final video"
},
"source_image": {
"type": "string",
"title": "Source Image",
"format": "uri",
"x-order": 1,
"nullable": true,
"description": "Optional source image to start the video generation with"
},
"include_audio_effects": {
"type": "boolean",
"title": "Include Audio Effects",
"default": true,
"x-order": 4,
"description": "Whether to add sound effects to the final video"
}
}
}
Output schema
The shape of the response you’ll get when you run this model with an API.
Schema
{
"type": "object",
"title": "Output",
"required": [
"final_video",
"workflow_plan"
],
"properties": {
"final_video": {
"type": "string",
"title": "Final Video",
"format": "uri"
},
"workflow_plan": {
"type": "string",
"title": "Workflow Plan"
}
}
}