fix small bug in README.md (#107)

This commit is contained in:
私は雨
2025-03-02 03:32:22 +08:00
committed by GitHub
parent 01c085ecb6
commit 91602f591a

View File

@@ -175,7 +175,7 @@ def echo(audio: tuple[int, np.ndarray]):
yield audio
stream = Stream(
handler=ReplyOnPause(detection),
handler=ReplyOnPause(echo),
modality="audio",
mode="send-receive",
)
@@ -314,4 +314,4 @@ async def _():
return HTMLResponse(content=open("index.html").read())
# uvicorn app:app --host 0.0.0.0 --port 8000
```
```