Skip to main content

laya-serve

CI PyPI License Ruff API Docs

Jev-compatible HTTP server for Laya System One decision models. Point any Jev client at this server and get typed choice / score / noul answers from local Laya weights instead of the TypeSafe API.

Quickstart

pip install "laya-serve[inference]"
LAYA_SERVE_BACKEND=laya LAYA_SERVE_PRELOAD=true laya-serve
curl -X POST localhost:8000/v1/systemone \
  -H "Content-Type: application/json" -d '{
    "state": "Help! My payouts have been failing for 3 days.",
    "model": "jev-latest",
    "questions": {
      "department": {
        "type": "choice",
        "instructions": "Which team should handle this?",
        "criteria": {
          "billing": "Payments, invoicing, refunds",
          "technical": "Bugs, outages, integrations",
          "sales": "Pricing, upgrades, new accounts"
        }
      },
      "is_urgent": {"type": "noul", "instructions": "The message conveys urgency?"}
    }
  }'

Without weights (API development, CI):

pip install -e ".[test]"
LAYA_SERVE_BACKEND=fake laya-serve  # deterministic uniform answers

Endpoints

Method Path Notes
POST /v1/systemone Jev-compatible evaluation endpoint
GET /v1/models Serving model + accepted aliases
GET /healthz Liveness probe (not part of the Jev API)

Errors use {"error": {"message", "field"}} with Jev status codes (401 bad key, 422 validation, 429 rate limit with a Retry-After header when LAYA_SERVE_RATE_LIMIT_PER_MINUTE > 0, 529 transient overload with a Retry-After header, 500 unexpected backend failure with internals logged server-side).

Configuration (LAYA_SERVE_ env prefix)

Variable Default Meaning
LAYA_SERVE_BACKEND fake laya (real weights) or fake (weight-free)
LAYA_SERVE_SERVING_MODEL laya-english Id reported in the model response field
LAYA_SERVE_EXTRA_MODELS `` Extra accepted model names, comma-separated
LAYA_SERVE_DEVICE auto Passed to the Laya Router (cuda, cpu, …)
LAYA_SERVE_MAX_LOADED 1 Router LRU cap on resident checkpoints
LAYA_SERVE_PRELOAD false Preload all checkpoints (recommended for servers)
LAYA_SERVE_API_KEY unset When set, requires Authorization: Bearer <key>
LAYA_SERVE_RATE_LIMIT_PER_MINUTE 0 POST /v1/systemone limit per 60s window per client; 0 disables

Accepted model names out of the box: jev-latest, jev-preview, jev-1.13.0, jev-1.13, laya, laya-latest, plus the serving model id itself. Anything else is a 422 (fail fast on typos, like Jev).

Jev compatibility notes

Verified against docs.typesafe.ai and laya 0.3.x source. Deliberate, documented divergences:

  1. Laya-only fields are stripped: action on every answer, and confidence on noul answers. Responses contain exactly the Jev fields.
  2. model echoes the serving checkpoint (e.g. laya-english), the same way Jev echoes the resolved version id (jev-1.13.0).
  3. output_tokens is 0. Laya never generates tokens; this layer does not invent counts. input_tokens is the backend's token count.
  4. Confidence formula differs: Laya uses entropy-based 1 - H(p)/log(k); Jev documents a peak-based normalization. Same probabilities can yield different confidence values — calibrate thresholds against Laya, not Jev.
  5. Validation: choice ≤ 255 options, score 2–10 levels, model required, non-empty questions — all 422. Context budgets mirror Jev's 64k (state + all questions) / 32k (state + longest question) accounting and surface as 422, as do option sets overflowing the per-question head budget; request sizes use a deterministic word count on every backend so the 200/422 boundary is stable. The checkpoint still truncates per-question sequences at its own max_len.
  6. Score legend/probabilities keys are strings on the wire ({"0": …}), matching Jev HTTP.
  7. choice criteria as a list is accepted leniently (mapped to {label: None}); Jev requires a map.

Development

python -m venv .venv && .venv/bin/pip install -e ".[test]"
.venv/bin/python -m pytest -q

Or with uv (reproducible, via uv.lock):

uv sync --extra test
uv run pytest -q

Lint/format via ruff and hooks via pre-commit:

uvx ruff check src tests && uvx ruff format --check src tests
pre-commit install && pre-commit run --all-files

Documentation

Versioned docs (Zensical + mike): https://stiermid.github.io/laya-serve/ (latest tracks the newest v* tag with the v stripped, dev tracks master — see docs/versioning.md).

uv sync --group docs
uv run zensical serve        # local preview
uv run zensical build --strict  # same check CI runs

License

Apache-2.0 — see LICENSE.

Release files for laya-serve 0.2.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for laya-serve 0.2.0
File Size Uploaded
laya_serve-0.2.0.tar.gz 29.8 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for laya-serve 0.2.0
File Interpreter ABI Platform
laya_serve-0.2.0-py3-none-any.whl Python 3 none any Details

Total release size: 52.8 kB

Release files / laya_serve-0.2.0.tar.gz

Download URL laya_serve-0.2.0.tar.gz
Size 29.8 kB
Tags Source
SHA-256 checksum
How to use checksums
16c99a2d094660e80ab4f84cff708570541c23abcea8058c09a58ca67a01d1bb
BLAKE2b-256 checksum
How to use checksums
4edd94a3f2a1d1fa220d07e2873cb3937bc3acea01420d839d04beb819fb7156
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / laya_serve-0.2.0-py3-none-any.whl

Download URL laya_serve-0.2.0-py3-none-any.whl
Size 23.0 kB
Tags Python 3
SHA-256 checksum
How to use checksums
dfd07bfb2c111ac130e68e285cad719dee84063aadf51adadc38f2663287939e
BLAKE2b-256 checksum
How to use checksums
19b9608830d26e53281d4b635e0fcb6f224534283a3f4ec9a34d05ad2867d0ee
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.2.0 This release

2 release files

0.1.1

2 release files

0.1.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page