Skip to content

Commit fbc24e9

Browse files
authored
Update 2025-02-04-aig-provider-cartesia-eleven-cerebras.mdx
added words
1 parent cb33e87 commit fbc24e9

File tree

1 file changed

+23
-1
lines changed

1 file changed

+23
-1
lines changed

src/content/changelogs-next/2025-02-04-aig-provider-cartesia-eleven-cerebras.mdx

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,28 @@ products:
55
- ai-gateway
66
date: 2025-02-04T13:00:00Z
77
---
8-
to be added: yaps
8+
9+
[AI Gateway](/ai-gateway/) has added three new providers: [Cartesia](/ai-gateway/providers/cartesia/), [Cerebras](/ai-gateway/providers/cerebras/), and [ElevenLabs](/ai-gateway/providers/elevenlabs/), giving you more even more options for providers you can use through AI Gateway. Here's a brief overview of each:
10+
11+
- [Cartesia](https://docs.cartesia.ai/) provides text-to-speech models that produce natural-sounding speech with low latency.
12+
- [Cerebras](/ai-gateway/providers/cerebras/) delivers low-latency AI inference to Meta's Llama 3.1 8B and Llama 3.3 70B models.
13+
- [ElevenLabs](/ai-gateway/providers/elevenlabs/) offers text-to-speech models with human-like voices in 32 languages.
14+
15+
To get started with AI Gateway, just update the base URL. Here's how you can send a request to [Cerebras](/ai-gateway/providers/cerebras/) using cURL:
16+
17+
```bash title="Example fetch request"
18+
curl -X POST https://gateway.ai.cloudflare.com/v1/ACCOUNT_TAG/GATEWAY/cerebras/chat/completions \
19+
--header 'content-type: application/json' \
20+
--header 'Authorization: Bearer CEREBRAS_TOKEN' \
21+
--data '{
22+
"model": "llama-3.3-70b",
23+
"messages": [
24+
{
25+
"role": "user",
26+
"content": "What is Cloudflare?"
27+
}
28+
]
29+
}'
30+
```
931

1032
![AI Gateway adds a cat as a provider](~/assets/images/ai-gateway/IMG_8696.jpg)

0 commit comments

Comments
 (0)