29 / 100
Product intent
A quiet keyboard for a shared office.
Which product family fits best?
Silent mechanical91%
Gaming clicky6%
Compact travel3%
// Conceptual pseudocode — not Jev SDK syntax
const state = {
"query": "A quiet keyboard for a shared office.",
"catalog": "silent mechanical, gaming clicky, compact travel"
};
const decision = await evaluateDecision({
state,
question: "Which product family fits best?",
options: ["Silent mechanical","Gaming clicky","Compact travel"],
});
// Your adapter normalizes the provider response.
// Tune this example threshold on labelled data.
if (decision.outcome === "Silent mechanical"
&& decision.probability >= 0.85) {
selectProductFamily(decision);
} else {
queueForReview(decision);
}Let the application silent mechanical.