npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@cyberlangke/tokkit-inclusionai

v1.11.0

Published

inclusionAI tokenizer families for tokkit.

Downloads

68

Readme

@cyberlangke/tokkit-inclusionai

inclusionAI 官方文本模型的 tokkit 子包。

当前纳入的官方主线模型:

  • 新 family:
    • inclusionAI/LLaDA2.0-mini
    • inclusionAI/LLaDA2.0-flash
    • inclusionAI/LLaDA2.1-mini
    • inclusionAI/LLaDA2.1-flash
    • inclusionAI/LLaDA-MoE-7B-A1B-Base
    • inclusionAI/Ring-2.5-1T
    • inclusionAI/Ling-2.5-1T
    • inclusionAI/Ling-mini-2.0
    • inclusionAI/Ling-flash-2.0
    • inclusionAI/Ling-1T
    • inclusionAI/Ring-mini-2.0
    • inclusionAI/Ling-flash-base-2.0
    • inclusionAI/Ring-flash-2.0
    • inclusionAI/Ring-1T
  • 复用现有 qwen family:
    • inclusionAI/GroveMoE-Base
    • inclusionAI/Qwen3-32B-AWorld
    • inclusionAI/AReaL-SEA-235B-A22B
    • inclusionAI/GroveMoE-Inst
    • inclusionAI/AReaL-boba-2-14B-Open
    • inclusionAI/AReaL-boba-2-8B-Open
    • inclusionAI/AReaL-boba-2-32B
    • inclusionAI/AReaL-boba-2-8B
    • inclusionAI/AReaL-boba-2-14B

当前不纳入:

  • preview / distill / linear / CAP / exp 后缀对象
  • FP8 / GPTQ / AWQ / GGUF / 其他量化衍生发布
  • 早期 Ling-lite*Ling-plus*Ling-Coder-lite*Ring-lite* 历史线

说明:

  • Qwen3-32B-AWorldAReaL-*GroveMoE-Inst 当前与已支持的 qwen3 family 完全一致。
  • GroveMoE-Base 当前与已支持的 qwen2.5 family 完全一致。
  • LLaDA2.0 / 2.1 / LLaDA-MoE-7B-A1B-Base 当前共享同一组 tokenizer,因此统一收口到 llada2
  • Ling / Ring 当前主线里还存在多组不同 tokenizer,当前按官方 hash 分组拆成 ring-2.5-1tling-2ring-mini-2.0ring-flash-2.0ring-1t

使用方法

npm install @cyberlangke/tokkit-inclusionai
import { getEncoding } from "@cyberlangke/tokkit-inclusionai"

const llada = await getEncoding("inclusionAI/LLaDA2.1-mini")
const qwenAlias = await getEncoding("inclusionAI/Qwen3-32B-AWorld")

console.log(llada.encode("Hello, inclusionAI"))
console.log(qwenAlias.encode("Hello, AWorld"))