]> git.cworth.org Git - zombocom-ai/blobdiff - index.js
Hide images with a censored attribute
[zombocom-ai] / index.js
index 07da00a59a99919049ac8d9c6319e2a7a0a42c83..6f2a62597395c90c1a2e48884edaf3b65a5ec028 100644 (file)
--- a/index.js
+++ b/index.js
@@ -116,6 +116,16 @@ io.on('connection', (socket) => {
         console.log(`Generating image for ${socket.request.session.name} with code=${request['code']} and prompt=${request['prompt']}`);
         async function generate_image(code, prompt) {
             var promise;
+
+            // Inject the target seed for the "dice" prompt once every
+            // 6 requests for a random seed (and only if the word
+            // "dice" does not appear in the prompt).
+            if (!code && !prompt.toLowerCase().includes("dice")) {
+                if (state.images.length % 6 == 0) {
+                    code = 319630254;
+                }
+            }
+
             if (code) {
                 promise = execFile(python_path, [generate_image_script, `--seed=${code}`, prompt])
             } else {
@@ -126,7 +136,8 @@ io.on('connection', (socket) => {
                 const images = JSON.parse(data);
                 images.forEach((image) => {
                     image.id = state.images.length;
-                   image.comments = [];
+                    image.censored = false;
+                    image.comments = [];
                     io.emit('image', image);
                     state.images.push(image);
                 });