File tree Expand file tree Collapse file tree 1 file changed +1
-6
lines changed
docs/inference-providers/guides Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -152,14 +152,9 @@ document.getElementById('file').onchange = async (e) => {
152152 hide (document .getElementById (' results' ), document .getElementById (' error' ));
153153
154154 try {
155- console .log (' 🎤 Starting transcription...' );
156155 const transcript = await transcribe (file);
157- console .log (' ✅ Transcription completed:' , transcript .substring (0 , 100 ) + ' ...' );
158-
159- console .log (' 🖊️ Starting summarization...' );
160156 const summary = await summarize (transcript);
161- console .log (' ✅ Summary completed:' , summary .substring (0 , 100 ) + ' ...' );
162-
157+
163158 document .getElementById (' transcript' ).textContent = transcript;
164159 document .getElementById (' summary' ).textContent = summary;
165160
You can’t perform that action at this time.
0 commit comments