Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -63,7 +63,7 @@ def transcribe(audio):
|
|
63 |
chat_transcript = ""
|
64 |
for message in messages:
|
65 |
if message['role'] != 'system':
|
66 |
-
chat_transcript += '
|
67 |
|
68 |
return chat_transcript,'output.wav'
|
69 |
|
|
|
63 |
chat_transcript = ""
|
64 |
for message in messages:
|
65 |
if message['role'] != 'system':
|
66 |
+
chat_transcript += message['role'] + ": " + message['content'] + "\n\n"
|
67 |
|
68 |
return chat_transcript,'output.wav'
|
69 |
|