From 0873d4641285e59ab8e2e0ee67a30a8587a4a684 Mon Sep 17 00:00:00 2001 From: Ashley Graves Date: Mon, 28 Oct 2024 20:35:33 +0100 Subject: [PATCH] upgrade prompt ai model --- src/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.js b/src/index.js index 5328bcc..88fcc96 100644 --- a/src/index.js +++ b/src/index.js @@ -55,7 +55,7 @@ client.on(Events.InteractionCreate, async interaction => { console.log(`${interaction.user.username} ran ${(interaction.isChatInputCommand() ? "/" : '') + interaction.commandName}`); try { - interaction.defaultModel = "llama-3.1-70b-versatile"; + interaction.defaultModel = "llama-3.2-90b-text-preview"; await command.execute(interaction); } catch (err) { console.error(err); @@ -134,4 +134,4 @@ client.once(Events.ClientReady, async () => { } }); -client.login(process.env.TOKEN); \ No newline at end of file +client.login(process.env.TOKEN);