Curated
We benchmark every release before it ships. Models that don't hold up don't make the catalog.
Quantized
Q4_KM, Q5_KM, and Q8 variants where they meaningfully reduce footprint. Same quality bar, smaller binary.
Permissive
Apache 2.0 / MIT / OpenRAIL where the upstream license allows. No surprise restrictions.
Runtime-ready
Every Lexicon ships with a manifest the EdgeMatrix runtime understands — load and serve in one line.
$ pip install sandlogic-lexicons
# Browse the catalog
from lexicons import catalog
print(catalog.list(domain="finance"))
# Load any model
from lexicons import load
model = load("shakti-2.5b-q4km")
# Or run via EdgeMatrix runtime
from edgematrix import Runtime
rt = Runtime("shakti-vlm-4b", device="cuda")
output = rt.generate(prompt, image=img)