@zenlm/models
v1.0.4
Published
Zen model catalog — model specs, pricing, and families for the Zen LM model family
Readme
@zenlm/models
The canonical Zen LM model catalog — specs, pricing, and families for the complete Zen model family.
Install
npm install @zenlm/modelsUsage
import { allModels, families } from '@zenlm/models'
import type { ZenModel } from '@zenlm/models'
// Get all available models
const available = allModels.filter(m => m.status === 'available')
// Find a specific model
const zen5 = allModels.find(m => m.id === 'zen5')
// Browse by family
console.log(families.map(f => f.name))API
allModels: ZenModel[]
Every Zen model, in one array.
families: ModelFamily[]
Model families grouped by generation and capability.
Types
ZenModel— complete model definitionModelSpec— architecture and parameter specModelPricing— input/output cost per 1M tokensModelStatus—available(open weights on HuggingFace) orcloud-only(served via API)
Links
Each entry carries up to three: huggingface (weights), github (code), paper
(technical report). A link is present only when it resolves; anything unpublished
is null rather than a guess.
