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