查询分析结果
| 23 | |
| 24 | @dataclass |
| 25 | class QueryAnalysis: |
| 26 | """查询分析结果""" |
| 27 | query_complexity: float # 查询复杂度 (0-1) |
| 28 | relationship_intensity: float # 关系密集度 (0-1) |
| 29 | reasoning_required: bool # 是否需要推理 |
| 30 | entity_count: int # 实体数量 |
| 31 | recommended_strategy: SearchStrategy |
| 32 | confidence: float # 推荐置信度 |
| 33 | reasoning: str # 推荐理由 |
| 34 | |
| 35 | class IntelligentQueryRouter: |
| 36 | """ |
no outgoing calls
no test coverage detected