Skip to content

Commit 4c4e9c5

Browse files
authored
Create 2025-01-07-aig-provider-deepseek.mdx
1 parent 621bf70 commit 4c4e9c5

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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 now supports **DeepSeek**, bringing the total number of AI providers available to **16**—giving you more options than ever for observing your AI workloads through AI Gateway. With AI Gateway, you can track **analytics**, store **logs**, and monitor **token usage** to optimize your AI applications.
10+
11+
To get started, simply update the base URL of your DeepSeek API calls to pass through AI Gateway. For detailed setup instructions, see our [DeepSeek provider documentation](https://developers.cloudflare.com/ai-gateway/providers/deepseek/).
12+
13+
### Example
14+
15+
```bash
16+
curl -X POST https://<your-ai-gateway-url>/deepseek/v1/inference \
17+
-H "Authorization: Bearer <your-deepseek-token>" \
18+
-H "Content-Type: application/json" \
19+
-d '{
20+
"prompt": "What is the capital of France?",
21+
"options": {
22+
"model": "ds-large",
23+
"temperature": 0.7
24+
}
25+
}'

0 commit comments

Comments
 (0)