Available
DeepSeek
DeepSeek models via the official DeepSeek API. Free tier available.
Models
deepseek-chat
deepseek-reasoner
Capabilities
✓ Text✓ Reasoning✓ Tools✓ Streaming
Setup
- Create an account at platform.deepseek.com
- Free tier is available with usage limits
- Generate an API key from the dashboard
Configuration
Base URL: https://api.deepseek.com/v1 Environment variable: DEEPSEEK_API_KEY=... Or configure via dashboard: Dashboard → Provider Keys → Add Key → deepseek
Example
curl https://your-bifrost-url/api/chat/completions \
-H "Authorization: Bearer $BIFROST_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "deepseek-chat",
"messages": [{"role": "user", "content": "Hello!"}]
}'