Skip to main content

laya-serve

CI PyPI License Ruff API

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, 529 transient overload with a Retry-After header, 500 unexpected backend failure with internals logged server-side; 429 rate-limit handling is still future work).

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>

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 are counted with the checkpoint tokenizer when one is loaded, word approximation otherwise. 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

License

Apache-2.0 — see LICENSE.

Release files for laya-serve 0.1.1

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.1.1
File Size Uploaded
laya_serve-0.1.1.tar.gz 26.9 kB Details

Built distribution (wheel)

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

Total release size: 47.7 kB

Release files / laya_serve-0.1.1.tar.gz

Download URL laya_serve-0.1.1.tar.gz
Size 26.9 kB
Tags Source
SHA-256 checksum
How to use checksums
99d04d248c3dde2779d03f8ce26fb75df1879a9d536e4e267c9f3b51a49ae986
BLAKE2b-256 checksum
How to use checksums
61022725e5b80ba1f8ea04ceba5600a3bc95680c1ec81f031fb2119c46c788d6
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 23, 2026.

Transparency log

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

Download URL laya_serve-0.1.1-py3-none-any.whl
Size 20.9 kB
Tags Python 3
SHA-256 checksum
How to use checksums
afdda93132d914053650db95e0d78b5beaeeeea3c267caac84980f12483c7b8e
BLAKE2b-256 checksum
How to use checksums
a7ae7fa02a991118fbe91d815d1b3d82e93b06f901ebe536ca73ef17ea957e9a
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 23, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.1.1 This release

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