Skip to content

Commit 46a3247

Browse files
kathayldaisyfaithaumahyperlint-ai[bot]
authored
Create 2025-01-07-aig-provider-deepseek.mdx (cloudflare#19054)
* Create 2025-01-07-aig-provider-deepseek.mdx * Update src/content/changelogs-next/2025-01-07-aig-provider-deepseek.mdx URL Co-authored-by: hyperlint-ai[bot] <154288675+hyperlint-ai[bot]@users.noreply.github.com> * Added changelog next details * Added changelog next details * Update 2025-01-07-aig-provider-deepseek.mdx updated to include Brendan's feedback * Update src/content/changelogs-next/2025-01-07-aig-provider-deepseek.mdx Co-authored-by: hyperlint-ai[bot] <154288675+hyperlint-ai[bot]@users.noreply.github.com> * Update 2025-01-07-aig-provider-deepseek.mdx --------- Co-authored-by: daisyfaithauma <[email protected]> Co-authored-by: hyperlint-ai[bot] <154288675+hyperlint-ai[bot]@users.noreply.github.com>
1 parent b7240fd commit 46a3247

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed
31.1 KB
Loading
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
---
2+
title: AI Gateway adds DeepSeek as a Provider
3+
description: AI Gateway has added DeepSeek as a new provider.
4+
products:
5+
- ai-gateway
6+
date: 2025-01-02T11:00:00Z
7+
---
8+
9+
[**AI Gateway**](/ai-gateway/) now supports [**DeepSeek**](/ai-gateway/providers/deepseek/), including their cutting-edge DeepSeek-V3 model. With this addition, you have even more flexibility to manage and optimize your AI workloads using AI Gateway. Whether you're leveraging DeepSeek or other providers, like OpenAI, Anthropic, or [Workers AI](/workers-ai/), AI Gateway empowers you to:
10+
11+
- **Monitor**: Gain actionable insights with analytics and logs.
12+
- **Control**: Implement caching, rate limiting, and fallbacks.
13+
- **Optimize**: Improve performance with feedback and evaluations.
14+
15+
![AI Gateway adds DeepSeek as a provider](~/assets/images/ai-gateway/deepseek.png)
16+
17+
To get started, simply update the base URL of your DeepSeek API calls to route through AI Gateway. Here's how you can send a request using cURL:
18+
19+
```bash title="Example fetch request"
20+
curl https://gateway.ai.cloudflare.com/v1/{account_id}/{gateway_id}/deepseek/chat/completions \
21+
--header 'content-type: application/json' \
22+
--header 'Authorization: Bearer DEEPSEEK_TOKEN' \
23+
--data '{
24+
"model": "deepseek-chat",
25+
"messages": [
26+
{
27+
"role": "user",
28+
"content": "What is Cloudflare?"
29+
}
30+
]
31+
}'
32+
```
33+
34+
For detailed setup instructions, see our [DeepSeek provider documentation](/ai-gateway/providers/deepseek/).

0 commit comments

Comments
 (0)