awacke1 commited on
Commit
0a8fbc3
1 Parent(s): db0fb9e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -433,8 +433,7 @@ def whisper_main():
433
  transcription = transcribe_audio(filename)
434
  st.write(transcription)
435
  response = StreamLLMChatResponse(transcription)
436
- responseJSON = response.json()
437
- st.write(responseJSON)
438
  filename = generate_filename(str(response), ".txt")
439
  st.write(filename)
440
  create_file(filename, transcription, str(response), should_save)
 
433
  transcription = transcribe_audio(filename)
434
  st.write(transcription)
435
  response = StreamLLMChatResponse(transcription)
436
+ st.write(response)
 
437
  filename = generate_filename(str(response), ".txt")
438
  st.write(filename)
439
  create_file(filename, transcription, str(response), should_save)