mirror of
https://gitlab.com/bignutty/labscore.git
synced 2025-06-09 06:33:05 -04:00
mark all ai commands as broken for now
This commit is contained in:
parent
6cca320bd7
commit
1ea541bfb7
7 changed files with 14 additions and 7 deletions
|
@ -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{
|
||||
|
|
|
@ -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{
|
||||
|
|
|
@ -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(()=>{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue