Update app.py
Browse files
app.py
CHANGED
@@ -203,15 +203,16 @@ if prompt := st.chat_input("How can I help you today?"):
|
|
203 |
|
204 |
def click_button_onr():
|
205 |
st.session_state.onr = True
|
|
|
|
|
|
|
|
|
|
|
|
|
206 |
|
207 |
st.button('Ref', on_click=click_button_onr)
|
208 |
|
209 |
-
|
210 |
-
with st.sidebar:
|
211 |
-
st.write('ref')
|
212 |
-
generate_pdf()
|
213 |
-
st.session_state['reference'] = '/home/user/app/pdf2image/output.png'
|
214 |
-
st.image(st.session_state['reference'])
|
215 |
|
216 |
#onr = st.toggle('Reference',key='onr')
|
217 |
#if choice == 'Reference':
|
@@ -223,25 +224,25 @@ if prompt := st.chat_input("How can I help you today?"):
|
|
223 |
# st.image(st.session_state['reference'])
|
224 |
|
225 |
|
226 |
-
if 'ontts' not in st.session_state:
|
227 |
-
|
228 |
|
229 |
-
def click_button_ontts():
|
230 |
-
|
231 |
|
232 |
-
st.button('Audio', on_click=click_button_ontts)
|
233 |
|
234 |
-
if st.session_state.ontts:
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
|
246 |
|
247 |
# ontts = st.toggle('Audio')
|
|
|
203 |
|
204 |
def click_button_onr():
|
205 |
st.session_state.onr = True
|
206 |
+
if st.session_state.onr:
|
207 |
+
with st.sidebar:
|
208 |
+
st.write('ref')
|
209 |
+
generate_pdf()
|
210 |
+
st.session_state['reference'] = '/home/user/app/pdf2image/output.png'
|
211 |
+
st.image(st.session_state['reference'])
|
212 |
|
213 |
st.button('Ref', on_click=click_button_onr)
|
214 |
|
215 |
+
|
|
|
|
|
|
|
|
|
|
|
216 |
|
217 |
#onr = st.toggle('Reference',key='onr')
|
218 |
#if choice == 'Reference':
|
|
|
224 |
# st.image(st.session_state['reference'])
|
225 |
|
226 |
|
227 |
+
# if 'ontts' not in st.session_state:
|
228 |
+
# st.session_state.ontts = False
|
229 |
|
230 |
+
# def click_button_ontts():
|
231 |
+
# st.session_state.ontts = True
|
232 |
|
233 |
+
# st.button('Audio', on_click=click_button_ontts)
|
234 |
|
235 |
+
# if st.session_state.ontts:
|
236 |
+
# with st.sidebar:
|
237 |
+
# st.write('audio')
|
238 |
+
# # The message and nested widget will remain on the page
|
239 |
+
# with open('/home/user/app/audio/audio.mp3','wb') as sound_file:
|
240 |
+
# tts = gTTS(result['result'], lang='en', tld = 'co.in')
|
241 |
+
# tts.write_to_fp(sound_file)
|
242 |
+
# sound = AudioSegment.from_mp3("/home/user/app/audio/audio.mp3")
|
243 |
+
# sound.export("/home/user/app/audio/audio.wav", format="wav")
|
244 |
+
# st.session_state['audio'] = '/home/user/app/audio/audio.wav'
|
245 |
+
# st.audio(st.session_state['audio'])
|
246 |
|
247 |
|
248 |
# ontts = st.toggle('Audio')
|