Jevstiller
Jev, distilled on the fly. Put Jevstiller in front of a repeated Jev classification call. At first every request still goes to Jev. From Jev's own answers — with their full probability distributions — it trains a small local model on your traffic, checks that the model agrees with Jev within a budget you set, and then answers most requests itself. Uncertain or novel input, and a permanent random audit slice, keep going to Jev.
Same call. Same answers. Your hardware.
your app ──► Jev your app ──► Jevstiller ──► Jev
│ local model (only the 3% it isn't sure about,
▼ plus a 2% audit)
answer
Why
Jev is fast, cheap and typed. It is also a ceiling: 1,200 requests per minute per key, ~300 ms per answer, hosted only. Jevstiller is for the workload that outgrows that — bursts, backlogs, latency budgets in milliseconds, boxes with no egress, or simply not wanting every classification to depend on one external API.
Against live Jev, in a replay of Banking77 (77 customer-support intents), the local model answered 70.7% of held-out messages at 99.45% agreement with Jev (target 98%), taking over most live traffic from about 5,000 messages on, and kept Jev's accuracy (78.5% vs Jev's 78.5% on the dataset's labels). On CPU the student path ran at ~130 messages/s, 6.5× Jev's rate limit. On a GPU it runs at ~2,000/s.¹
The contract
You set one number. Jevstiller returns the label Jev would have returned on at least that share of requests:
target_agreement = 0.98 → disagreement budget = 2% of all requests
The routing threshold is chosen on a held-out, IID calibration set so that, with 95% confidence, the share of requests the local model answers and gets different from Jev stays within the budget. It uses an exact finite-sample bound (Clopper–Pearson), testing candidate thresholds strictest-first. It is not tuned by eye, and it is re-verified forever on the audit channel. If the audit shows the contract is broken, everything falls back to Jev automatically.
Agreement with Jev is not accuracy. If Jev is wrong, the student is wrong the same way. The status report says so next to every number. See DESIGN.md §2.
Install
pip install jevstiller # everything: the proxy (`jevstiller serve`), the encoder, the Jev adapter
pip install "jevstiller[gpu]" # on a GPU machine: adds PyTorch, used automatically when CUDA is present
Python 3.10+. CPU works out of the box; a GPU only speeds up the encoder.
Drop-in proxy: no code changes
Run Jevstiller next to your services and point the Jev SDK at it:
docker run -d -p 8080:8080 -v jevstiller-data:/data ghcr.io/tomerglick57/jevstiller:0.3.3
# or: pip install jevstiller && jevstiller serve --config deploy/jevstiller.toml
export TYPESAFE_BASE_URL=http://jevstiller:8080 # in each calling service; nothing else changes
Services keep their own TYPESAFE_API_KEY; Jevstiller forwards it and never stores it.
- Tasks: every
Choicequestion becomes a task, keyed by its exact instructions, criteria and model, so services asking the same question share one local model. - Until a student is ready: requests are forwarded to Jev unchanged, and Jev's responses returned unchanged, until a task's student is trained and has passed its checks.
- After that: the proxy answers what it is sure about in Jev's exact response format (
x-jevstiller-source: localtells you which), but only for keys Jev has accepted. - Always forwarded: non-
Choicequestions, other endpoints, and anything it does not understand.
Performance of one process (16 vCPU, bge-small on CPU, docs/benchmarks.md):
- Forwarded requests: Jev's latency plus ~1–4 ms, and up to ~585 req/s at 256 concurrent callers.
- Local answers: ~16 ms p50, ~50 ms p99, up to the encoder's capacity (here ~150–340 texts/s depending on text length; a GPU raises it). Beyond that, the excess is forwarded to Jev, so the proxy is never much slower than Jev.
- Memory: ~300 MB with the encoder, plus a few MB per loaded task. Flat over a 20-minute soak with 18 task reloads a second.
Operations: a TOML config, an admin API and CLI (jevstiller admin ...), Prometheus /metrics, /readyz, JSON logs, jevstiller backup, and a Docker image and Kubernetes manifest. Docs: deploy, operations, the proxy, configuration, security, compatibility. Website: jevstiller.pages.dev.
How it compares
As of September 2026:
- stuntd is the closest project. It is also a local Jev-compatible proxy that learns a head per question (on the Laya encoder) and checks 2% of live traffic. The differences:
- Guarantee: Jevstiller picks its threshold with a finite-sample bound on disagreement over all requests; stuntd uses a point estimate on a holdout.
- Automation: Jevstiller trains, shadow-tests and promotes by itself; stuntd uses
stuntd train/stuntd enable. - Training data: Jevstiller learns from Jev's full probability distributions and gates unfamiliar inputs.
- Question identity: Jevstiller identifies a question by its exact content; stuntd uses its name.
- Keys: Jevstiller answers locally only for API keys Jev has accepted.
- Deployment: Jevstiller serves many tenants from one server, on CPU.
- Where stuntd goes further: it also speaks the OpenAI API, and can answer with no provider at all (zero-shot Laya).
- Distil Labs and cloud "distillation" (Amazon Bedrock, OpenAI, Azure) train a small replacement model from your traffic as a separate job, then swap the whole model. There is no per-request fallback to the large model, no bound, and no Jev API.
- Routers (RouteLLM, Not Diamond, OpenRouter Auto) choose between existing models. Semantic caches (GPTCache, Portkey, jevcache) reuse answers to near-identical inputs. Neither learns to answer new inputs.
- Open Jev-compatible models (Laya, Kev, jeff) replace Jev outright, at lower zero-shot accuracy.
- Research:
- OCaTS (EMNLP 2023), Cache & Distil (ACL 2024) and Online Cascade Learning (ICML 2024) train a student online from an LLM's answers, without a guarantee.
- BARGAIN (SIGMOD 2026) and vCache (ICLR 2026) guarantee agreement with the LLM, but without a student that keeps learning.
- Jevstiller combines the two, with a permanent audit and automatic fallback on top.
Quickstart (library)
No API key needed — a synthetic teacher stands in for Jev:
python examples/quickstart_synthetic.py
With Jev (TYPESAFE_API_KEY in your environment):
from jevstiller import Task, Jevstiller, load_encoder
from jevstiller.teachers.jev import JevTeacher
task = Task(
name="support_router",
instructions="Which team should handle this customer message?",
classes={ # descriptions are sent to Jev verbatim — they are the spec
"billing": "Charges, invoices, refunds, payment methods",
"technical": "Bugs, errors, integrations, things not working",
"cancellation": "Wants to cancel, downgrade, or close the account",
"sales": "Pre-sales questions, plan comparison, quotes",
"other": "Anything that does not fit the categories above",
},
target_agreement=0.98,
)
js = Jevstiller(task, teacher=JevTeacher(), data_dir="./jevstiller-data", encoder=load_encoder("base"))
r = js.classify("Please cancel my subscription")
r.label # "cancellation"
r.confidence # 0.97
r.source # "teacher" at first — later "student:v9"
print(js.status().report())
Task: support_router version 89a7438c2f7d mode: cascade audit rate 2%
Production: student:v9 Shadow: -
Requests: 11,083 student 69.8% teacher 30.2%
Agreement with teacher (audit, n=415): 99.40% [98.46%, 99.84%] target 98% OK
note: agreement with the teacher is not accuracy.
How it works
request ─► router ─┬─ confident & in-distribution ─► local student ─► answer
├─ uncertain / novel / 2% audit ─► Jev ─► answer (and a new training row)
└─ no model yet ─────────────────► Jev
│
sample store ◄──────────┘
│ train (seconds; frozen encoder + small head, soft targets)
▼
candidate ─► shadow on live traffic ─► passes the budget? ─► production
drift? ─► retrain / fall back
- Encoder: frozen sentence encoder (
bge-small/base/large), ONNX or PyTorch. Embeddings are stored, so retraining never re-encodes. - Student: numpy logistic regression on the teacher's distribution, early-stopped on a validation slice.
- OOD gate: kNN distance in embedding space — unlike anything seen → Jev, whatever the head says.
- Audit channel: a fixed random slice always goes to Jev. The only unbiased view of production, and the price of the guarantee.
- Versions: immutable
student:vNdirectories; promote, roll back, orexport()a standalone bundle.
The full reasoning — including the five loop bugs the first real replay found and how they were fixed — is in DESIGN.md.
Status
Alpha. Validated against live Jev (above).
-
Proxy: the drop-in proxy works end to end with the unmodified TypeSafe SDK.
-
Security: three security audits (12, 15 and 8 findings, all fixed: docs/security.md).
-
Deployment: it runs as a hardened container.
-
Tested under failure and load:
- Jev down, slow or rate limiting.
- A full disk.
kill -9during training.- A 40-minute soak with a silent change in Jev's answers, which it recovers from by itself.
- Load up to 256 concurrent callers.
Results: docs/benchmarks.md.
See DEPLOYMENT_PLAN.md for what is done and what is next.
Documentation:
- DESIGN.md: why it works the way it does.
- docs/deploy.md, docs/operations.md, docs/proxy.md, docs/configuration.md, docs/benchmarks.md, docs/security.md, docs/compatibility.md (supported SDK and Jev versions, what callers see, versioning).
Not for: tasks with changing class lists (retrain from scratch), non-text input, or volumes too low to ever collect a few thousand examples.
Experiments
python experiments/run.py --dataset banking77 --teacher oracle --encoder base # dry run, no key
python experiments/run.py --dataset banking77 --teacher jev --encoder base # the real thing
Contributing
Issues and PRs welcome — especially "I ran it on task X and here's the status report". See CONTRIBUTING.md.
License
MIT. Jevstiller is an independent project and is not affiliated with, endorsed by, or supported by TypeSafe. "Jev" is their model; this tool only talks to its public API.
¹ Live run 2026-09-24: 11,083 replayed messages with 2,000 held out, bge-small on CPU; the GPU figure is from an oracle-teacher run with bge-base on an RTX 3090. Every number, with its command: docs/benchmarks.md.
Release files for jevstiller 0.3.3
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| jevstiller-0.3.3.tar.gz | 189.3 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| jevstiller-0.3.3-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 297.5 kB
Release files / jevstiller-0.3.3.tar.gz
| Download URL | jevstiller-0.3.3.tar.gz |
|---|---|
| Size | 189.3 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
00de8daa0c16c29d62767bb94427c09e0212f44dc41cc1cab07a66cdeeec8785
|
|
BLAKE2b-256 checksum How to use checksums |
2bcc0c8bc10ce7037da1b4b85c7d734ae68ed5e8325bc3ea0b7a8ac65c41b62f
|
| 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 logRelease files / jevstiller-0.3.3-py3-none-any.whl
| Download URL | jevstiller-0.3.3-py3-none-any.whl |
|---|---|
| Size | 108.2 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
ce150024c93ddadca23b7ea7b40330ba732c97f5a0389dfb557451e78c71eb0a
|
|
BLAKE2b-256 checksum How to use checksums |
7859d302fb37333a511d9926ae5f65eb68b0bb2848d6a6f12f2841356b885e0d
|
| 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