From 846f0a7078e80eb20b39208e0f6b4100a0f09a53 Mon Sep 17 00:00:00 2001 From: MrlolDev Date: Thu, 18 Jan 2024 18:09:35 +0100 Subject: [PATCH] Update model name in imagine.ts --- src/bot/commands/imagine.ts | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/src/bot/commands/imagine.ts b/src/bot/commands/imagine.ts index 3246339..fcf9642 100644 --- a/src/bot/commands/imagine.ts +++ b/src/bot/commands/imagine.ts @@ -34,7 +34,7 @@ export default createCommand({ ["SDXL · Latest Stable Diffusion model", "sdxl"], ["TURBO XL · Faster version of SDXL", "turboxl"], ["Fustercluck · SDXL model trained for creating cartoony or anime style images", "fustercluck"], - ["ICBINP XL · Model trained on highly-realistic images", "icbninp"], + ["ICBINP XL · Model trained on highly-realistic images", "icbinp"], ["AlbedoBase XL (SDXL) · SDXL model without refiner", "albedobase"], // ["DALL-E 3 · Latest DALL-E model", "dalle3"], /* ["Kandinsky · Multi-lingual latent diffusion model", "kandinsky"],*/ @@ -125,6 +125,7 @@ export default createCommand({ modelName = setting; } const model = IMAGE_MODELS.find((x) => x.id === modelName); + console.log(modelName); if (!model) { await interaction.edit({ content: "The model you specified does not exist.", @@ -166,8 +167,9 @@ export default createCommand({ embeds: [ { color: config.brand.color, - title: `Waiting in queue <${loadingIndicator.emoji.animated ? "a" : ""}:${loadingIndicator.emoji.name}:${loadingIndicator.emoji.id - }>`, + title: `Waiting in queue <${loadingIndicator.emoji.animated ? "a" : ""}:${loadingIndicator.emoji.name}:${ + loadingIndicator.emoji.id + }>`, }, ], }); @@ -177,8 +179,9 @@ export default createCommand({ embeds: [ { color: config.brand.color, - title: `Generating <${loadingIndicator.emoji.animated ? "a" : ""}:${loadingIndicator.emoji.name}:${loadingIndicator.emoji.id - }>`, + title: `Generating <${loadingIndicator.emoji.animated ? "a" : ""}:${loadingIndicator.emoji.name}:${ + loadingIndicator.emoji.id + }>`, }, ], });