Update app.py
Browse files
app.py
CHANGED
@@ -243,13 +243,13 @@ if prompt := st.chat_input("How can I help you today?"):
|
|
243 |
|
244 |
# st.button('Audio', on_click=click_button_ontts)
|
245 |
|
246 |
-
if button('Reference and TTS'):
|
247 |
-
if button('Reference'):
|
248 |
with st.sidebar:
|
249 |
generate_pdf()
|
250 |
st.session_state['reference'] = '/home/user/app/pdf2image/output.png'
|
251 |
st.image(st.session_state['reference'])
|
252 |
-
if button('TTS'):
|
253 |
with st.sidebar:
|
254 |
with open('/home/user/app/audio/audio.mp3','wb') as sound_file:
|
255 |
tts = gTTS(result['result'], lang='en', tld = 'co.in')
|
|
|
243 |
|
244 |
# st.button('Audio', on_click=click_button_ontts)
|
245 |
|
246 |
+
if button('Reference and TTS', key = 'button1'):
|
247 |
+
if button('Reference', key = 'button2'):
|
248 |
with st.sidebar:
|
249 |
generate_pdf()
|
250 |
st.session_state['reference'] = '/home/user/app/pdf2image/output.png'
|
251 |
st.image(st.session_state['reference'])
|
252 |
+
if button('TTS', key = 'button3'):
|
253 |
with st.sidebar:
|
254 |
with open('/home/user/app/audio/audio.mp3','wb') as sound_file:
|
255 |
tts = gTTS(result['result'], lang='en', tld = 'co.in')
|