Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create 2025-01-07-aig-provider-deepseek.mdx #19054

Merged
merged 7 commits into from
Jan 8, 2025
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.
kathayl marked this conversation as resolved.
Show resolved Hide resolved
kathayl marked this conversation as resolved.
Show resolved Hide resolved

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/).
daisyfaithauma marked this conversation as resolved.
Show resolved Hide resolved

### 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