Skip to content

Commit 2a8d1c6

Browse files
authored
Update groq.mdx (#21635)
updated the model bc groq no longer supports mixtral
1 parent 019bb81 commit 2a8d1c6

File tree

1 file changed

+2
-2
lines changed
  • src/content/docs/ai-gateway/providers

1 file changed

+2
-2
lines changed

src/content/docs/ai-gateway/providers/groq.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ curl https://gateway.ai.cloudflare.com/v1/{account_id}/{gateway_id}/groq/chat/co
3939
"content": "What is Cloudflare?"
4040
}
4141
],
42-
"model": "mixtral-8x7b-32768"
42+
"model": "llama3-8b-8192"
4343
}'
4444
```
4545

@@ -61,7 +61,7 @@ const groq = new Groq({
6161
});
6262

6363
const messages = [{ role: "user", content: "What is Cloudflare?" }];
64-
const model = "mixtral-8x7b-32768";
64+
const model = "llama3-8b-8192";
6565

6666
const chatCompletion = await groq.chat.completions.create({
6767
messages,

0 commit comments

Comments
 (0)