Skip to content
Merged
Changes from 1 commit
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
title: AI Gateway Adds DeepSeek as a Provider
description: AI Gateway has added DeepSeek as a new provider.
products:
- ai gateway
date: 2025-01-02T11:00:00Z
---

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.

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/).

### Example

```bash
curl -X POST https://<your-ai-gateway-url>/deepseek/v1/inference \
-H "Authorization: Bearer <your-deepseek-token>" \
-H "Content-Type: application/json" \
-d '{
"prompt": "What is the capital of France?",
"options": {
"model": "ds-large",
"temperature": 0.7
}
}'
Loading