diff --git a/commands/chat.js b/commands/chat.js index c770a47..496956a 100644 --- a/commands/chat.js +++ b/commands/chat.js @@ -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, diff --git a/commands/imagine.js b/commands/imagine.js index 1633de8..2acd929 100644 --- a/commands/imagine.js +++ b/commands/imagine.js @@ -4,12 +4,12 @@ const { DebugBuilder } = require("../utilities/debugBuilder"); const log = new DebugBuilder("server", "imagine"); const { EmmeliaEmbedBuilder } = require('../libUtils'); -const COST_OF_COMMAND = 100 +const COST_OF_COMMAND = 800 module.exports = { data: new SlashCommandBuilder() .setName('imagine') - .setDescription(`Submit an image generation prompt to DALL-E, by default this command costs *${COST_OF_COMMAND}* tokens`) + .setDescription(`Submit an image generation prompt to DALL-E`) .addStringOption(option => option.setName('prompt') .setDescription('The prompt to be sent to DALL-E') @@ -26,9 +26,9 @@ module.exports = { option.setName('size') .setDescription('The size of the images to be generated *defaults to 256px*') .addChoices( - { name: '1024px', value: '1024x1024' }, - { name: '512px', value: '512x512' }, - { name: '256px', value: '256x256' }, + { name: '1024px - 1000 tokens', value: '1024x1024' }, + { name: '512px - 900 tokens', value: '512x512' }, + { name: '256px - 800 tokens', value: '256x256' }, ) .setRequired(false)), example: "imagine [the sinking of the titanic on acid] [4] [", // Need to figure out the tokens