| """Placeholder voice transcriber for Phase 9 integration.""" | |
| from __future__ import annotations | |
| class VoiceTranscriber: | |
| """Stub for future faster-whisper integration.""" | |
| def health_check(self) -> dict[str, str]: | |
| return { | |
| "status": "not_loaded", | |
| "message": "Voice transcription will be added in Phase 9", | |
| } | |