J.

Jev Meeting action detection Code Example

Separate an agreed commitment from a passing idea.

Priya: I will send the revised forecast by Thursday.

Transcript Priya: I will send the revised forecast by Thursday.

What kind of statement is this?

0% Action item.
Action item 72%
Suggestion 20%
Status update 8%

Let the application action item.

Code
Conceptual pseudocode — not official Jev SDK syntax
// Conceptual pseudocode — not Jev SDK syntax
const state = {
  "transcript": "Priya: I will send the revised forecast by Thursday."
};

const decision = await evaluateDecision({
  state,
  question: "What kind of statement is this?",
  options: ["Action item","Suggestion","Status update"],
});

// Your adapter normalizes the provider response.
// Tune this example threshold on labelled data.
if (decision.outcome === "Action item"
    && decision.probability >= 0.85) {
  draftActionItem(decision);
} else {
  queueForReview(decision);
}

This adapter illustrates the decision boundary. Check the official Jev docs for current API syntax.