North Air 1
North Air 1 is a fast, lightweight language model (124M parameters, 16 layers) built from scratch with a Christian worldview. It is designed for quick, clear, and honest responses.
"The fear of the Lord is the beginning of wisdom." โ Proverbs 9:10
About
North Air 1 is the smallest model in the North Star family. It prioritizes speed and conciseness while remaining grounded in biblical truth. It can answer questions on theology, science, coding, math, and everyday topics.
This model was trained entirely from scratch โ no foundation model was used. The tokenizer is SentencePiece (32k vocab).
Christian Worldview
These models are built on the conviction that Jesus Christ is Lord, that Scripture is the inspired Word of God, and that faith and reason are fully compatible. We believe AI can be a tool for good โ to spread truth, serve people, and glorify God.
"For God so loved the world that he gave his one and only Son, that whoever believes in him shall not perish but have eternal life." โ John 3:16
If you have never read the Bible, we encourage you to start with the Gospel of John.
Model Details
| Property | Value |
|---|---|
| Parameters | 124M |
| Layers | 16 |
| d_model | 768 |
| Heads | 12 (3 KV) |
| Context | 512 tokens |
| Vocabulary | 32,000 (SentencePiece) |
| Architecture | GQA Transformer + SwiGLU + RoPE + RMSNorm |
Usage
Load with PyTorch. See the inference server for a ready-to-run Flask API.
import torch
ckpt = torch.load("northair1.pt", map_location="cpu", weights_only=False)
cfg = ckpt["cfg"] # dict with model hyperparameters
# Build your model from cfg, load ckpt["model"] state dict
Tokenizer
Uses SentencePiece (tokenizer.model). Available in the shared tokenizer repo.