mirror of
https://gitlab.com/bignutty/labscore.git
synced 2025-06-09 14:43:05 -04:00
two more
This commit is contained in:
parent
c6a403a254
commit
93084987ed
2 changed files with 2 additions and 4 deletions
|
@ -14,12 +14,11 @@ module.exports = {
|
||||||
description: 'Ask AI questions. May not be accurate.',
|
description: 'Ask AI questions. May not be accurate.',
|
||||||
description_short: 'AI questions',
|
description_short: 'AI questions',
|
||||||
examples: ['ask How many otter species are there?'],
|
examples: ['ask How many otter species are there?'],
|
||||||
category: 'broken',
|
category: 'hidden',
|
||||||
usage: 'ask <prompt>'
|
usage: 'ask <prompt>'
|
||||||
},
|
},
|
||||||
permissionsClient: [Permissions.EMBED_LINKS, Permissions.SEND_MESSAGES, Permissions.USE_EXTERNAL_EMOJIS, Permissions.READ_MESSAGE_HISTORY],
|
permissionsClient: [Permissions.EMBED_LINKS, Permissions.SEND_MESSAGES, Permissions.USE_EXTERNAL_EMOJIS, Permissions.READ_MESSAGE_HISTORY],
|
||||||
run: async (context, args) => {
|
run: async (context, args) => {
|
||||||
return;
|
|
||||||
context.triggerTyping();
|
context.triggerTyping();
|
||||||
if(!args.text) return editOrReply(context, {embeds:[createEmbed("warning", context, `Missing Parameter (text).`)]})
|
if(!args.text) return editOrReply(context, {embeds:[createEmbed("warning", context, `Missing Parameter (text).`)]})
|
||||||
try{
|
try{
|
||||||
|
|
|
@ -14,12 +14,11 @@ module.exports = {
|
||||||
description: 'Chat with an AI language model.',
|
description: 'Chat with an AI language model.',
|
||||||
description_short: 'AI Language Model',
|
description_short: 'AI Language Model',
|
||||||
examples: ['chat How many otter species are there?'],
|
examples: ['chat How many otter species are there?'],
|
||||||
category: 'broken',
|
category: 'hidden',
|
||||||
usage: 'chat <prompt>'
|
usage: 'chat <prompt>'
|
||||||
},
|
},
|
||||||
permissionsClient: [Permissions.EMBED_LINKS, Permissions.SEND_MESSAGES, Permissions.USE_EXTERNAL_EMOJIS, Permissions.READ_MESSAGE_HISTORY],
|
permissionsClient: [Permissions.EMBED_LINKS, Permissions.SEND_MESSAGES, Permissions.USE_EXTERNAL_EMOJIS, Permissions.READ_MESSAGE_HISTORY],
|
||||||
run: async (context, args) => {
|
run: async (context, args) => {
|
||||||
return;
|
|
||||||
context.triggerTyping();
|
context.triggerTyping();
|
||||||
if(!args.text) return editOrReply(context, {embeds:[createEmbed("warning", context, `Missing Parameter (text).`)]})
|
if(!args.text) return editOrReply(context, {embeds:[createEmbed("warning", context, `Missing Parameter (text).`)]})
|
||||||
try{
|
try{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue