From 089aa476c12c42ba2d036a27c933f9183387b94e Mon Sep 17 00:00:00 2001 From: somebody Date: Sun, 27 Nov 2022 19:41:05 -0600 Subject: [PATCH] Add generated image actions to finder --- static/koboldai.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/static/koboldai.js b/static/koboldai.js index a1845ffa..20518f41 100644 --- a/static/koboldai.js +++ b/static/koboldai.js @@ -79,6 +79,11 @@ var finder_actions = [ {name: "Download Story", icon: "file_download", type: "action", func: function() { document.getElementById('download_iframe').src = 'json'; }}, {name: "Import Story", icon: "file_download", desc: "Import a prompt from aetherroom.club, formerly prompts.aidg.club", type: "action", func: openClubImport }, + // Imggen + {name: "Download Generated Image", icon: "file_download", type: "action", func: imgGenDownload}, + {name: "View Generated Image", icon: "image", type: "action", func: imgGenView}, + {name: "Clear Generated Image", icon: "image_not_supported", type: "action", func: imgGenClear}, + // Locations {name: "Setting Presets", icon: "open_in_new", type: "location", func: function() { highlightEl(".var_sync_model_selected_preset") }}, {name: "Memory", icon: "open_in_new", type: "location", func: function() { highlightEl("#memory") }},