generate_flux_image
Generate images using the Flux model by submitting a text prompt via the Modal MCP Toolbox, designed for Python code execution and image creation in a sandbox environment.
Instructions
Let's you generate an image using the Flux model.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
prompt | Yes | The prompt to generate an image for |
Input Schema (JSON Schema)
{
"properties": {
"prompt": {
"description": "The prompt to generate an image for",
"title": "Prompt",
"type": "string"
}
},
"required": [
"prompt"
],
"title": "generate_flux_imageArguments",
"type": "object"
}