Welcome to BrilliantAI
BrilliantAI provides state-of-the-art AI models through a simple, developer-friendly API. Our platform enables you to build powerful AI applications with frontier models like Llama and Mistral.
Our Services
LLM Inference
Access top-performing language models for text generation, chat, and reasoning tasks. Our models include:
- DeepSeek-R1 ($0.0/1M tokens): SOTA Reasoning Model for the most challenging tasks
- llama-3.3-70b: Meta's largest language model (70B parameters), optimized for performance
- llama-3.2-8b: Efficient 8B parameter model for cost-effective deployments
- mistral-nemo: Powerful 12B parameter model from Mistral AI & Nvidia for general-purpose text generation
Embeddings
Build powerful RAG applications with our high-performance embedding model:
- snowflake-arctic-embed-l-v2.0: Optimized for RAG applications and semantic search
Quick Example
- Python
- Node.js
- cURL
from openai import OpenAI
client = OpenAI(
base_url="https://api.brilliantai.co",
api_key="your-api-key"
)
completion = client.chat.completions.create(
model="llama-3.3-70b",
messages=[
{"role": "system", "content": "You are a helpful AI assistant"},
{"role": "user", "content": "Write a haiku about AI"}
]
)
print(completion.choices[0].message.content)
import OpenAI from "openai";
const openai = new OpenAI({
baseURL: "https://api.brilliantai.co",
apiKey: "your-api-key"
});
const completion = await openai.chat.completions.create({
model: "llama-3.3-70b",
messages: [
{"role": "system", "content": "You are a helpful AI assistant"},
{"role": "user", "content": "Write a haiku about AI"}
]
});
console.log(completion.choices[0].message.content);
curl https://api.brilliantai.co/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $OPENAI_API_KEY" \
-d '{
"model": "llama-3.3-70b",
"messages": [
{"role": "system", "content": "You are a helpful AI assistant"},
{"role": "user", "content": "Write a haiku about AI"}
]
}'
Key Features
High Performance
- Low-latency inference
- Global distribution
- Automatic scaling
Developer-Friendly
- OpenAI-compatible API
- Comprehensive documentation
- Example applications
- Multiple SDK options
Cost-Effective
- Competitive pricing
- Pay-as-you-go model
- No minimum commitment
Getting Started
- Sign up for a BrilliantAI account
- Get your API key from the dashboard
- Follow our quickstart guide
- Explore our example applications
Next Steps
- Learn about installation and setup
- Understand authentication
- Explore available models