Tonic commited on
Commit
65b1bb3
·
1 Parent(s): ff81e3f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -84,10 +84,10 @@ if st.button('Start Transcription'):
84
  with st.expander("See transcript"):
85
  st.markdown(transcript)
86
 
87
- # Display the Whisper transcription
88
- if 'transcript' in locals():
89
- st.text("Transcription:")
90
- st.text(transcript)
91
 
92
  # Update the user input field with the transcription
93
  st.session_state.userinput = st.text_area("Input Text:", transcript)
 
84
  with st.expander("See transcript"):
85
  st.markdown(transcript)
86
 
87
+ # Display the Whisper transcription
88
+ if 'transcript' in locals():
89
+ st.text("Transcription:")
90
+ st.text(transcript)
91
 
92
  # Update the user input field with the transcription
93
  st.session_state.userinput = st.text_area("Input Text:", transcript)