diff --git a/src/commands/ai/prompt.js b/src/commands/ai/prompt.js index 19f6183..2cc3786 100644 --- a/src/commands/ai/prompt.js +++ b/src/commands/ai/prompt.js @@ -1,4 +1,4 @@ -const { InteractionContextType, ApplicationIntegrationType, SlashCommandBuilder, EmbedBuilder } = require("discord.js"); +const { InteractionContextType, ApplicationIntegrationType, SlashCommandBuilder } = require("discord.js"); const data = new SlashCommandBuilder() .setName("prompt") @@ -49,19 +49,6 @@ module.exports = { "model": interaction.options.getString("model") || interaction.defaultModel })).choices[0].message.content; - const embed = new EmbedBuilder() - .setFooter({ - text: "This content was generated by a LLM and may be incorrect.", - iconURL: "https://cdn.discordapp.com/emojis/956557709937889380.webp?size=96&quality=lossless" - }) - .setFields([{ - name: "Prompt", - value: interaction.options.getString("prompt") - }, { - name: "Response", - value: response.slice(0, (response.length > 1024 ? 1021 : 1024)) + (response.length > 1024 ? "..." : "") - }]) - - await interaction.followUp({ embeds: [embed] }); + await interaction.followUp(response + "\n\n-# This content was generated by a LLM and may be incorrect"); }, }; \ No newline at end of file