Skip to main content

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

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)

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

  1. Sign up for a BrilliantAI account
  2. Get your API key from the dashboard
  3. Follow our quickstart guide
  4. Explore our example applications

Next Steps