mark all ai commands as broken for now

This commit is contained in:
derpystuff 2023-06-23 16:03:39 +02:00
parent 6cca320bd7
commit 1ea541bfb7
7 changed files with 14 additions and 7 deletions

View file

@ -14,11 +14,12 @@ module.exports = {
description: 'Ask AI questions. May not be accurate.',
description_short: 'AI questions',
examples: ['ask How many otter species are there?'],
category: 'fun',
category: 'broken',
usage: 'ask <prompt>'
},
permissionsClient: [Permissions.EMBED_LINKS, Permissions.SEND_MESSAGES, Permissions.USE_EXTERNAL_EMOJIS],
run: async (context, args) => {
return;
context.triggerTyping();
if(!args.text) return editOrReply(context, {embeds:[createEmbed("warning", context, `Missing Parameter (text).`)]})
try{

View file

@ -14,11 +14,12 @@ module.exports = {
description: 'Chat with an AI language model.',
description_short: 'AI Language Model',
examples: ['chat How many otter species are there?'],
category: 'fun',
category: 'broken',
usage: 'chat <prompt>'
},
permissionsClient: [Permissions.EMBED_LINKS, Permissions.SEND_MESSAGES, Permissions.USE_EXTERNAL_EMOJIS],
run: async (context, args) => {
return;
context.triggerTyping();
if(!args.text) return editOrReply(context, {embeds:[createEmbed("warning", context, `Missing Parameter (text).`)]})
try{

View file

@ -14,7 +14,7 @@ module.exports = {
description: 'Generates a short music piece from a text input.',
description_short: 'AI Music generation from a prompt',
examples: ['ttm Tropical'],
category: 'image',
category: 'broken',
usage: 'texttomusic <prompt>'
},
ratelimit: {
@ -24,6 +24,7 @@ module.exports = {
},
permissionsClient: [Permissions.EMBED_LINKS, Permissions.SEND_MESSAGES, Permissions.USE_EXTERNAL_EMOJIS, Permissions.ATTACH_FILES],
run: async (context, args) => {
return;
let response = await editOrReply(context, { embeds: [createEmbed("loading", context, `Generating audio...`)] })
let noticeTimer = setTimeout(()=>{