johnpaulbin commited on
Commit
5571210
1 Parent(s): 84342a4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -57,7 +57,7 @@ def home():
57
  }
58
  let recognition = new window.SpeechRecognition();
59
  recognition.continuous = true;
60
- recognition.interimResults = false;
61
  let liveOutput = document.getElementById('transcription');
62
  let lastTranscription = '';
63
 
 
57
  }
58
  let recognition = new window.SpeechRecognition();
59
  recognition.continuous = true;
60
+ recognition.interimResults = true;
61
  let liveOutput = document.getElementById('transcription');
62
  let lastTranscription = '';
63