Update help message for chat and imagine

This commit is contained in:
Logan Cusano
2023-02-26 22:42:48 -05:00
parent 94a4694a04
commit 8b7547c02b
2 changed files with 8 additions and 8 deletions

View File

@@ -9,14 +9,14 @@ const COST_OF_COMMAND = 100
module.exports = {
data: new SlashCommandBuilder()
.setName('chat')
.setDescription(`Send a text prompt to ChatGPT, by default this command costs *${COST_OF_COMMAND}* tokens`)
.setDescription(`Send a text prompt to ChatGPT`)
.addStringOption(option =>
option.setName('prompt')
.setDescription('The prompt to be sent to ChatGPT')
.setRequired(true))
.addBooleanOption(option =>
option.setName('public')
.setDescription("Set this to false if you would like the message to only be visible to you.")
.setDescription("Set this to false if you would like the message to only be visible to you. *defaults to public*")
.setRequired(false))
.addNumberOption(option =>
option.setName('temperature')
@@ -24,7 +24,7 @@ module.exports = {
.setRequired(false))
.addNumberOption(option =>
option.setName('tokens')
.setDescription('The max amount of tokens to be spent')
.setDescription(`The max amount of tokens to be spent, defaults to ${COST_OF_COMMAND}`)
.setRequired(false)),
example: "chat [tell me a story] [0.07] [400]", // Need to figure out the tokens
isPrivileged: false,