Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -3,5 +3,5 @@ from fastrtc import Stream, ReplyOnPause, get_hf_turn_credentials
|
|
3 |
def echo(audio):
|
4 |
yield audio
|
5 |
|
6 |
-
stream = Stream(ReplyOnPause(echo), modality="audio", mode="send-receive",
|
7 |
stream.ui.launch()
|
|
|
3 |
def echo(audio):
|
4 |
yield audio
|
5 |
|
6 |
+
stream = Stream(ReplyOnPause(echo), modality="audio", mode="send-receive", rtc_configuration=get_hf_turn_credentials())
|
7 |
stream.ui.launch()
|