Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/content/docs/ai-gateway/providers/groq.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ curl https://gateway.ai.cloudflare.com/v1/{account_id}/{gateway_id}/groq/chat/co
"content": "What is Cloudflare?"
}
],
"model": "mixtral-8x7b-32768"
"model": "llama3-8b-8192"
}'
```

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

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

const chatCompletion = await groq.chat.completions.create({
messages,
Expand Down