llm-semantic-router/Decision-1.0-Lux-9B
Decision-1.0-Lux-9B
Lux, Latin for light.
Give Lux evidence, questions and possible answers. It returns decisions and probabilities for labels you define at runtime.
Measured capability
77.40% weighted accuracy across 3,766 decisions and 54 tasks: +5.51 points over Kev-9B and +4.32 over Nox-4B on the same benchmark.
Accuracy (%), using the same five-panel decision benchmark. General decisions contribute 30%; composition contributes 25%; reading, inference and external transfer each contribute 15%. Bold marks a Decision model strictly above every external open reference in that column; Jev and other Decision models are excluded from this threshold. Full tasks, uncertainty and comparator identities.
All 54 tasks · Probability quality, order and missing evidence
Use Lux-9B
Use the official TypeSafe Python SDK with your SystemOne-compatible endpoint, configured to serve Decision-1.0-Lux-9B. Replace the example URL and API key with your own.
pip install typesafe-sdkfrom typesafe_sdk import Choice, Noul, TypeSafeClient
with TypeSafeClient(
api_key="YOUR_ENDPOINT_API_KEY",
base_url="https://your-decision-endpoint.example",
model="Decision-1.0-Lux-9B",
) as client:
result = client.system_one(
state="Customer reports a duplicate charge and asks for a refund.",
questions={
"route": Choice(
instructions="Which team should handle this request?",
criteria={"billing": "Payments and refunds", "technical": "Product faults"},
),
"refund_requested": Noul(instructions="Did the customer request a refund?"),
},
)
print(result.choices["route"].choice)
print(result.nouls["refund_requested"].noul)The same request with curl:
curl -X POST 'https://your-decision-endpoint.example/v1/systemone' \
-H 'Authorization: Bearer YOUR_ENDPOINT_API_KEY' \
-H 'Content-Type: application/json' \
--data-raw '{
"model": "Decision-1.0-Lux-9B",
"state": "Customer reports a duplicate charge and asks for a refund.",
"questions": {
"route": {
"type": "choice",
"instructions": "Which team should handle this request?",
"criteria": {
"billing": "Payments and refunds",
"technical": "Product faults"
}
},
"refund_requested": {
"type": "noul",
"instructions": "Did the customer request a refund?"
}
}
}'Typed request and response guide · Model runtime requirements
More questions, measured
Latency uses the same architecture and runtime, measured with earlier weights.
Distinct Choice questions, fixed at 499 input tokens per question. Thirty measured requests per point across six fresh processes on an otherwise idle AMD GPU. Python latency includes tokenization, inference and response construction; loading and network are excluded. p95, memory and hardware.
Architecture
A causal Qwen3.5 text backbone combines Gated DeltaNet and full attention. A shared candidate head reads contextual candidate endpoints and the final query vector, producing one probability per supplied answer.
Candidate head · Vector architecture · Model details
The full state, question and candidates must fit 16,384 tokens; overflow is rejected. AMD gfx942 is validated; other hardware requires separate qualification. Lux judges supplied evidence without live retrieval, so confidence does not guarantee factual correctness.
License · Attributions · Runtime
