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
chakravyuha-oss
kspviswa
A browser maze game uses a locally hosted Laya model to choose each move
Laya-vs-Jev
abcdmku
A side-by-side test bench compares the local Laya model with the hosted Jev API
local-laya
binbandit
Runs Laya-MLX locally with an HTTP API and a TypeScript client
system-one
lukeramsden
A TypeScript client provides typed-decision APIs for Jev, Cloudflare AI Gateway, and Laya
laya-bot-det
koteitan
Classifies Nostr authors as bots with Laya running in the browser
laya-demo
tjpajala
Benchmarks Laya and Open-Jev on JevBench and PubMedQA with a Dockerized comparison interface
dsh-laya-router
ricardochen1996
Routes agent requests using a local Laya-MLX typed-decision model
sag-laya-integration
DATN-SPRING2027
Integrates a local Laya router into the SAG application for question classification
laya-mcp-npm
PerryLink
Launches a Python MCP server that exposes Laya typed decisions to Node.js clients
laya-claude-plugin
noorforeverone
Provides a Claude Code plugin with local Laya decision tools and an MCP server
laya-demo-web
sriramkasyap
Provides a browser playground for sending decision requests to a self-hosted Laya API
opencode-memory
pedroteste00000008-stack
Adds long-term memory to OpenCode using Laya decisions, embeddings, reranking, and a local vector store
omp-marketplace
F0Rextasy
Lists a local System-1 judge plugin for the oh-my-pi marketplace
IOCArena
hc-nolan
Compares Jev, Von, and Laya decision models on VirusTotal data
jev-eval-ja
unirt
Benchmarks Jev and Laya on Japanese business-style decision tasks
laya
Yahia-Raouf
Provides a self-hosted Laya inference API, key management, and an administration portal
laya
waqas-duck
Runs the Laya decision model from Node.js and TypeScript using ONNX Runtime
LayaBOT
tomikan1208-code
Uses Laya decisions to control a Minecraft combat bot through Mineflayer
LayaWatch
BLANCO-11
Runs Laya in-process and provides a self-hosted console for traces, metrics, access control, and model management
laya-t-rex-runner
10086ggqq
A browser-based T-Rex runner uses typed-decision models and distilled agents to choose actions
layaagent
rotsl
Routes tasks through Laya classification and deterministic mediation to local or API-based coding agents
pi-laya
K0stIa
Adds typed-decision tools and session controls to Pi using a Laya-compatible service
laya-agent
ahmadfreijeh
A support-action agent combines a Python Laya prediction service with a Node.js customer-facing server
laya-genui
KevinBermudezC
Routes generative UI components and detects urgency with the Laya decision model
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