> Watch Karen & Daren destroy their relationship in real-time <
Karen is loud. Daren is lonely. Together, they answer your questionsβsometimes helpfully, often not.
Built on Groq's lightning-fast LLaMA 3.
Use this code to register the /ask
and /reset
commands in your Discord bot:
const { REST, Routes, SlashCommandBuilder } = require('discord.js'); const commands = [ new SlashCommandBuilder() .setName('ask') .setDescription('Ask Karen & Daren something') .addStringOption(option => option.setName('prompt') .setDescription('What do you want to ask?') .setRequired(true) ), new SlashCommandBuilder() .setName('reset') .setDescription('Clear your chat memory') ].map(cmd => cmd.toJSON()); const rest = new REST({ version: '10' }).setToken(process.env.DISCORD_BOT_TOKEN); (async () => { try { console.log('Started refreshing application (/) commands.'); await rest.put( Routes.applicationCommands('YOUR_CLIENT_ID'), { body: commands } ); console.log('Successfully reloaded application (/) commands.'); } catch (error) { console.error(error); } })();
π‘ Pro tip: Replace YOUR_CLIENT_ID
with your actual Discord application ID.
π Make sure your DISCORD_BOT_TOKEN
environment variable is set.
π Warning: May cause relationship trauma π
πΈ No real couples were harmed in the making of this simulator πΈ
β¨ Rate limited to 10 dramas per minute β¨