rai-serge-discord-bot/commands/Info/about.js

14 lines
804 B
JavaScript
Raw Normal View History

2023-03-25 13:09:44 -04:00
const { EmbedBuilder } = require('discord.js');
2023-03-25 13:51:29 -04:00
module.exports = {
2023-03-25 13:09:44 -04:00
name: "about",
description: "Info about the bot",
run: async (client, interaction) => {
2023-03-25 13:50:48 -04:00
const embed = new EmbedBuilder()
.setColor("#FF0000")
.setTitle("About rAI")
.setDescription(`Latency : ${client.ws.ping}ms\n\nrAI is a bot managed by \`snxraven#8205\` running an LLM called Alpaca.\n\nSpecs: Intel i7-1065G7 (8) @ 3.900GHz with 11 GB of RAM\nChat is set to 7 Threads\nConfigured Memory Speed: 3733 MT/s\nUSB Liveboot\n\nSingle Task Only - 256 Max Token Output`)
.setTimestamp()
.setFooter({ text: `Requested by ${interaction.user.tag}`, iconURL: `${interaction.user.displayAvatarURL()}` });
interaction.followUp({ embeds: [embed] });
2023-03-25 13:09:44 -04:00
},
};