vishwask commited on
Commit
bc73844
·
1 Parent(s): 37155db

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -8
app.py CHANGED
@@ -196,23 +196,23 @@ if prompt := st.chat_input("How can I help you today?"):
196
  if "audio" not in st.session_state:
197
  st.session_state.audio = False
198
 
199
-
200
- with st.sidebar:
201
- col1, col2 = st.columns(2)
202
- choice = st.radio("References and TTS",["Reference" , 'TTS'])
203
- if choice == 'Reference':
204
  generate_pdf()
205
  st.session_state['reference'] = '/home/user/app/pdf2image/output.png'
206
- col1.image(st.session_state['reference'])
207
 
208
- if choice == 'TTS':
 
209
  with open('/home/user/app/audio/audio.mp3','wb') as sound_file:
210
  tts = gTTS(result['result'], lang='en', tld = 'co.in')
211
  tts.write_to_fp(sound_file)
212
  sound = AudioSegment.from_mp3("/home/user/app/audio/audio.mp3")
213
  sound.export("/home/user/app/audio/audio.wav", format="wav")
214
  st.session_state['audio'] = '/home/user/app/audio/audio.wav'
215
- col2.audio(st.session_state['audio'])
216
 
217
  st.session_state.messages.append({"role": "assistant", "content": full_response})
218
 
 
196
  if "audio" not in st.session_state:
197
  st.session_state.audio = False
198
 
199
+ choice = st.radio("References and TTS",["Reference" , 'TTS'], index='None')
200
+
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')
211
  tts.write_to_fp(sound_file)
212
  sound = AudioSegment.from_mp3("/home/user/app/audio/audio.mp3")
213
  sound.export("/home/user/app/audio/audio.wav", format="wav")
214
  st.session_state['audio'] = '/home/user/app/audio/audio.wav'
215
+ st.audio(st.session_state['audio'])
216
 
217
  st.session_state.messages.append({"role": "assistant", "content": full_response})
218