diff --git a/src/commands/groq.rs b/src/commands/groq.rs index 52c7085..e40a206 100644 --- a/src/commands/groq.rs +++ b/src/commands/groq.rs @@ -20,7 +20,7 @@ impl CommandTrait for Llama { } fn description(&self) -> Option<&'static str> { - Some("ask Llama 3.1 70B") + Some("ask Llama 3.2 90B") } fn rate_limit(&self) -> RateLimiter { @@ -36,7 +36,7 @@ impl CommandTrait for Llama { ctx.bot_state.http_client.clone(), "https://api.groq.com/openai/v1", &env::var("GROQ_API_KEY").unwrap(), - "llama-3.1-70b-versatile", + "llama-3.2-90b-text-preview", &[Message { role: "user", content: &prompt }], ) .await?