Update app.py
Browse files
app.py
CHANGED
@@ -207,10 +207,10 @@ if prompt := st.chat_input("How can I help you today?"):
|
|
207 |
st.button('Ref', on_click=click_button_onr)
|
208 |
|
209 |
if st.session_state.onr:
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
|
215 |
#onr = st.toggle('Reference',key='onr')
|
216 |
#if choice == 'Reference':
|
@@ -231,6 +231,7 @@ if prompt := st.chat_input("How can I help you today?"):
|
|
231 |
st.button('Audio', on_click=click_button_ontts)
|
232 |
|
233 |
if st.session_state.ontts:
|
|
|
234 |
# The message and nested widget will remain on the page
|
235 |
with open('/home/user/app/audio/audio.mp3','wb') as sound_file:
|
236 |
tts = gTTS(result['result'], lang='en', tld = 'co.in')
|
@@ -239,7 +240,7 @@ if prompt := st.chat_input("How can I help you today?"):
|
|
239 |
sound.export("/home/user/app/audio/audio.wav", format="wav")
|
240 |
st.session_state['audio'] = '/home/user/app/audio/audio.wav'
|
241 |
st.audio(st.session_state['audio'])
|
242 |
-
|
243 |
|
244 |
# ontts = st.toggle('Audio')
|
245 |
# #if choice == 'TTS':
|
|
|
207 |
st.button('Ref', on_click=click_button_onr)
|
208 |
|
209 |
if st.session_state.onr:
|
210 |
+
st.write('ref')
|
211 |
+
generate_pdf()
|
212 |
+
st.session_state['reference'] = '/home/user/app/pdf2image/output.png'
|
213 |
+
st.image(st.session_state['reference'])
|
214 |
|
215 |
#onr = st.toggle('Reference',key='onr')
|
216 |
#if choice == 'Reference':
|
|
|
231 |
st.button('Audio', on_click=click_button_ontts)
|
232 |
|
233 |
if st.session_state.ontts:
|
234 |
+
st.write('audio')
|
235 |
# The message and nested widget will remain on the page
|
236 |
with open('/home/user/app/audio/audio.mp3','wb') as sound_file:
|
237 |
tts = gTTS(result['result'], lang='en', tld = 'co.in')
|
|
|
240 |
sound.export("/home/user/app/audio/audio.wav", format="wav")
|
241 |
st.session_state['audio'] = '/home/user/app/audio/audio.wav'
|
242 |
st.audio(st.session_state['audio'])
|
243 |
+
|
244 |
|
245 |
# ontts = st.toggle('Audio')
|
246 |
# #if choice == 'TTS':
|