kev:0.8b
4 TagsUpdated 0.76B params8192 contextEnglishApache-2.0by Jared Palmer
Qwen3.5-0.8B base, round 15, 0.460 on typed decisions: small and fast.
0.76b
ollaya run kev:0.8b --preset triage "I was charged twice for my subscription this month and want a refund."curl http://localhost:11435/api/decide \
-H "Content-Type: application/json" \
-d '{
"model": "kev:0.8b",
"state": "I was charged twice for my subscription this month and want a refund.",
"questions": {
"department": {
"type": "choice",
"instructions": "Which team should handle this?",
"criteria": {
"billing": "Payments, invoices and refunds",
"technical": "Bugs, errors and outages",
"account": "Login, profile and settings"
}
},
"refund": {
"type": "noul",
"instructions": "Is the customer asking for a refund?"
}
}
}'# Already using a TypeSafe SDK? Set TYPESAFE_BASE_URL=http://localhost:11435 instead.
import requests
response = requests.post(
"http://localhost:11435/api/decide",
json={
"model": "kev:0.8b",
"state": "I was charged twice for my subscription this month and want a refund.",
"questions": {
"department": {
"type": "choice",
"instructions": "Which team should handle this?",
"criteria": {
"billing": "Payments, invoices and refunds",
"technical": "Bugs, errors and outages",
"account": "Login, profile and settings"
}
},
"refund": {
"type": "noul",
"instructions": "Is the customer asking for a refund?"
}
}
},
)
answers = response.json()["answers"]
print(answers["department"]["choice"], answers["refund"]["noul"])const response = await fetch("http://localhost:11435/api/decide", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
model: "kev:0.8b",
state: "I was charged twice for my subscription this month and want a refund.",
questions: {
department: {
type: "choice",
instructions: "Which team should handle this?",
criteria: {
billing: "Payments, invoices and refunds",
technical: "Bugs, errors and outages",
account: "Login, profile and settings"
}
},
refund: {
type: "noul",
instructions: "Is the customer asking for a refund?"
}
}
}),
});
const { answers } = await response.json();
console.log(answers.department.choice, answers.refund.noul);Details
- graph25b60f5542bd · 10 MB
onnx · kev · 0.76B · fp32 - weightsc2b1e5a17d9c · 1.7 GB
huggingface.co/Qwen/Qwen3.5-0.8B-Base/resolve/dc7cdfe…/model.safetensors-00001-of-00001.safetensors - weights9b908623acb1 · 43 MB
huggingface.co/jaredpalmer/kev-0.8b/resolve/9a45d25…/adapter_model.safetensors - weightsf400bd12802b · 2 MB
huggingface.co/jaredpalmer/kev-0.8b/resolve/9a45d25…/head.pt - tokenizer06b9509352d2 · 20 MB
huggingface.co/jaredpalmer/kev-0.8b/resolve/9a45d25…/tokenizer.json - decision1eaff1136c67 · 3 KB
{"engine": "onnx", "family": "kev", "encoder": "", "layout": "kev-pointer-v1", …} - calibration8b2f8ed9ec53 · 255 B
{"temperature": [2.351, 2.351, 2.351]} - license8292f5d72c8e · 10 KB
Kev by Jared Palmer (https://huggingface.co/jaredpalmer/kev-0.8b)
Every layer is checked against its sha256 when it is pulled. Weights and tokenizers download from the model author's Hugging Face repository at a pinned commit; Ollaya never re-hosts them.