NexusNetworkSimulationDashboard / core /decision_engine.js
sky-meilin's picture
Create decision_engine.js
601e1d5 verified
Raw
History Blame Contribute Delete
512 Bytes
export function decide(classification) {
if (classification.intent === "high") {
return {
route: "CALL",
message: "🟢 High Intent erkannt → Strategie Call empfohlen"
};
}
if (classification.intent === "medium") {
return {
route: "EDUCATION",
message: "🟡 Gute Basis → Mehr Struktur notwendig"
};
}
return {
route: "REJECT",
message: "🔴 Noch nicht bereit → Klarheit fehlt"
};
}