santoshNA commited on
Commit
8666b71
·
1 Parent(s): a31bc19

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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(story)
72
 
73
  st.text('Processing text2speech...')
74
- text2speech(story)
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__':