Update app.py
Browse files
app.py
CHANGED
@@ -196,15 +196,19 @@ 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 |
-
choice = st.radio(label ="References and TTS", options =["Reference" , 'TTS']
|
200 |
|
201 |
-
|
|
|
|
|
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 |
-
|
|
|
|
|
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')
|
|
|
196 |
if "audio" not in st.session_state:
|
197 |
st.session_state.audio = False
|
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')
|