We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 019bb81 commit 2a8d1c6Copy full SHA for 2a8d1c6
src/content/docs/ai-gateway/providers/groq.mdx
@@ -39,7 +39,7 @@ curl https://gateway.ai.cloudflare.com/v1/{account_id}/{gateway_id}/groq/chat/co
39
"content": "What is Cloudflare?"
40
}
41
],
42
- "model": "mixtral-8x7b-32768"
+ "model": "llama3-8b-8192"
43
}'
44
```
45
@@ -61,7 +61,7 @@ const groq = new Groq({
61
});
62
63
const messages = [{ role: "user", content: "What is Cloudflare?" }];
64
-const model = "mixtral-8x7b-32768";
+const model = "llama3-8b-8192";
65
66
const chatCompletion = await groq.chat.completions.create({
67
messages,
0 commit comments