mirror of
https://github.com/zenlm/models.git
synced 2026-07-27 22:44:50 +00:00
main
@zenlm/models
The canonical Zen LM model catalog — specs, pricing, and families for the complete Zen model family.
Install
npm install @zenlm/models
Usage
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[]
All models in the Zen family — 60+ models across generations.
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 | preview | coming-soon | contact-sales | cloud-only | deprecated
Links
Languages
TypeScript
100%