Merge pull request 'read me pelase' (#11) from dev into mistress

Reviewed-on: #11
This commit is contained in:
Ashley Graves 2024-10-11 22:22:04 +00:00
commit 307410e1d2

View file

@ -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");
},
};