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

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"
    }
  }
}