vishwask commited on
Commit
ab07ba8
·
1 Parent(s): 118ff86

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +50 -15
app.py CHANGED
@@ -198,25 +198,60 @@ if prompt := st.chat_input("How can I help you today?"):
198
 
199
  #choice = st.radio(label ="References and TTS", options =["Reference" , 'TTS'])
200
 
201
- onr = st.toggle('Reference')
202
- #if choice == 'Reference':
203
- if onr:
204
- with st.sidebar:
 
 
 
 
 
 
205
  generate_pdf()
206
  st.session_state['reference'] = '/home/user/app/pdf2image/output.png'
207
  st.image(st.session_state['reference'])
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
208
 
209
- ontts = st.toggle('Audio')
210
- #if choice == 'TTS':
211
- if ontts:
212
- with st.sidebar:
213
- with open('/home/user/app/audio/audio.mp3','wb') as sound_file:
214
- tts = gTTS(result['result'], lang='en', tld = 'co.in')
215
- tts.write_to_fp(sound_file)
216
- sound = AudioSegment.from_mp3("/home/user/app/audio/audio.mp3")
217
- sound.export("/home/user/app/audio/audio.wav", format="wav")
218
- st.session_state['audio'] = '/home/user/app/audio/audio.wav'
219
- st.audio(st.session_state['audio'])
 
220
 
221
  st.session_state.messages.append({"role": "assistant", "content": full_response})
222
 
 
198
 
199
  #choice = st.radio(label ="References and TTS", options =["Reference" , 'TTS'])
200
 
201
+ if 'onr' not in st.session_state:
202
+ st.session_state.onr = False
203
+
204
+ def click_button_onr():
205
+ st.session_state.onr = True
206
+
207
+ st.button('Ref', on_click=click_button_onr)
208
+
209
+ if st.session_state.onr:
210
+ # The message and nested widget will remain on the page
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':
217
+ #if onr:
218
+ # st.session_state['onr'] = True
219
+ # with st.sidebar:
220
+ # generate_pdf()
221
+ # st.session_state['reference'] = '/home/user/app/pdf2image/output.png'
222
+ # st.image(st.session_state['reference'])
223
+
224
+
225
+ if 'ontts' not in st.session_state:
226
+ st.session_state.ontts = False
227
+
228
+ def click_button_ontts():
229
+ st.session_state.ontts = True
230
+
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')
237
+ tts.write_to_fp(sound_file)
238
+ sound = AudioSegment.from_mp3("/home/user/app/audio/audio.mp3")
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':
246
+ # if ontts:
247
+ # with st.sidebar:
248
+ # with open('/home/user/app/audio/audio.mp3','wb') as sound_file:
249
+ # tts = gTTS(result['result'], lang='en', tld = 'co.in')
250
+ # tts.write_to_fp(sound_file)
251
+ # sound = AudioSegment.from_mp3("/home/user/app/audio/audio.mp3")
252
+ # sound.export("/home/user/app/audio/audio.wav", format="wav")
253
+ # st.session_state['audio'] = '/home/user/app/audio/audio.wav'
254
+ # st.audio(st.session_state['audio'])
255
 
256
  st.session_state.messages.append({"role": "assistant", "content": full_response})
257