generate_image
Create custom images from text prompts using the Flux.1 Schnell model. Specify dimensions and model preferences to generate high-quality visuals tailored to your needs.
Instructions
Generate an image based on the text prompt, model, and optional dimensions
Input Schema
Name | Required | Description | Default |
---|---|---|---|
height | No | Optional height for the image | |
model | Yes | The exact model name as it appears in Together AI. If incorrect, it will fallback to the default model (black-forest-labs/FLUX.1-schnell). | |
prompt | Yes | The text prompt for image generation | |
width | No | Optional width for the image |
Input Schema (JSON Schema)
{
"properties": {
"height": {
"description": "Optional height for the image",
"type": "number"
},
"model": {
"description": "The exact model name as it appears in Together AI. If incorrect, it will fallback to the default model (black-forest-labs/FLUX.1-schnell).",
"type": "string"
},
"prompt": {
"description": "The text prompt for image generation",
"type": "string"
},
"width": {
"description": "Optional width for the image",
"type": "number"
}
},
"required": [
"prompt",
"model"
],
"type": "object"
}