test-error / app.pyx
freddyaboulton's picture
Create app.pyx
4eef939 verified
raw
history blame
240 Bytes
from fastrtc import Stream, ReplyOnPause
from numpy import np
def echo(audio: tuple[int, np.ndarray]) -> tuple[int, np.ndarray]:
yield audio
stream = Stream(ReplyOnPause(echo), modality="audio", mode="send-receive")
stream.ui.launch()