Introduction
Introduction Statistics Contact Development Disclaimer Help
SECRET - annna - Annna the nice friendly bot.
git clone git://bitreich.org/annna/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws6…
Log
Files
Refs
Tags
README
---
commit 7f295750510392f9c3291ca791e2aba2a9080943
parent ae49f232794b6e9684414fb2100a38158e5ce9f5
Author: Annna Robert-Houdin <[email protected]>
Date: Fri, 18 Jul 2025 16:24:11 +0200
SECRET
Diffstat:
A ollama-gpu | 4 ++++
M stable-diffusion-emoji | 3 +++
A stable-diffusion-prompt-generator | 16 ++++++++++++++++
3 files changed, 23 insertions(+), 0 deletions(-)
---
diff --git a/ollama-gpu b/ollama-gpu
@@ -0,0 +1,4 @@
+#!/bin/sh
+
+ssh -p 5680 -t [email protected] "$@" 2>/dev/null
+
diff --git a/stable-diffusion-emoji b/stable-diffusion-emoji
@@ -22,6 +22,9 @@ case "${emojiprompt}" in
*picassofy*)
emojiprompt="Beautiful Retro Collage Painting ${emojiprompt} by Pablo …
;;
+*)
+ emojiprompt="${emojiprompt} $(stable-diffusion-prompt-generator "${emo…
+ ;;
esac
emojifilebase="$(printf "%s\n" "${emojiprompt}" \
diff --git a/stable-diffusion-prompt-generator b/stable-diffusion-prompt-genera…
@@ -0,0 +1,16 @@
+#!/bin/sh
+
+export PATH="$HOME/bin:$PATH"
+
+if [ $# -lt 1 ];
+then
+ printf "usage: %0 sd prompt\n" "$(basename "$0")" >&2
+ exit 1
+fi
+
+prompt="$@"
+ollama-gpu \
+ ollama run --hidethinking brxce/stable-diffusion-prompt-generator \
+ "${prompt}" \
+ | head -n 1
+
You are viewing proxied material from bitreich.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.