awacke1 commited on
Commit
db0fb9e
·
1 Parent(s): d2ab2f6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -433,7 +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)
 
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)