Last active
August 17, 2024 14:41
-
-
Save revolunet/f531f418c37f07b881e8240bd9f46554 to your computer and use it in GitHub Desktop.
DiffusionKIT example script (OSX)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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