The solution was to use the sample rate like the current microphone. The sample rate of my MacBook Pro mic is 48000
so I had to change it in the Python script:
fs = 48000
model = vosk.Model(lang="en-us")
recognizer = vosk.KaldiRecognizer(model, fs)