update modelss

This commit is contained in:
Lilith Ashley Nyx Arson 🔥 2025-01-29 01:29:29 +01:00
parent a7b646d58d
commit ebce7548aa
Signed by: lilith
SSH key fingerprint: SHA256:LAjgsAMyT3LO2JVtr6fQ4N3RTYoRRlIm5wAKsbDife4
2 changed files with 3 additions and 3 deletions

View file

@ -16,7 +16,7 @@ const data = new SlashCommandBuilder()
.setName("model")
.setRequired(false)
.setDescription("What AI model to use")
.addChoices({ name: "Gemma 2 9B", value: "gemma2-9b-it" }, { name: "Gemma 7B", value: "gemma-7b-it" }, { name: "Llama 3 Groq 70B Tool Use (Preview)", value: "llama3-groq-70b-8192-tool-use-preview" }, { name: "Llama 3 Groq 8B Tool Use (Preview)", value: "llama3-groq-8b-8192-tool-use-preview" }, { name: "Llama 3.1 70B", value: "llama-3.1-70b-versatile" }, { name: "Llama 3.1 8B", value: "llama-3.1-8b-instant" }, { name: "Llama 3.2 1B (Preview)", value: "llama-3.2-1b-preview" }, { name: "Llama 3.2 3B (Preview)", value: "llama-3.2-3b-preview" }, { name: "Llama 3.2 11B Vision (Preview)", value: "llama-3.2-11b-vision-preview" }, { name: "Llama Guard 3 8B", value: "llama-guard-3-8b" }, { name: "Meta Llama 3 70B", value: "llama3-70b-8192" }, { name: "Meta Llama 3 8B", value: "llama3-8b-8192" }, { name: "Mixtral 8x7B", value: "mixtral-8x7b-32768" })
.addChoices({ name: "Llama 3.3", value: "llama-3.3-70b-versatile" }, { name: "DeepSeek R1", value: "deepseek-r1-distill-llama-70b" })
)
.addBooleanOption(builder =>
builder //
@ -66,4 +66,4 @@ module.exports = {
await interaction.followUp(response + "\n\n-# This content was generated by a LLM and may be incorrect");
},
};
};

View file

@ -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.3-70b-versatile";
await command.execute(interaction);
} catch (err) {
console.error(err);