vishwask commited on
Commit
8d758fc
·
1 Parent(s): 7154739

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -4
app.py CHANGED
@@ -197,14 +197,16 @@ if prompt := st.chat_input("How can I help you today?"):
197
 
198
 
199
 
200
- choice = st.radio("References and TTS",["Reference" , 'TTS'])
201
- if choice == 'Reference':
 
202
  with st.sidebar:
203
  generate_pdf()
204
  st.session_state['reference'] = '/home/user/app/pdf2image/output.png'
205
  st.image(st.session_state['reference'])
206
-
207
- if choice == 'TTS':
 
208
  with st.sidebar:
209
  with open('/home/user/app/audio/audio.mp3','wb') as sound_file:
210
  tts = gTTS(result['result'], lang='en', tld = 'co.in')
 
197
 
198
 
199
 
200
+ #choice = st.radio("References and TTS",["Reference" , 'TTS'])
201
+ on_ref = st.toggle('Reference')
202
+ if on_ref:
203
  with st.sidebar:
204
  generate_pdf()
205
  st.session_state['reference'] = '/home/user/app/pdf2image/output.png'
206
  st.image(st.session_state['reference'])
207
+
208
+ on_TTS = st.toggle('TTS')
209
+ if on_TTS:
210
  with st.sidebar:
211
  with open('/home/user/app/audio/audio.mp3','wb') as sound_file:
212
  tts = gTTS(result['result'], lang='en', tld = 'co.in')