| 111 | let debertaLoadError: string | null = null; |
| 112 | |
| 113 | export interface ClassifierStatus { |
| 114 | testsavant: 'ok' | 'degraded' | 'off'; |
| 115 | transcript: 'ok' | 'degraded' | 'off'; |
| 116 | deberta?: 'ok' | 'degraded' | 'off'; // only present when ensemble enabled |
| 117 | } |
| 118 | |
| 119 | export function getClassifierStatus(): ClassifierStatus { |
| 120 | const testsavant = |
nothing calls this directly
no outgoing calls
no test coverage detected