Generate images from text prompts using Chutes AI image generation. Use this skill when the user wants to create AI-generated images from descriptions.
Image Generation
Generate AI images from text prompts via python3 scripts/image_gen.py generate <prompt> [options].
# Basic generation
python3 scripts/image_gen.py generate "a high quality photo of a sunrise over the mountains"# Custom dimensions
python3 scripts/image_gen.py generate "a futuristic city at night" --width 1280 --height 720# With seed for reproducibility
python3 scripts/image_gen.py generate "a cute cat sitting on a windowsill" --seed 42# High quality with more steps
python3 scripts/image_gen.py generate "a detailed portrait of a woman in renaissance style" --steps 20