Download

Run Ternative AI
on your own machine.

Two open models, both local, both private, both Apache 2.0. Grab the single-file Terse Micro model, or the Orchid 1.0 weights.

terse Available now

Terse Micro

A ~423M ternary-weight model in a single ~182 MB file. Trained from scratch, runs on any CPU — no GPU, no cloud.

single file runs on CPU TQ2_0 GGUF
Orchid pixel-flower logoorchid Model · fine-tune

Orchid 1.0

Our 2B model — a fine-tune of Microsoft BitNet b1.58, ORPO-aligned. Weights and code are public; run it locally with the ternative engine.

2B ternary Apache 2.0 4 GB VRAM / CPU

⚑ Terse Micro is hosted on Hugging Face; Orchid 1.0's weights and code live on GitHub. Both run fully offline.


Private

Runs on your machine

No account, no cloud, no data leaving your device. Works offline.

Light

4 GB VRAM or CPU-only

Both models run on hardware you already own — Terse needs only a CPU.

Open

Apache 2.0

Free for personal and commercial use. Weights and engine are public.


For technical users

Prefer to build it yourself?

Grab the raw weights and run them yourself. Terse Micro is a single-file download; Orchid needs its base plus the LoRA adapter and a ternative build.

terse Model · weights

Terse Micro weights

The whole model in one ~182 MB file (TQ2_0 GGUF). Runs on a CPU via the terse-arch llama.cpp fork.

bash
# single file, from Hugging Face
huggingface-cli download MicheRomChis/micro-terse \
  terse-micro.TQ2_0.gguf --local-dir ./terse
# then run with the terse-arch llama.cpp fork
./llama-cli -m ./terse/terse-micro.TQ2_0.gguf
Download the GGUF ↗ Terse Micro on GitHub ↗
Model · weights

Orchid 1.0 weights

The I2_S base GGUF (~1.1 GB) plus the aligned LoRA adapter (~90 MB), hosted on Hugging Face.

bash
huggingface-cli download MicheRomChis/orchid-1.0 \
  ggml-model-i2_s.gguf dpo_aligned-lora.gguf \
  --local-dir ./orchid-models
Open on Hugging Face ↗ Orchid on GitHub ↗
−10+1 Engine · source

ternative engine

Clone and build the C++17 / CUDA engine, then point it at the Orchid weights. Windows & Linux.

bash
git clone --depth 1 \
  https://github.com/michelangeloromerochisco/ternative
cmake -B build -DCMAKE_BUILD_TYPE=Release \
  && cmake --build build --parallel

System requirements

Modest by design.

Both models were built to run on consumer hardware. No discrete GPU is required — Terse Micro runs on CPU alone, and Orchid runs in ~4 GB VRAM or CPU-only.

MinimumRecommended
GPU VRAM0 (CPU)4 GB
RAM8 GB16 GB
Storage1.3 GB2 GB
OSWin / Linux