← All examples
86 / 100
Jev Meeting follow-up ownership Code Example
Assign follow-up work from a short call transcript.
Sam from engineering will confirm SSO support; Lee will send pricing.
Transcript Sam from engineering will confirm SSO support; Lee will send pricing.
Who owns the technical follow-up?
0%
Sam.
Let the application sam.
Code
// Conceptual pseudocode — not Jev SDK syntax
const state = {
"transcript": "Sam from engineering will confirm SSO support; Lee will send pricing."
};
const decision = await evaluateDecision({
state,
question: "Who owns the technical follow-up?",
options: ["Sam","Lee","Unassigned"],
});
// Your adapter normalizes the provider response.
// Tune this example threshold on labelled data.
if (decision.outcome === "Sam"
&& decision.probability >= 0.85) {
suggestFollowupOwner(decision);
} else {
queueForReview(decision);
} This adapter illustrates the decision boundary. Check the official Jev docs for current API syntax.