Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -19,7 +19,8 @@ def create_meeting_summary(uploaded_audio):
|
|
19 |
for segment in transcript.segments:
|
20 |
transcript_text += f"{segment['text']}\n"
|
21 |
|
22 |
-
|
|
|
23 |
s3.put_object(Bucket=bucket_name, Key=file_name, Body=transcript_text)
|
24 |
|
25 |
download_url = os.environ["DOWNLOAD_URL"] + "test.txt"
|
|
|
19 |
for segment in transcript.segments:
|
20 |
transcript_text += f"{segment['text']}\n"
|
21 |
|
22 |
+
bucket_name = "ling-transcribe"
|
23 |
+
file_name = f"test.txt"
|
24 |
s3.put_object(Bucket=bucket_name, Key=file_name, Body=transcript_text)
|
25 |
|
26 |
download_url = os.environ["DOWNLOAD_URL"] + "test.txt"
|