| export function classify(text) { | |
| const lower = text.toLowerCase(); | |
| let intent = "low"; | |
| if (lower.includes("10k") || lower.includes("skalieren")) { | |
| intent = "high"; | |
| } | |
| else if (lower.includes("kunden") || lower.includes("verkauf")) { | |
| intent = "medium"; | |
| } | |
| return { | |
| intent, | |
| raw: text | |
| }; | |
| } |