Example: customer service routing
Let’s imagine you are building a customer service system. Messages come in and need to be routed to the right handler. Rather than sending every message through an expensive LLM to figure out what kind of request it is, you classify first and route accordingly.Step 1: classify intent and complexity
Step 2: route to the optimal handler
routing.py

