(self, api_key=None)
| 26 | |
| 27 | class APIWhisperTranscriber: |
| 28 | def __init__(self, api_key=None): |
| 29 | self.client = OpenAI(api_key=api_key) |
| 30 | |
| 31 | def get_transcription(self, wav_file_path): |
| 32 | try: |
nothing calls this directly
no outgoing calls
no test coverage detected