PITCHFIGHT_AI / core /transcription_client.py
Aspectgg's picture
first commit
5df55ff
Raw
History Blame Contribute Delete
331 Bytes
"""Stub transcription client — faster-whisper fallback planned for Phase 7."""
from __future__ import annotations
from typing import Any
def health_check() -> dict[str, Any]:
return {
"status": "not_configured",
"provider": "local",
"message": "faster-whisper fallback planned for Phase 7",
}