From 569ffa1f14b91e494cb6f6abd59d00afe0d10a8f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 26 Sep 2024 14:43:02 -0700 Subject: [PATCH] Version Packages (#787) Co-authored-by: github-actions[bot] --- .changeset/moody-doors-poke.md | 5 ----- .changeset/tidy-years-refuse.md | 6 ------ 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 | 4 ++-- livekit-agents/CHANGELOG.md | 8 ++++++++ livekit-agents/livekit/agents/version.py | 2 +- livekit-agents/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 +- 13 files changed, 25 insertions(+), 22 deletions(-) delete mode 100644 .changeset/moody-doors-poke.md delete mode 100644 .changeset/tidy-years-refuse.md diff --git a/.changeset/moody-doors-poke.md b/.changeset/moody-doors-poke.md deleted file mode 100644 index ca70304ed..000000000 --- a/.changeset/moody-doors-poke.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"livekit-agents": patch ---- - -fix VoiceAssisstant being stuck when interrupting before user speech is committed diff --git a/.changeset/tidy-years-refuse.md b/.changeset/tidy-years-refuse.md deleted file mode 100644 index 5f22709af..000000000 --- a/.changeset/tidy-years-refuse.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"livekit-agents": patch -"livekit-plugins-openai": patch ---- - -Fix function for OpenAI Assistants diff --git a/examples/participant-entrypoint/requirements.txt b/examples/participant-entrypoint/requirements.txt index 468a9e5d2..de0a3bbe8 100644 --- a/examples/participant-entrypoint/requirements.txt +++ b/examples/participant-entrypoint/requirements.txt @@ -1 +1 @@ -livekit-agents>=0.9.0 +livekit-agents>=0.9.1 diff --git a/examples/simple-color/requirements.txt b/examples/simple-color/requirements.txt index 468a9e5d2..de0a3bbe8 100644 --- a/examples/simple-color/requirements.txt +++ b/examples/simple-color/requirements.txt @@ -1 +1 @@ -livekit-agents>=0.9.0 +livekit-agents>=0.9.1 diff --git a/examples/speech-to-text/requirements.txt b/examples/speech-to-text/requirements.txt index eb367925c..50849c70b 100644 --- a/examples/speech-to-text/requirements.txt +++ b/examples/speech-to-text/requirements.txt @@ -1,2 +1,2 @@ -livekit-agents>=0.9.0 +livekit-agents>=0.9.1 livekit-plugins-deepgram>=0.6.7 diff --git a/examples/text-to-speech/requirements.txt b/examples/text-to-speech/requirements.txt index e81e20304..0deeab666 100644 --- a/examples/text-to-speech/requirements.txt +++ b/examples/text-to-speech/requirements.txt @@ -1,4 +1,4 @@ -livekit-agents>=0.9.0 -livekit-plugins-openai>=0.8.4 +livekit-agents>=0.9.1 +livekit-plugins-openai>=0.8.5 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 7071396dc..cfc185855 100644 --- a/examples/voice-assistant/requirements.txt +++ b/examples/voice-assistant/requirements.txt @@ -1,5 +1,5 @@ -livekit-agents>=0.9.0 -livekit-plugins-openai>=0.8.4 +livekit-agents>=0.9.1 +livekit-plugins-openai>=0.8.5 livekit-plugins-deepgram>=0.6.7 livekit-plugins-silero>=0.6.4 python-dotenv~=1.0 diff --git a/livekit-agents/CHANGELOG.md b/livekit-agents/CHANGELOG.md index 698682dc5..c3811944f 100644 --- a/livekit-agents/CHANGELOG.md +++ b/livekit-agents/CHANGELOG.md @@ -1,5 +1,13 @@ # livekit-agents +## 0.9.1 + +### Patch Changes + +- fix VoiceAssisstant being stuck when interrupting before user speech is committed - [#790](https://github.com/livekit/agents/pull/790) ([@coderlxn](https://github.com/coderlxn)) + +- Fix function for OpenAI Assistants - [#784](https://github.com/livekit/agents/pull/784) ([@keepingitneil](https://github.com/keepingitneil)) + ## 0.9.0 ### Minor Changes diff --git a/livekit-agents/livekit/agents/version.py b/livekit-agents/livekit/agents/version.py index 654ad56ec..a4aa3419a 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.0" +__version__ = "0.9.1" diff --git a/livekit-agents/package.json b/livekit-agents/package.json index 2327f51d3..5a2c08a36 100644 --- a/livekit-agents/package.json +++ b/livekit-agents/package.json @@ -1,5 +1,5 @@ { "name": "livekit-agents", "private": true, - "version": "0.9.0" + "version": "0.9.1" } diff --git a/livekit-plugins/livekit-plugins-openai/CHANGELOG.md b/livekit-plugins/livekit-plugins-openai/CHANGELOG.md index 686c38acf..9443592eb 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.5 + +### Patch Changes + +- Fix function for OpenAI Assistants - [#784](https://github.com/livekit/agents/pull/784) ([@keepingitneil](https://github.com/keepingitneil)) + ## 0.8.4 ### 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 bdeeae9e4..3292eba82 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.4" +__version__ = "0.8.5" diff --git a/livekit-plugins/livekit-plugins-openai/package.json b/livekit-plugins/livekit-plugins-openai/package.json index 20eeab2f4..b26e3713c 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.4" + "version": "0.8.5" }