Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -3,5 +3,7 @@ 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", rtc_configuration=get_hf_turn_credentials())
|
7 |
stream.ui.launch()
|
|
|
3 |
def echo(audio):
|
4 |
yield audio
|
5 |
|
6 |
+
print(get_hf_turn_credentials())
|
7 |
+
|
8 |
stream = Stream(ReplyOnPause(echo), modality="audio", mode="send-receive", rtc_configuration=get_hf_turn_credentials())
|
9 |
stream.ui.launch()
|