Skip to content
This repository has been archived by the owner on Apr 24, 2024. It is now read-only.

Commit

Permalink
Update image model setting to "turboxl"
Browse files Browse the repository at this point in the history
  • Loading branch information
MrlolDev committed Jan 18, 2024
1 parent 846f0a7 commit 0b1e713
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
11 changes: 4 additions & 7 deletions src/bot/commands/imagine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,6 @@ 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.",
Expand Down Expand Up @@ -167,9 +166,8 @@ 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
}>`,
},
],
});
Expand All @@ -179,9 +177,8 @@ 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
}>`,
},
],
});
Expand Down
2 changes: 1 addition & 1 deletion src/bot/utils/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ export function getDefaultValues(settingId: string) {
case "chat:partialMessages":
return true;
case "image:model":
return "sdxl";
return "turboxl";
case "image:style":
return "default";
case "premium:typePriority":
Expand Down

0 comments on commit 0b1e713

Please sign in to comment.