Rename to txt2img
This commit is contained in:
parent
900a633f0d
commit
24391ec40c
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
Loading…
Reference in a new issue