Install
openclaw skills install siliconflow-image-genGenerate images using SiliconFlow API (FLUX.1, Stable Diffusion, etc.)
openclaw skills install siliconflow-image-genGenerate images using SiliconFlow API with support for FLUX.1, Stable Diffusion, and more.
SILICONFLOW_API_KEY~/.openclaw/openclaw.json (for auto-detect)npx clawhub install siliconflow-image-gen
Set your SiliconFlow API key:
export SILICONFLOW_API_KEY="your-api-key"
Or configure in OpenClaw:
{
"models": {
"providers": {
"siliconflow": {
"apiKey": "your-api-key"
}
}
}
}
# Generate with default model (FLUX.1-schnell)
python3 scripts/generate.py "A cup of coffee on wooden table"
# Specify model
python3 scripts/generate.py "Sunset over mountains" --model "black-forest-labs/FLUX.1-dev"
# Save to file
python3 scripts/generate.py "Cute cat" --output ~/Desktop/cat.png
| Model | Cost | Quality | Speed |
|---|---|---|---|
black-forest-labs/FLUX.1-schnell | Free | Good | Fast |
black-forest-labs/FLUX.1-dev | Paid | Excellent | Medium |
stabilityai/stable-diffusion-3-5-large | Paid | Excellent | Medium |
~/.openclaw/openclaw.json only to auto-detect API keysapi.siliconflow.cnscripts/generate.py before providing credentialsMaxStorm Team
MIT