Use Laya from Node.js

You can run Laya inside a Node.js process with ONNX Runtime, or keep the model in a separate server and call it over HTTP. Both routes use the same state-plus-typed-questions request shape as the Python package and the Jev API.

141 projects

pi-laya-router

codenamekt

Routes Pi coding-agent prompts to mapped models using a local Laya intent classifier

0·GitHub repo

von-laya-jev-paint-compare

zhangyunting123

Creates side-by-side paintings from typed decisions by VON, Laya, and Jev

0·GitHub repo

korean-decision-benchmark

jkf87

Benchmarks SemIf, Decider, Laya, and Jev on Korean hate-speech classification

0·GitHub repo

stopline

mdabydeen

Uses Jev or Laya to classify browser-agent actions before applying a policy gate

0·GitHub repo

wizden-moonlander

WizdenOrg

A lunar lander game compares Laya and Jev as typed-decision flight controllers

0·GitHub repo

nexus-decisor-laya

janiojandson

A JavaScript Nexus decision component built around the Laya System 1 model

0·GitHub repo

laya-compaction

tristankenney

A Claude Code plugin that compacts context using scores from a local Laya model

0·GitHub repo

laya-compact

AxeForging

A local context-compaction tool that uses Laya to score which tool calls remain needed

0·GitHub repo

TrucoLaya

guillermojmontenegro-hub

Runs an Argentine Truco card game with AI players controlled by Laya

0·GitHub repo

omp-laya

agusbyna

An omp wrapper adds Laya decisions and prompt pre-screening to agent workflows

0·GitHub repo

laya-mc-bot

LixiaoLeo123

Minecraft bots use Laya decision models alongside external LLM harnesses

0·GitHub repo

pi-laya-router

rabi

Adds Laya decision tools and prompt-based model routing to the pi agent

0·GitHub repo
D

dsh-browser-laya

drscrewdriver

A reserved npm package name for a planned browser-action backend using a local Laya sidecar

0·npm package
J

@johnhenry/aimatey-native-laya

johnhenry

Runs ConvAI's Laya typed-decision model on-device through a TypeScript ONNX Runtime port

0·npm package
D

cortico-world-simple-trpg-check

dtmosken

A TRPG skill-check tool scores skill success with Laya or Jev and resolves d100 rolls

0·npm package
E

@ejstembler/pi-classifier-router

ejstembler

Routes Pi and Oh My Pi prompts to models using typed decisions from Jev or Laya

0·npm package
G

@gabedsam01/decision-maker

gabedsam01

Provides typed decisions for AI agents through a Pi adapter and local Laya or hosted Jev

0·npm package
G

@plumbus/ai-decision-laya

GitHub Actions

Provides a self-hosted Laya typed-decision adapter and Python reference service for Plumbus

0·npm package
E

jev-arena

eliot5566

Lets users create text-driven fighting bots piloted by Jev, Laya, or other models

0·npm package
Z

@zatsepin/jigor

zatsepin

Offers a CLI and HTTP gateway for local ONNX Laya and von models and remote Jev decisions

0·npm package
S

laya-demo

siloh12

Runs a browser demo that calls a Gradio Space to make typed decisions with Laya

0·HF Space

In-process: @receptron/laya

@receptron/laya runs the model with ONNX Runtime, so neither Python nor PyTorch is needed at runtime. It requires Node.js 20 or newer.

npm install @receptron/laya
import { Laya } from "@receptron/laya";

const laya = await Laya.load();

const result = await laya.systemOne(
  { subject: "Refund not received", body: "I cancelled two weeks ago and still have no refund..." },
  {
    department: {
      type: "choice",
      instructions: "Which team should handle this ticket?",
      criteria: { billing: "payments, refunds, invoices", support: "product help and bugs", sales: "new purchases" },
    },
    churn_risk: { type: "noul", instructions: "Is the customer likely to cancel or dispute?" },
  },
);

result.answers.department.choice; // "billing"
await laya.close();

Per its README, the fp32 ONNX weights are about 1.7 GB and download on first use. Budget roughly 2 GB of RAM. A three-question call takes about 140 ms on an Apple Silicon CPU once warm, and the output matches the Python implementation to four decimal places. The package is MIT-licensed; the weights are Apache 2.0.

Over HTTP: laya-studio

laya-studio is a zero-dependency TypeScript client for a running Laya server (Node.js 18.17+):

npm install laya-studio
pip install "laya[serve]"
laya-serve                          # binds 0.0.0.0:8000

Other JavaScript projects

  • @r4ai/laya-web: ONNX Runtime Web runtime for browsers and Node.js.
  • kevala: a Rust engine compiled to WebAssembly with WebGPU kernels, installable from npm.
  • gg-friggin-ez: a profanity and toxicity screener that defaults to Jev and can point at a local Laya endpoint.

Caveats

The English checkpoint's options must fit a 192-token budget and the state is cut at 512 tokens. The receptron README recommends fewer than about 20 options per choice question.

More ways to use Laya