first pass at turn based conversation
This commit is contained in:
parent
d1118d375e
commit
518a0f2b53
40 changed files with 503 additions and 99 deletions
6
vocode/turn_based/transcriber/base_transcriber.py
Normal file
6
vocode/turn_based/transcriber/base_transcriber.py
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
from pydub import AudioSegment
|
||||
|
||||
|
||||
class BaseTranscriber:
|
||||
def transcribe(self, audio_segment: AudioSegment) -> str:
|
||||
raise NotImplementedError
|
||||
Loading…
Add table
Add a link
Reference in a new issue