Spaces:
Sleeping
Sleeping
File size: 273 Bytes
b001436 4eef939 397a04f 4eef939 df2946f 17af4e2 4eef939 |
1 2 3 4 5 6 7 8 9 |
from fastrtc import Stream, ReplyOnPause, get_hf_turn_credentials
def echo(audio):
yield audio
print(get_hf_turn_credentials())
stream = Stream(ReplyOnPause(echo), modality="audio", mode="send-receive", rtc_configuration=get_hf_turn_credentials())
stream.ui.launch() |