The platform — alpha

From a paragraph of intent to weights you own.

Nexus automates the post-training work that usually takes an ML research team: building the dataset, choosing and training the student, reinforcing it where it is weak, and proving it against its teacher.

01 The pipeline

FIG. 02 — The Nexus pipeline
Flow diagram. Three inputs — task description, examples and reference documents — enter five stations in order: Specify, Synthesize, Distill, Reinforce, Prove. Three outputs leave Prove: core weights, evaluation report and training manifest. A return loop runs from Prove back to Synthesize, labeled: failures become training data. Inputs Task description Examples Reference documents Failures become training data 01Specify 02Synthesize 03Distill 04Reinforce 05Prove Outputs Core weights Evaluation report Training manifest Inputs Task description Examples Reference documents Failures become training data 01Specify 02Synthesize 03Distill 04Reinforce 05Prove Outputs Core weights Evaluation report Training manifest
  1. Specify

    You write what the job is, in plain language, and attach a few dozen real examples plus any policies or reference documents.

    Nexus compiles this into a task specification: input and output schemas, a grading rubric, an inventory of edge cases, and a held-out test set.

    The test set is frozen before training starts and is never shown to a teacher or a student. Everything downstream is measured against it.

    Compute profile Light — minutes of teacher inference

  2. Synthesize

    Your examples are the seed, not the dataset. Large open-weight teacher models expand them into a corpus of hundreds of millions of tokens: varied inputs, worked reasoning, correct outputs.

    A second pass critiques and filters. Rubric-based judges score every sample, programmatic verifiers check everything checkable, near-duplicates are removed, and anything resembling the frozen test set is discarded.

    Teachers are open-weight models whose licenses permit distillation. We don't train on outputs from services whose terms forbid it.

    Compute profile Heavy inference — models with hundreds of billions of parameters, served across multi-GPU nodes for sustained batch generation

  3. Distill

    Several open-weight base models between one and eight billion parameters are fine-tuned on the corpus in parallel, across a sweep of data mixtures and hyperparameters.

    Each candidate is scored on the frozen test set. Nexus keeps the smallest model that clears your bar, because every parameter you don't need is latency, memory and energy you don't pay for.

    Compute profile Training — parallel fine-tuning runs on multi-GPU nodes

  4. Reinforce

    Fine-tuning teaches a core to imitate. Reinforcement learning teaches it to be right. The core attempts the task over and over; verifiable rewards — schema validity, executable checks, rubric-based judges — tell it which attempts to learn from.

    This is where reliability on the long tail comes from: malformed inputs, ambiguous cases, the one-in-a-thousand request.

    Compute profile Heaviest — millions of rollouts, each generated, judged and learned from

  5. Prove

    Every checkpoint faces the same trial: the frozen test set, a growing regression suite, and adversarial probes written to break it. It is scored head to head against its own teacher and against a general-purpose baseline.

    Failures flow back into synthesis as new training targets. The loop runs until the core clears the bar — or until the evidence says a small model isn't enough for this task, and we tell you so.

    Compute profile Continuous inference — every candidate, every suite, every release

See the planning estimate in GPU-hours

02 What ships

A core is a deliverable, not a subscription.

Design targets · alpha

Weights
safetensors, plus quantized GGUF and ONNX builds.
Evaluation report
accuracy against teacher and baseline, failure analysis, latency and throughput on reference hardware.
Model card
intended use, limits, known failure modes.
Training manifest
base model and license, data lineage, hyperparameters and seeds: enough to reproduce or audit the run.
Regression suite
yours to keep, so every future version answers to the same tests.

03 Deployment

Runs where your data lives.

  • Your cloud

  • On-premises

  • On device

Cores serve through the open-source runtimes you already know — vLLM, llama.cpp, ONNX Runtime — behind an OpenAI-compatible endpoint, or embedded directly in your application.

04 Under the hood

Built for bursts.

Casting a core is bursty by nature: days of intense accelerator use, then nothing until the next refresh. Nexus is designed around elastic cloud capacity rather than a fixed cluster.

Architecture as designed · alpha

  • Orchestration

    A Kubernetes control plane schedules every stage as a resumable job. Preemptible capacity is a first-class citizen: every stage checkpoints and restarts.

  • Inference fleet

    Teacher and judge models served with high-throughput batch inference across multi-GPU nodes.

  • Training fleet

    Distributed fine-tuning and reinforcement learning on GPU or TPU accelerators, built on PyTorch and JAX.

  • Storage and lineage

    Every dataset, checkpoint and score is content-addressed in object storage, so any core can be traced back to the data that made it.

05 Responsible by design

Guardrails we build in, not bolt on.

License-clean
Teachers and base models are open-weight, with licenses that permit distillation and commercial use, disclosed up front.
Isolated
A customer's data and cores are never used to train anything for anyone else.
Honest evaluation
Test sets are frozen before training and never seen by teachers or students.
Bounded use
Cores are built for defined tasks with documented limits. We won't build cores intended to deceive, surveil or harm people.

06 Status

We're early. That's the opportunity.

Nexus is in alpha testing. We are looking for a small number of design partners with one narrow, high-volume language task and a clear bar for success.

Tell us three things: the task, the volume, and what "good enough" means. We'll tell you honestly whether a core is the right tool.

hello@apex.nexus