wip gpt command

This commit is contained in:
derpystuff 2023-04-20 00:16:59 +02:00
parent 0bad32c185
commit dfc8d20c84
4 changed files with 107 additions and 0 deletions

View file

@ -82,6 +82,10 @@ const Statics = Object.freeze({
file: "icons/core/ico_notice_loading.gif",
revision: 0
},
loading_ai: {
file: "icons/ai/ico_ai_generating.gif",
revision: 0
},
warning: {
file: "icons/core/ico_notice_warning.png",
revision: 0
@ -120,5 +124,6 @@ module.exports.STATIC_ICONS = Object.freeze({
adult: staticAsset(Statics.icons.adult),
error: staticAsset(Statics.icons.error),
loading: staticAsset(Statics.icons.loading),
loading_ai: staticAsset(Statics.icons.loading_ai),
warning: staticAsset(Statics.icons.warning)
})