You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# speech to text
first, you must `pip install whisper`,
then call stt with a callback, e.g.
```
def callback(_, speaker, speech):
print(f'{speaker}: {speech}')
my_stt = stt(speaker='speaker', callback=callback)
```