diff --git a/.changeset/rare-cows-smile.md b/.changeset/rare-cows-smile.md deleted file mode 100644 index 6e733325bd..0000000000 --- a/.changeset/rare-cows-smile.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"livekit-agents": patch -"livekit-plugins-silero": minor ---- - -silero: support any sample rate diff --git a/.changeset/shiny-eyes-itch.md b/.changeset/shiny-eyes-itch.md deleted file mode 100644 index 710c807622..0000000000 --- a/.changeset/shiny-eyes-itch.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"livekit-plugins-openai": patch ---- - -Add Telnyx integration for LLM diff --git a/.changeset/warm-needles-change.md b/.changeset/warm-needles-change.md deleted file mode 100644 index 501a3862a8..0000000000 --- a/.changeset/warm-needles-change.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"livekit-plugins-silero": patch ---- - -silero: add prefix_padding_duration #801 diff --git a/examples/participant-entrypoint/requirements.txt b/examples/participant-entrypoint/requirements.txt index de0a3bbe8c..88844c739a 100644 --- a/examples/participant-entrypoint/requirements.txt +++ b/examples/participant-entrypoint/requirements.txt @@ -1 +1 @@ -livekit-agents>=0.9.1 +livekit-agents>=0.9.2 diff --git a/examples/simple-color/requirements.txt b/examples/simple-color/requirements.txt index de0a3bbe8c..88844c739a 100644 --- a/examples/simple-color/requirements.txt +++ b/examples/simple-color/requirements.txt @@ -1 +1 @@ -livekit-agents>=0.9.1 +livekit-agents>=0.9.2 diff --git a/examples/speech-to-text/requirements.txt b/examples/speech-to-text/requirements.txt index 50849c70bf..36ca2e642c 100644 --- a/examples/speech-to-text/requirements.txt +++ b/examples/speech-to-text/requirements.txt @@ -1,2 +1,2 @@ -livekit-agents>=0.9.1 +livekit-agents>=0.9.2 livekit-plugins-deepgram>=0.6.7 diff --git a/examples/text-to-speech/requirements.txt b/examples/text-to-speech/requirements.txt index 0deeab666e..d696720162 100644 --- a/examples/text-to-speech/requirements.txt +++ b/examples/text-to-speech/requirements.txt @@ -1,4 +1,4 @@ -livekit-agents>=0.9.1 -livekit-plugins-openai>=0.8.5 +livekit-agents>=0.9.2 +livekit-plugins-openai>=0.8.6 livekit-plugins-cartesia>=0.4.2 livekit-plugins-elevenlabs>=0.7.5 diff --git a/examples/voice-assistant/requirements.txt b/examples/voice-assistant/requirements.txt index cfc1858555..27bd7e2cda 100644 --- a/examples/voice-assistant/requirements.txt +++ b/examples/voice-assistant/requirements.txt @@ -1,6 +1,6 @@ -livekit-agents>=0.9.1 -livekit-plugins-openai>=0.8.5 +livekit-agents>=0.9.2 +livekit-plugins-openai>=0.8.6 livekit-plugins-deepgram>=0.6.7 -livekit-plugins-silero>=0.6.4 +livekit-plugins-silero>=0.7.0 python-dotenv~=1.0 aiofile~=3.8.8 diff --git a/livekit-agents/CHANGELOG.md b/livekit-agents/CHANGELOG.md index c3811944fa..ae19ede632 100644 --- a/livekit-agents/CHANGELOG.md +++ b/livekit-agents/CHANGELOG.md @@ -1,5 +1,11 @@ # livekit-agents +## 0.9.2 + +### Patch Changes + +- silero: support any sample rate - [#805](https://github.com/livekit/agents/pull/805) ([@theomonnom](https://github.com/theomonnom)) + ## 0.9.1 ### Patch Changes diff --git a/livekit-agents/livekit/agents/version.py b/livekit-agents/livekit/agents/version.py index a4aa3419ad..38c06b12f8 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.9.1" +__version__ = "0.9.2" diff --git a/livekit-agents/package.json b/livekit-agents/package.json index 5a2c08a36d..7d799bd5eb 100644 --- a/livekit-agents/package.json +++ b/livekit-agents/package.json @@ -1,5 +1,5 @@ { "name": "livekit-agents", "private": true, - "version": "0.9.1" + "version": "0.9.2" } diff --git a/livekit-plugins/livekit-plugins-openai/CHANGELOG.md b/livekit-plugins/livekit-plugins-openai/CHANGELOG.md index 9443592eb9..5b3d77de90 100644 --- a/livekit-plugins/livekit-plugins-openai/CHANGELOG.md +++ b/livekit-plugins/livekit-plugins-openai/CHANGELOG.md @@ -1,5 +1,11 @@ # livekit-plugins-openai +## 0.8.6 + +### Patch Changes + +- Add Telnyx integration for LLM - [#803](https://github.com/livekit/agents/pull/803) ([@jamestwhedbee](https://github.com/jamestwhedbee)) + ## 0.8.5 ### Patch Changes diff --git a/livekit-plugins/livekit-plugins-openai/livekit/plugins/openai/version.py b/livekit-plugins/livekit-plugins-openai/livekit/plugins/openai/version.py index 3292eba82e..93af66acd4 100644 --- a/livekit-plugins/livekit-plugins-openai/livekit/plugins/openai/version.py +++ b/livekit-plugins/livekit-plugins-openai/livekit/plugins/openai/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "0.8.5" +__version__ = "0.8.6" diff --git a/livekit-plugins/livekit-plugins-openai/package.json b/livekit-plugins/livekit-plugins-openai/package.json index b26e3713c0..06263f9746 100644 --- a/livekit-plugins/livekit-plugins-openai/package.json +++ b/livekit-plugins/livekit-plugins-openai/package.json @@ -1,5 +1,5 @@ { "name": "livekit-plugins-openai", "private": true, - "version": "0.8.5" + "version": "0.8.6" } diff --git a/livekit-plugins/livekit-plugins-silero/CHANGELOG.md b/livekit-plugins/livekit-plugins-silero/CHANGELOG.md index 5fd5671c57..e233a9d677 100644 --- a/livekit-plugins/livekit-plugins-silero/CHANGELOG.md +++ b/livekit-plugins/livekit-plugins-silero/CHANGELOG.md @@ -1,5 +1,15 @@ # livekit-plugins-silero +## 0.7.0 + +### Minor Changes + +- silero: support any sample rate - [#805](https://github.com/livekit/agents/pull/805) ([@theomonnom](https://github.com/theomonnom)) + +### Patch Changes + +- silero: add prefix_padding_duration #801 - [#805](https://github.com/livekit/agents/pull/805) ([@theomonnom](https://github.com/theomonnom)) + ## 0.6.4 ### Patch Changes diff --git a/livekit-plugins/livekit-plugins-silero/livekit/plugins/silero/version.py b/livekit-plugins/livekit-plugins-silero/livekit/plugins/silero/version.py index 4f1df5fb65..6d6d0deb77 100644 --- a/livekit-plugins/livekit-plugins-silero/livekit/plugins/silero/version.py +++ b/livekit-plugins/livekit-plugins-silero/livekit/plugins/silero/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "0.6.4" +__version__ = "0.7.0" diff --git a/livekit-plugins/livekit-plugins-silero/package.json b/livekit-plugins/livekit-plugins-silero/package.json index 5d0bc7ed42..cd630d8b37 100644 --- a/livekit-plugins/livekit-plugins-silero/package.json +++ b/livekit-plugins/livekit-plugins-silero/package.json @@ -1,5 +1,5 @@ { "name": "livekit-plugins-silero", "private": true, - "version": "0.6.4" + "version": "0.7.0" }