vetkastar / flux-in-context
- Public
- 10 runs
Run vetkastar/flux-in-context 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 |
---|---|---|---|
logo_image |
string
|
Input logo image file
|
|
logo_description |
string
|
A logo
|
Description of the logo
|
destination_prompt |
string
|
a coffee cup on a wooden table
|
Where the logo should be applied
|
{
"type": "object",
"title": "Input",
"required": [
"logo_image"
],
"properties": {
"logo_image": {
"type": "string",
"title": "Logo Image",
"format": "uri",
"x-order": 0,
"description": "Input logo image file"
},
"logo_description": {
"type": "string",
"title": "Logo Description",
"default": "A logo",
"x-order": 1,
"description": "Description of the logo"
},
"destination_prompt": {
"type": "string",
"title": "Destination Prompt",
"default": "a coffee cup on a wooden table",
"x-order": 2,
"description": "Where the logo should be applied"
}
}
}
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"
}