kunishou commited on
Commit
103cb1b
·
1 Parent(s): 112f464

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -12,7 +12,7 @@ import boto3
12
  # region_name='ap-northeast-1'
13
  # )
14
 
15
- def create_meeting_summary(openai_key, uploaded_audio):
16
  openai.api_key = os.environ["OPENAI_API_KEY"]
17
  transcript = openai.Audio.transcribe("whisper-1", open(uploaded_audio, "rb"), response_format="verbose_json")
18
  transcript_text = ""
 
12
  # region_name='ap-northeast-1'
13
  # )
14
 
15
+ def create_meeting_summary(uploaded_audio):
16
  openai.api_key = os.environ["OPENAI_API_KEY"]
17
  transcript = openai.Audio.transcribe("whisper-1", open(uploaded_audio, "rb"), response_format="verbose_json")
18
  transcript_text = ""