diff --git a/CHANGELOG.md b/CHANGELOG.md index 46a4082eb..5bcb83279 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -115,6 +115,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 removed in a future version. Use the `/start` endpoint in its place. In the meantime, both endpoints work and deliver equivalent functionality. +### Other + +- Added `07aa-interruptible-soniox.py`, `07ab-interruptible-inworld-http.py`, + `07ac-interruptible-asyncai.py` and `07ac-interruptible-asyncai-http.py` + release evals. + ## [0.0.77] - 2025-07-31 ### Added diff --git a/scripts/evals/run-release-evals.py b/scripts/evals/run-release-evals.py index 5353de9b2..202fe905b 100644 --- a/scripts/evals/run-release-evals.py +++ b/scripts/evals/run-release-evals.py @@ -40,6 +40,10 @@ TESTS_07 = [ ("07-interruptible.py", PROMPT_SIMPLE_MATH, None), ("07-interruptible-cartesia-http.py", PROMPT_SIMPLE_MATH, None), ("07a-interruptible-speechmatics.py", PROMPT_SIMPLE_MATH, None), + ("07aa-interruptible-soniox.py", PROMPT_SIMPLE_MATH, None), + ("07ab-interruptible-inworld-http.py", PROMPT_SIMPLE_MATH, None), + ("07ac-interruptible-asyncai.py", PROMPT_SIMPLE_MATH, None), + ("07ac-interruptible-asyncai-http.py", PROMPT_SIMPLE_MATH, None), ("07b-interruptible-langchain.py", PROMPT_SIMPLE_MATH, None), ("07c-interruptible-deepgram.py", PROMPT_SIMPLE_MATH, None), ("07d-interruptible-elevenlabs.py", PROMPT_SIMPLE_MATH, None), diff --git a/src/pipecat/services/soniox/stt.py b/src/pipecat/services/soniox/stt.py index d62da9ace..8121b1d74 100644 --- a/src/pipecat/services/soniox/stt.py +++ b/src/pipecat/services/soniox/stt.py @@ -284,7 +284,7 @@ class SonioxSTTService(STTService): """Connection has to be open all the time.""" try: while True: - logger.debug("Sending keepalive message") + logger.trace("Sending keepalive message") if self._websocket and self._websocket.state is State.OPEN: await self._websocket.send(KEEPALIVE_MESSAGE) else: