Use case · Classification · Score · Route
Use Jev for Email Triage
Turn inbox processing into a bundle of typed decisions: category, urgency, reply-needed, and routing.
Input
Inbound email
Structured state sent to the decision layer.
Decision
category + urgency + owner
What category is this, how urgent is it, and who should handle it?
3+Questions
1Email state
parallelDecisions
typedOutput
How it works
Turn the workflow into decisions.
Pass the email body as state.
Classify the email.
Score urgency.
Decide whether it needs a reply.
Route it to the right person or workflow.
Try this pattern
What category is this, how urgent is it, and who should handle it?
state: {
source: "...",
context: "..."
}
question:
"What category is this, how urgent is it, and who should handle it?"
pattern:
"Classification · Score · Route"
When not to use Jev
If the task requires open-ended writing, deep synthesis, or novel code generation, keep a generative model in that step. Use Jev around the decision points.