AI Models for
Every Task
Pre-trained cognitive models with calibrated confidence, belief revision, and specialized adapters for 50+ business domains.
Simplex Cognitive Base Models
Pre-trained models with confidence calibration, belief revision, and memory context protocol.
simplex-cognitive-32b
Cross-hive reasoning, complex synthesis, high-stakes decisions.
simplex-cognitive-8b
Primary SLM for each hive. Specialist inference and reasoning.
simplex-cognitive-3b
Mobile and embedded deployment. Fast local inference.
Specialist Models
Hot-swappable LoRA adapters trained for specific business domains.
How to Use
Get started with Simplex Cognitive models in minutes.
# Pull the base model ollama pull simplex-cognitive-8b # Run with a prompt ollama run simplex-cognitive-8b "Summarize this document..." # With confidence output ollama run simplex-cognitive-8b "What is the capital of France? Include confidence."
from transformers import AutoModelForCausalLM, AutoTokenizer
from peft import PeftModel
# Load base model
model = AutoModelForCausalLM.from_pretrained(
"senuamedia/simplex-cognitive-8b"
)
# Load specialist adapter
model = PeftModel.from_pretrained(
model, "senuamedia/simplex-lora-coding"
)
# Generate with confidence
output = model.generate(prompt, temperature=0.7)
Ready to Build?
Explore the full model catalog or learn more about the Simplex language.