File size: 422 Bytes
6b731f7
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
"""
Routing Module - Intent Classification and Request Routing.

Determines how the orchestrator should handle a user request:
- Direct: SBERT routing → tool execution (existing pipeline)
- Investigative: Reasoning loop with hypothesis testing
- Exploratory: Auto-hypothesis generation → reasoning loop
"""

from .intent_classifier import IntentClassifier, IntentResult

__all__ = ["IntentClassifier", "IntentResult"]