"Not the loudest god.
The one who holds the sky."
Three frontier models. One OpenAI-compatible API. Built from the ground up in Singapore by Matrix.Corp — a lab that believes the next leap in AI is not bigger, but more complete.
OpenAI-compatible · No seat licences · Pay per token
All models served via a single OpenAI-compatible endpoint. Switch models by changing one string.
OpenAI-compatible. Drop-in replacement. Change one URL and you're live.
| Model | Architecture | Price | Status |
|---|---|---|---|
| ⚡ Zeus | SACM · 70B–1T | $1.00 | Access |
| 🌐 Lattice | MoE · 120B–671B | $0.80 | Live |
| 🔷 Vexa | Crystalline · Non-neural | $2.00 | Soon |
# pip install openai import openai client = openai.OpenAI( base_url="https://orenthal.onrender.com/v1", api_key="your-orenthal-key", ) # ⚡ Zeus — $1.00 / 1M tokens response = client.chat.completions.create( model="orenthal/zeus-70b", messages=[ {"role": "system", "content": "You are Zeus."}, {"role": "user", "content": "Hello, Orenthal."}, ], temperature=0.7, max_tokens=1024, ) print(response.choices[0].message.content)
// npm install openai import OpenAI from "openai"; const client = new OpenAI({ baseURL: "https://orenthal.onrender.com/v1", apiKey: "your-orenthal-key", dangerouslyAllowBrowser: true, }); // 🌐 Lattice — $0.80 / 1M tokens const response = await client.chat.completions.create({ model: "matrix-corp/lattice-120b", messages: [ { role: "user", content: "Plan a 6-month roadmap." } ], stream: true, }); for await (const chunk of response) { process.stdout.write( chunk.choices[0]?.delta?.content ?? "" ); }
# 🔷 Vexa — $2.00 / 1M tokens (coming soon) curl https://orenthal.onrender.com/v1/chat/completions \ -H "Content-Type: application/json" \ -H "Authorization: Bearer your-orenthal-key" \ -d '{ "model": "orenthal/zeus-70b", "messages": [ { "role": "user", "content": "Hello, Orenthal." } ], "temperature": 0.7, "max_tokens": 1024, "stream": false }'
Orenthal is built on the research of Matrix.Corp — an open research lab working on novel AI paradigms from Singapore.
Every frontier lab is trying to be bigger. Orenthal is trying to be complete.
"Zeus is Orenthal's proof of concept — not for the world, but for ourselves. Proof that a boutique lab, built from the ground up in Singapore, can produce a frontier model that belongs in the same conversation as the biggest labs on earth. Not by being bigger. By being more complete."