Join the waitlist
The committee runs today on a deterministic simulation. What is not built yet is the part that matters: real Jev calls behind each member. Here is the honest state of it.
What is coming
The simulated console
Six members, real pooling maths, a deterministic stand-in where the model calls will go. Everything on the front page works today.
Jev-backed committee
Each member becomes a real Jev call, fanned out server-side. The interface does not change — the engine behind it does.
Per-workflow trip settings
One threshold for refunds, another for deploys. Set the autonomy bar per decision type instead of globally.
Custom members
Define your own priors. Swap the advocate for a compliance officer, or run nine members instead of six.
Decision audit log
Every deliberation kept with its votes and its pooled probability, so a decision can be reconstructed months later.
API and SDK
One call in, one typed decision out, with the confidence attached.
What you will call
One call in, one typed decision out, with the confidence attached and the individual votes available if you want to show your work.
POST /v1/deliberate
content-type: application/json
{
"question": "Refund this customer?",
"threshold": 0.75
}200 OK
{
"verdict": "REJECT",
"p": 0.076,
"confidence": 0.924,
"action": "ACT",
"threshold": 0.75,
"tally": { "approve": 1, "reject": 4, "abstain": 1 },
"votes": [
{ "agentId": "AGENT.01", "role": "ADVOCATE",
"verdict": "REJECT", "confidence": 0.63 }
]
}