generate-and-save-image
Generate custom images using a FLUX model and save them as PNG files to a specified path. Ideal for creating visuals like pictures or graphics based on text prompts.
Instructions
Generates an image using a FLUX model and save the image to the specified path. The tool will return a PNG file path. It should be used when the user asks to generate or create an image or a picture.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file_name | Yes | Filename of the image. Include the extension of .png | |
prompt | Yes | Description of the image to generate in the form of a prompt. |
Input Schema (JSON Schema)
{
"properties": {
"file_name": {
"description": "Filename of the image. Include the extension of .png",
"type": "string"
},
"prompt": {
"description": "Description of the image to generate in the form of a prompt.",
"type": "string"
}
},
"required": [
"prompt",
"file_name"
],
"type": "object"
}