Update app.py
Browse files
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 |
-
|
90 |
-
|
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)
|