From 24391ec40cf14fdadb375ea1bc3817fd2d5d751c Mon Sep 17 00:00:00 2001 From: Supositware Date: Mon, 17 Oct 2022 21:30:29 +0200 Subject: [PATCH] Rename to txt2img --- commands/{fun/stablediffusion.js => AI/txt2img.js} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename commands/{fun/stablediffusion.js => AI/txt2img.js} (98%) diff --git a/commands/fun/stablediffusion.js b/commands/AI/txt2img.js similarity index 98% rename from commands/fun/stablediffusion.js rename to commands/AI/txt2img.js index 03dd521..9b5e6a9 100644 --- a/commands/fun/stablediffusion.js +++ b/commands/AI/txt2img.js @@ -7,13 +7,13 @@ const { stableHordeApi, stableHordeID } = process.env; export default { data: new SlashCommandBuilder() - .setName('stablediffusion') + .setName('txt2img') .setDescription('AI generated image with stable diffusion (If credit are low it may be slow)') .addStringOption(option => option.setName('prompt') .setDescription('What do you want the AI to generate?') .setRequired(true)), - category: 'fun', + category: 'AI', async execute(interaction, args, client) { await interaction.deferReply(); generate(interaction, args.prompt, client);