diff --git a/.changeset/giant-ways-invite.md b/.changeset/giant-ways-invite.md deleted file mode 100644 index 5644cb581..000000000 --- a/.changeset/giant-ways-invite.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -"livekit-plugins-assemblyai": patch -"livekit-plugins-deepgram": patch -"livekit-plugins-google": patch -"livekit-plugins-azure": patch ---- - -fix: Ensure STT exceptions are being propagated diff --git a/.changeset/hot-trainers-press.md b/.changeset/hot-trainers-press.md deleted file mode 100644 index 326150914..000000000 --- a/.changeset/hot-trainers-press.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"livekit-plugins-assemblyai": patch ---- - -assemblyai: encode boost words diff --git a/.changeset/silent-oranges-warn.md b/.changeset/silent-oranges-warn.md deleted file mode 100644 index e7bcd0189..000000000 --- a/.changeset/silent-oranges-warn.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"livekit-agents": patch ---- - -improve interruption handling, avoid agent from getting stuck diff --git a/.changeset/tricky-spiders-change.md b/.changeset/tricky-spiders-change.md deleted file mode 100644 index a017624fc..000000000 --- a/.changeset/tricky-spiders-change.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"livekit-plugins-turn-detector": patch ---- - -fix int32/64 errors on Windows diff --git a/examples/participant-entrypoint/requirements.txt b/examples/participant-entrypoint/requirements.txt index a92be36b8..77c8959d1 100644 --- a/examples/participant-entrypoint/requirements.txt +++ b/examples/participant-entrypoint/requirements.txt @@ -1,2 +1,2 @@ -livekit-agents>=0.12.5 +livekit-agents>=0.12.6 python-dotenv~=1.0 diff --git a/examples/simple-color/requirements.txt b/examples/simple-color/requirements.txt index a92be36b8..77c8959d1 100644 --- a/examples/simple-color/requirements.txt +++ b/examples/simple-color/requirements.txt @@ -1,2 +1,2 @@ -livekit-agents>=0.12.5 +livekit-agents>=0.12.6 python-dotenv~=1.0 diff --git a/examples/speech-to-text/requirements.txt b/examples/speech-to-text/requirements.txt index e58a682b3..b9f8e9fb0 100644 --- a/examples/speech-to-text/requirements.txt +++ b/examples/speech-to-text/requirements.txt @@ -1,3 +1,3 @@ -livekit-agents>=0.12.5 -livekit-plugins-deepgram>=0.6.15 +livekit-agents>=0.12.6 +livekit-plugins-deepgram>=0.6.16 python-dotenv~=1.0 diff --git a/examples/text-to-speech/requirements.txt b/examples/text-to-speech/requirements.txt index f025ab277..1e4ae42fc 100644 --- a/examples/text-to-speech/requirements.txt +++ b/examples/text-to-speech/requirements.txt @@ -1,4 +1,4 @@ -livekit-agents>=0.12.5 +livekit-agents>=0.12.6 livekit-plugins-openai>=0.10.12 livekit-plugins-cartesia>=0.4.5 livekit-plugins-elevenlabs>=0.7.9 diff --git a/examples/voice-pipeline-agent/requirements.txt b/examples/voice-pipeline-agent/requirements.txt index 481cb0136..5155a5b8a 100644 --- a/examples/voice-pipeline-agent/requirements.txt +++ b/examples/voice-pipeline-agent/requirements.txt @@ -1,6 +1,6 @@ -livekit-agents>=0.12.5 -livekit-plugins-deepgram>=0.6.15 -livekit-plugins-google>=0.8.1 +livekit-agents>=0.12.6 +livekit-plugins-deepgram>=0.6.16 +livekit-plugins-google>=0.8.2 livekit-plugins-openai[vertex]>=0.10.10 livekit-plugins-silero>=0.7.4 livekit-plugins-rag>=0.2.3 diff --git a/livekit-agents/CHANGELOG.md b/livekit-agents/CHANGELOG.md index b04f10f1d..6261711f1 100644 --- a/livekit-agents/CHANGELOG.md +++ b/livekit-agents/CHANGELOG.md @@ -1,5 +1,11 @@ # livekit-agents +## 0.12.6 + +### Patch Changes + +- improve interruption handling, avoid agent from getting stuck - [#1290](https://github.com/livekit/agents/pull/1290) ([@davidzhao](https://github.com/davidzhao)) + ## 0.12.5 ### Patch Changes diff --git a/livekit-agents/livekit/agents/version.py b/livekit-agents/livekit/agents/version.py index 93e989e31..0696f486e 100644 --- a/livekit-agents/livekit/agents/version.py +++ b/livekit-agents/livekit/agents/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "0.12.5" +__version__ = "0.12.6" diff --git a/livekit-agents/package.json b/livekit-agents/package.json index 4986b2889..c321ac852 100644 --- a/livekit-agents/package.json +++ b/livekit-agents/package.json @@ -1,5 +1,5 @@ { "name": "livekit-agents", "private": true, - "version": "0.12.5" + "version": "0.12.6" } diff --git a/livekit-plugins/livekit-plugins-assemblyai/CHANGELOG.md b/livekit-plugins/livekit-plugins-assemblyai/CHANGELOG.md index 5a5f68908..71d63e941 100644 --- a/livekit-plugins/livekit-plugins-assemblyai/CHANGELOG.md +++ b/livekit-plugins/livekit-plugins-assemblyai/CHANGELOG.md @@ -1,5 +1,13 @@ # livekit-plugins-assemblyai +## 0.2.2 + +### Patch Changes + +- fix: Ensure STT exceptions are being propagated - [#1291](https://github.com/livekit/agents/pull/1291) ([@davidzhao](https://github.com/davidzhao)) + +- assemblyai: encode boost words - [#1284](https://github.com/livekit/agents/pull/1284) ([@jmugicagonz](https://github.com/jmugicagonz)) + ## 0.2.1 ### Patch Changes diff --git a/livekit-plugins/livekit-plugins-assemblyai/livekit/plugins/assemblyai/version.py b/livekit-plugins/livekit-plugins-assemblyai/livekit/plugins/assemblyai/version.py index 875ee5214..2985d9da1 100644 --- a/livekit-plugins/livekit-plugins-assemblyai/livekit/plugins/assemblyai/version.py +++ b/livekit-plugins/livekit-plugins-assemblyai/livekit/plugins/assemblyai/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "0.2.1" +__version__ = "0.2.2" diff --git a/livekit-plugins/livekit-plugins-assemblyai/package.json b/livekit-plugins/livekit-plugins-assemblyai/package.json index 992070917..8b0962663 100644 --- a/livekit-plugins/livekit-plugins-assemblyai/package.json +++ b/livekit-plugins/livekit-plugins-assemblyai/package.json @@ -1,5 +1,5 @@ { "name": "livekit-plugins-assemblyai", "private": true, - "version": "0.2.1" + "version": "0.2.2" } diff --git a/livekit-plugins/livekit-plugins-azure/CHANGELOG.md b/livekit-plugins/livekit-plugins-azure/CHANGELOG.md index 5d4ab532b..414181cbd 100644 --- a/livekit-plugins/livekit-plugins-azure/CHANGELOG.md +++ b/livekit-plugins/livekit-plugins-azure/CHANGELOG.md @@ -1,5 +1,11 @@ # livekit-plugins-azure +## 0.5.2 + +### Patch Changes + +- fix: Ensure STT exceptions are being propagated - [#1291](https://github.com/livekit/agents/pull/1291) ([@davidzhao](https://github.com/davidzhao)) + ## 0.5.1 ### Patch Changes diff --git a/livekit-plugins/livekit-plugins-azure/livekit/plugins/azure/version.py b/livekit-plugins/livekit-plugins-azure/livekit/plugins/azure/version.py index 79283902f..ec65e487a 100644 --- a/livekit-plugins/livekit-plugins-azure/livekit/plugins/azure/version.py +++ b/livekit-plugins/livekit-plugins-azure/livekit/plugins/azure/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "0.5.1" +__version__ = "0.5.2" diff --git a/livekit-plugins/livekit-plugins-azure/package.json b/livekit-plugins/livekit-plugins-azure/package.json index cdd81c035..45561032c 100644 --- a/livekit-plugins/livekit-plugins-azure/package.json +++ b/livekit-plugins/livekit-plugins-azure/package.json @@ -1,5 +1,5 @@ { "name": "livekit-plugins-azure", "private": true, - "version": "0.5.1" + "version": "0.5.2" } diff --git a/livekit-plugins/livekit-plugins-deepgram/CHANGELOG.md b/livekit-plugins/livekit-plugins-deepgram/CHANGELOG.md index 9c624c19f..617d61f38 100644 --- a/livekit-plugins/livekit-plugins-deepgram/CHANGELOG.md +++ b/livekit-plugins/livekit-plugins-deepgram/CHANGELOG.md @@ -1,5 +1,11 @@ # livekit-plugins-deepgram +## 0.6.16 + +### Patch Changes + +- fix: Ensure STT exceptions are being propagated - [#1291](https://github.com/livekit/agents/pull/1291) ([@davidzhao](https://github.com/davidzhao)) + ## 0.6.15 ### Patch Changes diff --git a/livekit-plugins/livekit-plugins-deepgram/livekit/plugins/deepgram/version.py b/livekit-plugins/livekit-plugins-deepgram/livekit/plugins/deepgram/version.py index c83922d4e..e1df9b637 100644 --- a/livekit-plugins/livekit-plugins-deepgram/livekit/plugins/deepgram/version.py +++ b/livekit-plugins/livekit-plugins-deepgram/livekit/plugins/deepgram/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "0.6.15" +__version__ = "0.6.16" diff --git a/livekit-plugins/livekit-plugins-deepgram/package.json b/livekit-plugins/livekit-plugins-deepgram/package.json index 65cf7a26a..3a0a81159 100644 --- a/livekit-plugins/livekit-plugins-deepgram/package.json +++ b/livekit-plugins/livekit-plugins-deepgram/package.json @@ -1,5 +1,5 @@ { "name": "livekit-plugins-deepgram", "private": true, - "version": "0.6.15" + "version": "0.6.16" } diff --git a/livekit-plugins/livekit-plugins-google/CHANGELOG.md b/livekit-plugins/livekit-plugins-google/CHANGELOG.md index 82ccd17ff..3988aed0b 100644 --- a/livekit-plugins/livekit-plugins-google/CHANGELOG.md +++ b/livekit-plugins/livekit-plugins-google/CHANGELOG.md @@ -1,5 +1,11 @@ # livekit-plugins-google +## 0.8.2 + +### Patch Changes + +- fix: Ensure STT exceptions are being propagated - [#1291](https://github.com/livekit/agents/pull/1291) ([@davidzhao](https://github.com/davidzhao)) + ## 0.8.1 ### Patch Changes diff --git a/livekit-plugins/livekit-plugins-google/livekit/plugins/google/version.py b/livekit-plugins/livekit-plugins-google/livekit/plugins/google/version.py index eb38535e3..7c3dfeb0f 100644 --- a/livekit-plugins/livekit-plugins-google/livekit/plugins/google/version.py +++ b/livekit-plugins/livekit-plugins-google/livekit/plugins/google/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "0.8.1" +__version__ = "0.8.2" diff --git a/livekit-plugins/livekit-plugins-google/package.json b/livekit-plugins/livekit-plugins-google/package.json index c79ee66c4..b070a70b9 100644 --- a/livekit-plugins/livekit-plugins-google/package.json +++ b/livekit-plugins/livekit-plugins-google/package.json @@ -1,5 +1,5 @@ { "name": "livekit-plugins-google", "private": true, - "version": "0.8.1" + "version": "0.8.2" } diff --git a/livekit-plugins/livekit-plugins-turn-detector/CHANGELOG.md b/livekit-plugins/livekit-plugins-turn-detector/CHANGELOG.md index 2d38bf347..46a9a7fe5 100644 --- a/livekit-plugins/livekit-plugins-turn-detector/CHANGELOG.md +++ b/livekit-plugins/livekit-plugins-turn-detector/CHANGELOG.md @@ -1,5 +1,11 @@ # livekit-plugins-eou +## 0.3.5 + +### Patch Changes + +- fix int32/64 errors on Windows - [#1285](https://github.com/livekit/agents/pull/1285) ([@nbsp](https://github.com/nbsp)) + ## 0.3.4 ### Patch Changes diff --git a/livekit-plugins/livekit-plugins-turn-detector/livekit/plugins/turn_detector/version.py b/livekit-plugins/livekit-plugins-turn-detector/livekit/plugins/turn_detector/version.py index bcfe9b179..4be9d79b7 100644 --- a/livekit-plugins/livekit-plugins-turn-detector/livekit/plugins/turn_detector/version.py +++ b/livekit-plugins/livekit-plugins-turn-detector/livekit/plugins/turn_detector/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "0.3.4" +__version__ = "0.3.5" diff --git a/livekit-plugins/livekit-plugins-turn-detector/package.json b/livekit-plugins/livekit-plugins-turn-detector/package.json index 82d16bb89..264da83bf 100644 --- a/livekit-plugins/livekit-plugins-turn-detector/package.json +++ b/livekit-plugins/livekit-plugins-turn-detector/package.json @@ -1,5 +1,5 @@ { "name": "livekit-plugins-turn-detector", "private": true, - "version": "0.3.4" + "version": "0.3.5" }