Skip to content

Instantly share code, notes, and snippets.

@revolunet
Last active August 17, 2024 14:41
Show Gist options
  • Save revolunet/f531f418c37f07b881e8240bd9f46554 to your computer and use it in GitHub Desktop.
Save revolunet/f531f418c37f07b881e8240bd9f46554 to your computer and use it in GitHub Desktop.
DiffusionKIT example script (OSX)
#!/bin/sh
# pip install diffusionkit-cli
# example: ./gen-diffusionkit.sh group-of-people-having-an-eureka-moment
PROMPT="$@"
if [ ${#PROMPT} -le 5 ]; then
echo "Please provide an explicit prompt"
exit 1
fi
function slugify() {
echo "$1" | iconv -t ascii//TRANSLIT | sed -E s/[^a-zA-Z0-9]+/-/g | sed -E s/^-+\|-+$//g | tr A-Z a-z
}
OUTPUT=$(slugify "$PROMPT").png
echo "Generating $OUTPUT..."
diffusionkit-cli --prompt "$PROMPT" --output-path "$OUTPUT" --model-version FLUX.1-schnell --steps 4
open "$OUTPUT"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment