CoolFace
Modelpublic

huanggengwei/laya-typed-decisions

sourceHugging Faceapache-2.0updated 2d agoView on Hugging Face
0likes
Model Card

Laya (Fine-Tuned on Typed-Decisions Benchmark)

This is Laya fine-tuned on the 1,200 training cases (6,000 decisions) of the independent LocalLLaMA/typed-decisions benchmark.

On the official 400-case test set (2,000 decisions across Agent Trace Observability, Customer Service, Invoice Processing, and Security Incidents), it achieves 0.783 Accuracy, outperforming TypeSafe Jev 1.13.0 (0.727) and surpassing the benchmark's Teacher Self-Agreement ceiling (0.735).

Head-to-Head Benchmark Results

ModelKindAccuracySoft AccBrier ScoreECEScore MAEWithin 1 LevelLatency (p50)Cost/Case
Laya (Ours)fine-tuned0.7830.5090.0640.2290.2290.994157.8 ms$0.00 (Self-Hosted)
TypeSafe Jev 1.13.0general0.7270.5800.1480.1440.3910.952710 ms$0.0004 (API)
ModernBERT-base (149M)specialist0.6460.5420.1190.1790.4440.931349 ms$0.00
Teacher Self-Agreementceiling0.735-------

Installation & Quickstart

bash
pip install laya
python
import laya

# Load the fine-tuned model directly from Hugging Face
agent = laya.load("huanggengwei/laya-typed-decisions")

# Evaluate any workflow state and typed questions in a single forward pass
result = agent.predict(state, questions)
print(result["answers"])

License

Apache 2.0. Fine-tuned from Convai Innovations' Laya.