Delentia SLM JITNA v0.1 is a Thai/English bilingual instruction-following model fine-tuned from Llama 3.1 8B using QLoRA on the Delentia JITNA (Just-In-Time Natural Action) dataset. It is optimized for intent recognition, constitutional AI routing, and low-hallucination responses within the RCT v5 HexaCore architecture.
Quantization: GGUF Q4_K_M (~4.8 GB) — runs on CPU or GPU
Primary use: Delentia OS gateway AI routing (OLLAMA_ADAPTER role in HexaCore)
Constitutional alignment: 1.0 = no constitutional violations detected
≥ 1.00
Key insight — I as exponent: When Intent precision (I → 1.0) is high, even moderate Data quality (D) yields excellent results. A = 0 blocks output entirely regardless of D and I values.
Model Downloads
Format
Size
Use Case
gguf/delentia-jitna-v0.1-Q4_K_M.gguf
~4.8 GB
Ollama / llama.cpp (recommended)
gguf/delentia-jitna-v0.1-Q8_0.gguf
~8.5 GB
Higher quality, needs 12 GB+ RAM
gguf/delentia-jitna-v0.1-F16.gguf
~16 GB
Full precision (GPU only)
Quick Start
Option 1: Ollama (Recommended — 1 command)
bash
1# Pull from Ollama registry (when available)2ollama run delentia-labs/delentia-jitna-v0.1
34# OR create from GGUF manually:5cat> Modelfile <<'EOF'
6FROM ./delentia-jitna-v0.1-Q4_K_M.gguf
7PARAMETER temperature 0.3
8PARAMETER top_p 0.9
9PARAMETER stop "<|eot_id|>"
10SYSTEM """You are Delentia JITNA — a precision AI assistant built on RCT v5 HexaCore.
11You respond with high factual accuracy in Thai and English.
12FDIA framework: F = D^I × A (Future = Data quality ^ Intent precision × Architect gate)."""
13EOF1415ollama create delentia-jitna-v0.1 -f Modelfile
16ollama run delentia-jitna-v0.1 "สรุปหลักการ RCT v5 ใน 2 ประโยค"