Community Hub

Leaderboard, benchmarks, model requests, and docs

Total Users
-
Total Requests
-
Tokens Served
-

🏆 Model Leaderboard

Real performance scores from our platform

#ModelCodingReasoningMathChatAvgTier
Loading...

📊 Real Benchmarks

Performance data from actual API requests

Avg Latency
-
milliseconds
Uptime
-
success rate
Models Active
-
available

Requests by Model

ModelRequestsAvg LatencyAvg Tokens
Loading...

Real Benchmarks

Self-benchmarked via openbench (50 samples each) + official published scores (citations below)

MMLU (Knowledge)

Gemma 4 94, Rnj-1 82, Devstral 80, SmolLM 32

MMLU-Pro (Hard Reasoning)

Gemma 4 86, Rnj-1 44, Devstral 78

Coding

Gemma 4 80, Rnj-1 84, Devstral 68, SmolLM 23

Math (GSM8K)

Gemma 4 90, Rnj-1 93, SmolLM 1

gemma4 + devstral MMLU/MMLU-Pro = self-benchmarked (openbench, 50 samples). rnj-1 coding/math = official Essential AI README. gemma4 coding/math = official Google model card. devstral coding = official Mistral announcement. smollm = official HuggingFace scores. Coding benchmarks differ per model: LiveCodeBench v6, HumanEval+, SWE-bench Verified.

📋 Model Requests

Community-requested models and their status

Loading...

📖 Documentation

Everything you need to integrate with Trillionir AI

Quickstart

1. Get your API key

Register at thetrillioniar.me and copy your API key from the dashboard.

2. Install SDK

Python
pip install openai
Node.js
npm install openai

3. Make your first request

Python
from openai import OpenAI

client = OpenAI(
    api_key="sk-tr-your-key",
    base_url="https://thetrillioniar.me/openai"
)

response = client.chat.completions.create(
    model="auto",
    messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)

4. Or use cURL

cURL
curl https://thetrillioniar.me/openai/v1/chat/completions \
  -H "Authorization: Bearer sk-tr-your-key" \
  -H "Content-Type: application/json" \
  -d '{"model":"auto","messages":[{"role":"user","content":"Hello!"}]}'

API Reference

OpenAI Compatible

EndpointMethodDescription
/openai/v1/chat/completionsPOSTChat completions (OpenAI format)
/openai/v1/modelsGETList available models

Anthropic Compatible

EndpointMethodDescription
/anthropic/v1/messagesPOSTMessages API (Anthropic format)
/anthropic/v1/modelsGETList available models

Native Ollama

EndpointMethodDescription
/api/chatPOSTChat (JWT auth, no API key)
/api/generatePOSTGenerate text

Authentication

Two authentication methods:

API Key (for SDKs)

Header
Authorization: Bearer sk-tr-your-api-key

JWT Token (for chat)

Header
Authorization: Bearer eyJhbGciOiJIUzI1NiIs...

Rate Limits

TierPriceRequests/minModels
Free$0/mo10smollm:135m
Starter$5/mo30Top 5
Pro$20/mo100All
Team$60/mo300All + Priority

Available Models

ModelTypeContextTier
Loading...