Update app.py
Browse files
app.py
CHANGED
@@ -68,10 +68,10 @@ def main():
|
|
68 |
st.text('Generating description of given image...')
|
69 |
description = generate_description(caption)
|
70 |
with st.expander("Description"):
|
71 |
-
st.write(
|
72 |
|
73 |
st.text('Processing text2speech...')
|
74 |
-
text2speech(
|
75 |
st.audio("audio.flac")
|
76 |
|
77 |
if __name__ == '__main__':
|
|
|
68 |
st.text('Generating description of given image...')
|
69 |
description = generate_description(caption)
|
70 |
with st.expander("Description"):
|
71 |
+
st.write(description)
|
72 |
|
73 |
st.text('Processing text2speech...')
|
74 |
+
text2speech(description)
|
75 |
st.audio("audio.flac")
|
76 |
|
77 |
if __name__ == '__main__':
|