| 3 | */ |
| 4 | |
| 5 | export interface ClassificationResult { |
| 6 | recommended_labels: string[]; |
| 7 | confidence_scores: Record<string, number>; |
| 8 | reasoning: string; |
| 9 | error?: string; |
| 10 | } |
| 11 | |
| 12 | export interface DuplicateMatch { |
| 13 | issue_number: number; |
nothing calls this directly
no outgoing calls
no test coverage detected