Update app.py
Browse files
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
|
202 |
-
|
203 |
-
|
204 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
205 |
generate_pdf()
|
206 |
st.session_state['reference'] = '/home/user/app/pdf2image/output.png'
|
207 |
st.image(st.session_state['reference'])
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
208 |
|
209 |
-
|
210 |
-
#
|
211 |
-
if
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
|
|
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 |
|