| 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" | |
| }; | |
| } |