revamp ai response
This commit is contained in:
parent
2360d119aa
commit
a016bafa7d
1 changed files with 2 additions and 15 deletions
|
@ -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");
|
||||
},
|
||||
};
|
Loading…
Reference in a new issue