FeatServe 1.0 is the Kryptur console and same-origin REST proxy for FEATSRV — an open-source point-in-time feature store for insurance and actuarial ML. It guarantees temporal correctness so training and online inference never see future feature values.
Every feature value is joined as-of an event_timestamp. SCD Type 2 history (for example address or credit band) is resolved so only information available at prediction time enters the training row — eliminating look-ahead leakage.
Online Redis store
Policy and claim lookups serve low-latency features from Redis (typically under 10 ms on the deployed VPS). Use GET /online/policy/{id} and GET /online/claim/{id} via the same-origin proxy.
Offline PIT training
POST /pit-training and POST /offline materialize leakage-free DataFrames for underwriting, pricing, and fraud models — backed by Feast, Dask, and PySpark engines in FEATSRV.
Leakage audit
POST /leakage-audit flags rows where feature_timestamp is after event_timestamp, ranked by severity across actuarial portfolios.
Authentication
Requests to /api/featserve/* forward to the FEATSRV FastAPI backend. Pass the API key with the x-api-key header. The console falls back to Nimbus demo JSON when live backends are unreachable.