founderfeed/product-ads
Public
3
runs
Run founderfeed/product-ads 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
|
Professional banner with 'EXCELLENT WEBWORLD' text, warm coffee cup, orange background
|
Describe what you want to create
|
| image_style |
None
|
studio
|
Image style (studio, outdoor, luxury, cozy, beauty, industrial, romantic, modern)
|
| lighting |
None
|
auto
|
Lighting style for the video
|
| camera_movement |
None
|
auto
|
Camera movement for the video animation
|
| audio_mode |
None
|
off
|
Enable audio generation for the video
|
| reference_images |
array
|
[]
|
Optional reference images to use as style/context for generation (supports 1 or more images: -i reference_images=@file1.jpg -i reference_images=@file2.jpg)
|
| replicate_api_token |
string
|
Replicate API token (required). Must be provided as a Secret input.
|
{
"type": "object",
"title": "Input",
"required": [
"replicate_api_token"
],
"properties": {
"prompt": {
"type": "string",
"title": "Prompt",
"default": "Professional banner with 'EXCELLENT WEBWORLD' text, warm coffee cup, orange background",
"x-order": 0,
"description": "Describe what you want to create"
},
"lighting": {
"enum": [
"auto",
"studio",
"neon",
"silhouette",
"iridescent",
"dramatic",
"long_exposure",
"high_flash",
"natural"
],
"type": "string",
"title": "lighting",
"description": "Lighting style for the video",
"default": "auto",
"x-order": 2
},
"audio_mode": {
"enum": [
"off",
"on"
],
"type": "string",
"title": "audio_mode",
"description": "Enable audio generation for the video",
"default": "off",
"x-order": 4
},
"image_style": {
"enum": [
"studio",
"outdoor",
"luxury",
"cozy",
"beauty",
"industrial",
"romantic",
"modern"
],
"type": "string",
"title": "image_style",
"description": "Image style (studio, outdoor, luxury, cozy, beauty, industrial, romantic, modern)",
"default": "studio",
"x-order": 1
},
"camera_movement": {
"enum": [
"auto",
"glide_left",
"crane_down",
"zoom_in",
"zoom_out",
"glide_right"
],
"type": "string",
"title": "camera_movement",
"description": "Camera movement for the video animation",
"default": "auto",
"x-order": 3
},
"reference_images": {
"type": "array",
"items": {
"type": "string",
"format": "uri"
},
"title": "Reference Images",
"default": [],
"x-order": 5,
"description": "Optional reference images to use as style/context for generation (supports 1 or more images: -i reference_images=@file1.jpg -i reference_images=@file2.jpg)"
},
"replicate_api_token": {
"type": "string",
"title": "Replicate Api Token",
"format": "password",
"x-order": 6,
"writeOnly": true,
"description": "Replicate API token (required). Must be provided as a Secret input.",
"x-cog-secret": true
}
}
}
Output schema
The shape of the response you’ll get when you run this model with an API.
Schema
{
"type": "string",
"title": "Output",
"format": "uri"
}