Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -97,9 +97,9 @@ def synthesise(text):
|
|
97 |
|
98 |
|
99 |
if __name__ == "__main__":
|
100 |
-
launch_fn()
|
101 |
-
transcription = transcribe()
|
102 |
-
response = query(transcription)
|
103 |
-
audio = synthesise(response)
|
104 |
|
105 |
-
Audio(audio, rate=16000, autoplay=True)
|
|
|
97 |
|
98 |
|
99 |
if __name__ == "__main__":
|
100 |
+
launch_fn(debug=True)
|
101 |
+
# transcription = transcribe()
|
102 |
+
# response = query(transcription)
|
103 |
+
# audio = synthesise(response)
|
104 |
|
105 |
+
# Audio(audio, rate=16000, autoplay=True)
|