stable-diffusion-generate
Installation
SKILL.md
Stable Diffusion Image Generation
Stable Diffusion is available at http://{{SD_HOST}}:{{SD_PORT}} within the Docker network.
Generate an Image
curl -X POST "http://{{SD_HOST}}:{{SD_PORT}}/sdapi/v1/txt2img" \
-H "Content-Type: application/json" \
-d '{
"prompt": "a futuristic city at sunset, detailed, 8k",
"negative_prompt": "blurry, low quality",
"steps": 30,
"width": 1024,
"height": 1024,
"cfg_scale": 7
}'