Skip to content

Commit 4645263

Browse files
committed
Fix AI model: Update to current llama3-8b-8192
- Replace decommissioned mixtral-8x7b-32768 model - Use llama3-8b-8192 which is currently supported by Groq - Resolves 400 error: model decommissioned
1 parent 5d764ab commit 4645263

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

script.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ const bot = new WritingBot();
418418
class AIEnhancer {
419419
constructor() {
420420
this.groqApiUrl = 'https://api.groq.com/openai/v1/chat/completions';
421-
this.model = 'mixtral-8x7b-32768';
421+
this.model = 'llama3-8b-8192';
422422
}
423423

424424
async enhanceText(text, apiKey) {

0 commit comments

Comments
 (0)