Available
Together AI
Open-source models via Together AI. Free $1 credit on signup.
Models
meta-llama/Llama-3.3-70B-Instruct-Turbo
meta-llama/Meta-Llama-3.1-405B-Instruct-Turbo
deepseek-ai/DeepSeek-V3
Qwen/Qwen2.5-72B-Instruct-Turbo
Capabilities
✓ Text✓ Tools✓ Streaming
Setup
- Create a free account at api.together.xyz
- You receive $1 in free credits on signup
- Generate an API key from the dashboard
Configuration
Base URL: https://api.together.xyz/v1 Environment variable: TOGETHER_API_KEY=... Or configure via dashboard: Dashboard → Provider Keys → Add Key → together
Example
curl https://your-bifrost-url/api/chat/completions \
-H "Authorization: Bearer $BIFROST_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo",
"messages": [{"role": "user", "content": "Hello!"}]
}'