Update app.py
Browse files
app.py
CHANGED
@@ -434,7 +434,7 @@ def whisper_main():
|
|
434 |
st.write(transcription)
|
435 |
response = StreamLLMChatResponse(transcription)
|
436 |
filename = generate_filename(str(response), ".txt")
|
437 |
-
create_file(filename,
|
438 |
st.sidebar.markdown(get_table_download_link(filename), unsafe_allow_html=True)
|
439 |
|
440 |
def main():
|
|
|
434 |
st.write(transcription)
|
435 |
response = StreamLLMChatResponse(transcription)
|
436 |
filename = generate_filename(str(response), ".txt")
|
437 |
+
create_file(filename, str(transcription), response, should_save)
|
438 |
st.sidebar.markdown(get_table_download_link(filename), unsafe_allow_html=True)
|
439 |
|
440 |
def main():
|