26B Parameters · Self-Hosted · Sovereign AI

The Caribbean's
own LLM

Sovereign AI infrastructure for the Caribbean. A powerful large language model — self-hosted, open-source, and built to understand our culture, dialect, and context.

View API Docs ↓ Explore Features
ciribra-api — live inference
$ # Query Ciribra — OpenAI-compatible API
$ curl ciribra.axionistt.ai/v1/chat/completions \
  -d '{"model": "ciribra", "messages": [{"role": "user",
    "content": "What makes Trinidad Carnival unique?"}]}'
 
26B
Parameters
4B
Active (MoE)
8K
Context Window
$0
Per Token

Why Ciribra?

Built for the Caribbean, by Caribbean AI infrastructure. No data leaves the region. No per-token charges. Full sovereignty.

🏝️

Caribbean Context

Understands T&T dialect, Caribbean culture, local geography, and regional business context natively — no prompt engineering gymnastics.

🔒

Data Sovereignty

Your data never leaves the Caribbean. Self-hosted on dedicated GPU infrastructure — no third-party API calls, no data harvesting.

Drop-in Replacement

OpenAI-compatible API. Change one URL in your code and you're running on Ciribra. Works with any framework — LangChain, OpenClaw, raw HTTP.

🧠

Mixture of Experts

26B total parameters, only 4B active per query. Faster inference, lower cost, better quality-per-FLOP than dense models twice its size.

💰

Zero Per-Token Cost

Flat infrastructure cost. No metering, no surprise bills, no rate limits. Generate millions of tokens for the same price as one.

🌐

Multimodal Ready

Gemma 4 supports text and vision. Process images, documents, and screenshots alongside text — all in one model, all self-hosted.

Built for the Caribbean 🌴

Ciribra serves the entire English-speaking Caribbean — from Trinidad to Jamaica, Barbados to The Bahamas. Our AI, our infrastructure, our future.

🇹🇹Trinidad
🇯🇲Jamaica
🇧🇧Barbados
🇬🇾Guyana
🇧🇸Bahamas
🇱🇨St. Lucia
🇬🇩Grenada
🇻🇨St. Vincent
🇦🇬Antigua
🇩🇲Dominica
🇰🇳St. Kitts
🇧🇿Belize
🇸🇷Suriname

OpenAI-Compatible API

Drop-in replacement. Change one line and you're on sovereign infrastructure.

# Python — just change the base URL
from openai import OpenAI
 
client = OpenAI(
  base_url="https://ciribra.ai/v1",
  api_key="your-api-key"
)
 
response = client.chat.completions.create(
  model="ciribra",
  messages=[{"role": "user",
    "content": "Explain the economic impact of Carnival on T&T"}],
  max_tokens=1000
)
 
print(response.choices[0].message.content)