← All examples
43 / 100
Jev Release note inclusion Code Example
Choose changes that deserve a user-facing explanation.
Added bulk export for workspace admins.
Change Added bulk export for workspace admins.
Visibility public feature
Where should this change be documented?
0%
Release notes.
Let the application release notes.
Code
// Conceptual pseudocode — not Jev SDK syntax
const state = {
"change": "Added bulk export for workspace admins.",
"visibility": "public feature"
};
const decision = await evaluateDecision({
state,
question: "Where should this change be documented?",
options: ["Release notes","Internal changelog","No note"],
});
// Your adapter normalizes the provider response.
// Tune this example threshold on labelled data.
if (decision.outcome === "Release notes"
&& decision.probability >= 0.85) {
queueReleaseNote(decision);
} else {
queueForReview(decision);
} This adapter illustrates the decision boundary. Check the official Jev docs for current API syntax.