Available
Fireworks AI
High-performance inference for open models via Fireworks AI. Free $1 credit on signup.
Models
accounts/fireworks/models/llama-v3p3-70b-instruct
accounts/fireworks/models/deepseek-v3
Capabilities
✓ Text✓ Tools✓ Streaming
Setup
- Create a free account at fireworks.ai
- You receive $1 in free credits on signup
- Generate an API key from the dashboard
Configuration
Base URL: https://api.fireworks.ai/inference/v1 Environment variable: FIREWORKS_API_KEY=... Or configure via dashboard: Dashboard → Provider Keys → Add Key → fireworks
Example
curl https://your-bifrost-url/api/chat/completions \
-H "Authorization: Bearer $BIFROST_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "accounts/fireworks/models/llama-v3p3-70b-instruct",
"messages": [{"role": "user", "content": "Hello!"}]
}'