msaelices commited on
Commit
2226010
β€’
1 Parent(s): fc2acc5

Fix a couple of typo errors

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -21,7 +21,7 @@ def main():
21
  title = 'πŸŽ™οΈ Meetings Note Taker πŸŽ™οΈ'
22
  st.title(title)
23
  st.write(
24
- 'Upload an audio file, transcribe it using Assembly.AI, and sgenerate meeting notes using your selected model.'
25
  )
26
 
27
  openai_api_key = os.environ.get('OPENAI_API_KEY') or st.text_input(
@@ -75,7 +75,7 @@ def main():
75
  st.markdown(f'### Summary:')
76
  st.write(summary)
77
  else:
78
- st.error('We need valid OpenAI and AssemblyAI API keys')
79
 
80
 
81
  if __name__ == '__main__':
 
21
  title = 'πŸŽ™οΈ Meetings Note Taker πŸŽ™οΈ'
22
  st.title(title)
23
  st.write(
24
+ 'Upload an audio file, transcribe it using WhisperX, GoogleCloud or Assembly.AI, and generate meeting notes using your selected model.'
25
  )
26
 
27
  openai_api_key = os.environ.get('OPENAI_API_KEY') or st.text_input(
 
75
  st.markdown(f'### Summary:')
76
  st.write(summary)
77
  else:
78
+ st.error('We need valid OpenAI API keys')
79
 
80
 
81
  if __name__ == '__main__':