Available
Novita AI
Affordable GPU cloud inference via Novita AI. Free $10 credits on signup.
Models
meta-llama/llama-3.3-70b-instruct
deepseek/deepseek-r1-0528
Capabilities
✓ Text✓ Tools✓ Streaming
Setup
- Create an account at novita.ai
- Receive $10 in free credits on signup
- Generate an API key from the dashboard
Configuration
Base URL: https://api.novita.ai/v3/openai Environment variable: NOVITA_API_KEY=... Or configure via dashboard: Dashboard → Provider Keys → Add Key → novita
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",
"messages": [{"role": "user", "content": "Hello!"}]
}'