From f14803c46138b45486fa3c832b3c7314698f0a33 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 12 Dec 2024 09:13:56 +0000 Subject: [PATCH] Version Packages --- .changeset/early-guests-join.md | 5 ----- .changeset/ninety-items-yell.md | 5 ----- .changeset/shy-toys-fix.md | 5 ----- .changeset/yellow-berries-play.md | 5 ----- examples/participant-entrypoint/requirements.txt | 2 +- examples/simple-color/requirements.txt | 2 +- examples/speech-to-text/requirements.txt | 2 +- examples/text-to-speech/requirements.txt | 4 ++-- examples/voice-assistant/requirements.txt | 10 +++++----- livekit-agents/CHANGELOG.md | 8 ++++++++ livekit-agents/livekit/agents/version.py | 2 +- livekit-agents/package.json | 2 +- livekit-plugins/livekit-plugins-google/CHANGELOG.md | 6 ++++++ .../livekit/plugins/google/version.py | 2 +- livekit-plugins/livekit-plugins-google/package.json | 2 +- livekit-plugins/livekit-plugins-openai/CHANGELOG.md | 6 ++++++ .../livekit/plugins/openai/version.py | 2 +- livekit-plugins/livekit-plugins-openai/package.json | 2 +- 18 files changed, 36 insertions(+), 36 deletions(-) delete mode 100644 .changeset/early-guests-join.md delete mode 100644 .changeset/ninety-items-yell.md delete mode 100644 .changeset/shy-toys-fix.md delete mode 100644 .changeset/yellow-berries-play.md diff --git a/.changeset/early-guests-join.md b/.changeset/early-guests-join.md deleted file mode 100644 index 466ff1d52..000000000 --- a/.changeset/early-guests-join.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"livekit-plugins-google": patch ---- - -google-tts: ignore wav header diff --git a/.changeset/ninety-items-yell.md b/.changeset/ninety-items-yell.md deleted file mode 100644 index 7bea9e8fd..000000000 --- a/.changeset/ninety-items-yell.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"livekit-agents": patch ---- - -voiceassistant: add VoiceAssistantState diff --git a/.changeset/shy-toys-fix.md b/.changeset/shy-toys-fix.md deleted file mode 100644 index f0e48ee9c..000000000 --- a/.changeset/shy-toys-fix.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"livekit-agents": patch ---- - -fix non pickleable log diff --git a/.changeset/yellow-berries-play.md b/.changeset/yellow-berries-play.md deleted file mode 100644 index 2f94493c3..000000000 --- a/.changeset/yellow-berries-play.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"livekit-plugins-openai": patch ---- - -skip processing of choice.delta when it is None diff --git a/examples/participant-entrypoint/requirements.txt b/examples/participant-entrypoint/requirements.txt index 06f26d314..ac63eccfd 100644 --- a/examples/participant-entrypoint/requirements.txt +++ b/examples/participant-entrypoint/requirements.txt @@ -1 +1 @@ -livekit-agents>=0.8.10 +livekit-agents>=0.8.11 diff --git a/examples/simple-color/requirements.txt b/examples/simple-color/requirements.txt index 06f26d314..ac63eccfd 100644 --- a/examples/simple-color/requirements.txt +++ b/examples/simple-color/requirements.txt @@ -1 +1 @@ -livekit-agents>=0.8.10 +livekit-agents>=0.8.11 diff --git a/examples/speech-to-text/requirements.txt b/examples/speech-to-text/requirements.txt index 20ae46638..a6d52e3b0 100644 --- a/examples/speech-to-text/requirements.txt +++ b/examples/speech-to-text/requirements.txt @@ -1,2 +1,2 @@ -livekit-agents>=0.8.10 +livekit-agents>=0.8.11 livekit-plugins-deepgram>=0.6.6 diff --git a/examples/text-to-speech/requirements.txt b/examples/text-to-speech/requirements.txt index 35f8e966e..05afcf1e9 100644 --- a/examples/text-to-speech/requirements.txt +++ b/examples/text-to-speech/requirements.txt @@ -1,2 +1,2 @@ -livekit-agents>=0.8.10 -livekit-plugins-openai>=0.8.1 +livekit-agents>=0.8.11 +livekit-plugins-openai>=0.8.2 diff --git a/examples/voice-assistant/requirements.txt b/examples/voice-assistant/requirements.txt index 8bb7e66b6..8fed8906b 100644 --- a/examples/voice-assistant/requirements.txt +++ b/examples/voice-assistant/requirements.txt @@ -1,8 +1,8 @@ -livekit-agents~=0.8.10 -livekit-plugins-openai==0.8.1 -livekit-plugins-deepgram==0.6.6 -livekit-plugins-silero==0.6.4 +livekit-agents>=0.8.11 +livekit-plugins-openai>=0.8.2 +livekit-plugins-deepgram>=0.6.6 +livekit-plugins-silero>=0.6.4 python-dotenv~=1.0 aiofile~=3.8.8 requests~=2.32.3 -livekit-plugins-azure==0.3.1 +livekit-plugins-azure>=0.3.1 diff --git a/livekit-agents/CHANGELOG.md b/livekit-agents/CHANGELOG.md index 69e2687f2..db76afec1 100644 --- a/livekit-agents/CHANGELOG.md +++ b/livekit-agents/CHANGELOG.md @@ -1,5 +1,13 @@ # livekit-agents +## 0.8.11 + +### Patch Changes + +- voiceassistant: add VoiceAssistantState - [`c9aaecb60adedae53a32bf1d39f23413b832a2ba`](https://github.com/livekit/agents/commit/c9aaecb60adedae53a32bf1d39f23413b832a2ba) ([@lukasIO](https://github.com/lukasIO)) + +- fix non pickleable log - [`024b502b0dc8291a2ae26df566aa4f5da27991fc`](https://github.com/livekit/agents/commit/024b502b0dc8291a2ae26df566aa4f5da27991fc) ([@theomonnom](https://github.com/theomonnom)) + ## 0.8.10 ### Patch Changes diff --git a/livekit-agents/livekit/agents/version.py b/livekit-agents/livekit/agents/version.py index 9590d451e..feb20e6fe 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.8.10" +__version__ = "0.8.11" diff --git a/livekit-agents/package.json b/livekit-agents/package.json index 468382c3b..dda58c6d9 100644 --- a/livekit-agents/package.json +++ b/livekit-agents/package.json @@ -1,5 +1,5 @@ { "name": "livekit-agents", "private": true, - "version": "0.8.10" + "version": "0.8.11" } diff --git a/livekit-plugins/livekit-plugins-google/CHANGELOG.md b/livekit-plugins/livekit-plugins-google/CHANGELOG.md index aa876a6e5..f22811725 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.6.4 + +### Patch Changes + +- google-tts: ignore wav header - [`3fd86b3902c6546cb9851e84ae9b332bf6b06685`](https://github.com/livekit/agents/commit/3fd86b3902c6546cb9851e84ae9b332bf6b06685) ([@theomonnom](https://github.com/theomonnom)) + ## 0.6.3 ### 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 b315b98ad..4f1df5fb6 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.6.3" +__version__ = "0.6.4" diff --git a/livekit-plugins/livekit-plugins-google/package.json b/livekit-plugins/livekit-plugins-google/package.json index 09710e5da..0883bdb8d 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.6.3" + "version": "0.6.4" } diff --git a/livekit-plugins/livekit-plugins-openai/CHANGELOG.md b/livekit-plugins/livekit-plugins-openai/CHANGELOG.md index 872dfb625..b5b3d319b 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.2 + +### Patch Changes + +- skip processing of choice.delta when it is None - [`d0ce65a4452f4ff81fc53745e0ed3ee90f1aa0fa`](https://github.com/livekit/agents/commit/d0ce65a4452f4ff81fc53745e0ed3ee90f1aa0fa) ([@theomonnom](https://github.com/theomonnom)) + ## 0.8.1 ### 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 eb38535e3..7c3dfeb0f 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.1" +__version__ = "0.8.2" diff --git a/livekit-plugins/livekit-plugins-openai/package.json b/livekit-plugins/livekit-plugins-openai/package.json index 25d865a75..125c22b07 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.1" + "version": "0.8.2" }