From 0f685455411b093140294b97e1f9dc153a3e9baa Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 22 Dec 2024 18:33:51 -0600 Subject: [PATCH] Version Packages (#1273) Co-authored-by: github-actions[bot] --- .changeset/curvy-knives-promise.md | 5 ---- .changeset/lazy-dragons-give.md | 5 ---- .changeset/pre.json | 25 ------------------- .../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 +-- .../voice-pipeline-agent/requirements.txt | 2 +- livekit-agents/CHANGELOG.md | 6 +++++ livekit-agents/livekit/agents/version.py | 2 +- livekit-agents/package.json | 2 +- .../livekit-plugins-openai/CHANGELOG.md | 6 +++++ .../livekit/plugins/openai/version.py | 2 +- .../livekit-plugins-openai/package.json | 2 +- 14 files changed, 22 insertions(+), 45 deletions(-) delete mode 100644 .changeset/curvy-knives-promise.md delete mode 100644 .changeset/lazy-dragons-give.md delete mode 100644 .changeset/pre.json diff --git a/.changeset/curvy-knives-promise.md b/.changeset/curvy-knives-promise.md deleted file mode 100644 index a4d79c4ca..000000000 --- a/.changeset/curvy-knives-promise.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"livekit-agents": patch ---- - -avoid duplicated chat ctx for function calls with messages diff --git a/.changeset/lazy-dragons-give.md b/.changeset/lazy-dragons-give.md deleted file mode 100644 index 6eb6a3db5..000000000 --- a/.changeset/lazy-dragons-give.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"livekit-plugins-openai": patch ---- - -fix unknown `metadata` & `store` fields on OpenAI-like API diff --git a/.changeset/pre.json b/.changeset/pre.json deleted file mode 100644 index c3a216b74..000000000 --- a/.changeset/pre.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "mode": "exit", - "tag": "dev", - "initialVersions": { - "livekit-agents": "0.12.3", - "livekit-plugins-anthropic": "0.2.8", - "livekit-plugins-assemblyai": "0.2.1", - "livekit-plugins-azure": "0.5.1", - "livekit-plugins-browser": "0.0.5", - "livekit-plugins-cartesia": "0.4.5", - "livekit-plugins-deepgram": "0.6.15", - "livekit-plugins-elevenlabs": "0.7.9", - "livekit-plugins-fal": "0.2.2", - "livekit-plugins-google": "0.8.1", - "livekit-plugins-llama-index": "0.2.2", - "livekit-plugins-minimal": "0.2.1", - "livekit-plugins-nltk": "0.7.3", - "livekit-plugins-openai": "0.10.11", - "livekit-plugins-playht": "1.0.3", - "livekit-plugins-rag": "0.2.3", - "livekit-plugins-silero": "0.7.4", - "livekit-plugins-turn-detector": "0.3.3" - }, - "changesets": [] -} diff --git a/examples/participant-entrypoint/requirements.txt b/examples/participant-entrypoint/requirements.txt index 53a52b16a..5e6395561 100644 --- a/examples/participant-entrypoint/requirements.txt +++ b/examples/participant-entrypoint/requirements.txt @@ -1,2 +1,2 @@ -livekit-agents>=0.12.3 +livekit-agents>=0.12.4 python-dotenv~=1.0 diff --git a/examples/simple-color/requirements.txt b/examples/simple-color/requirements.txt index 53a52b16a..5e6395561 100644 --- a/examples/simple-color/requirements.txt +++ b/examples/simple-color/requirements.txt @@ -1,2 +1,2 @@ -livekit-agents>=0.12.3 +livekit-agents>=0.12.4 python-dotenv~=1.0 diff --git a/examples/speech-to-text/requirements.txt b/examples/speech-to-text/requirements.txt index 53ee39eb8..0a18a4bb6 100644 --- a/examples/speech-to-text/requirements.txt +++ b/examples/speech-to-text/requirements.txt @@ -1,3 +1,3 @@ -livekit-agents>=0.12.3 +livekit-agents>=0.12.4 livekit-plugins-deepgram>=0.6.15 python-dotenv~=1.0 diff --git a/examples/text-to-speech/requirements.txt b/examples/text-to-speech/requirements.txt index e5e0d8ddd..6a534b331 100644 --- a/examples/text-to-speech/requirements.txt +++ b/examples/text-to-speech/requirements.txt @@ -1,5 +1,5 @@ -livekit-agents>=0.12.3 -livekit-plugins-openai>=0.10.11 +livekit-agents>=0.12.4 +livekit-plugins-openai>=0.10.12 livekit-plugins-cartesia>=0.4.5 livekit-plugins-elevenlabs>=0.7.9 python-dotenv~=1.0 diff --git a/examples/voice-pipeline-agent/requirements.txt b/examples/voice-pipeline-agent/requirements.txt index c8942df19..77975fb53 100644 --- a/examples/voice-pipeline-agent/requirements.txt +++ b/examples/voice-pipeline-agent/requirements.txt @@ -1,4 +1,4 @@ -livekit-agents>=0.12.3 +livekit-agents>=0.12.4 livekit-plugins-deepgram>=0.6.15 livekit-plugins-google>=0.8.1 livekit-plugins-openai[vertex]>=0.10.10 diff --git a/livekit-agents/CHANGELOG.md b/livekit-agents/CHANGELOG.md index 83a2959c1..5bd84faf9 100644 --- a/livekit-agents/CHANGELOG.md +++ b/livekit-agents/CHANGELOG.md @@ -1,5 +1,11 @@ # livekit-agents +## 0.12.4 + +### Patch Changes + +- avoid duplicated chat ctx for function calls with messages - [#1254](https://github.com/livekit/agents/pull/1254) ([@longcw](https://github.com/longcw)) + ## 0.12.3 ### Patch Changes diff --git a/livekit-agents/livekit/agents/version.py b/livekit-agents/livekit/agents/version.py index 55829dea7..ee001ea03 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.3" +__version__ = "0.12.4" diff --git a/livekit-agents/package.json b/livekit-agents/package.json index c23feb751..212896f2b 100644 --- a/livekit-agents/package.json +++ b/livekit-agents/package.json @@ -1,5 +1,5 @@ { "name": "livekit-agents", "private": true, - "version": "0.12.3" + "version": "0.12.4" } diff --git a/livekit-plugins/livekit-plugins-openai/CHANGELOG.md b/livekit-plugins/livekit-plugins-openai/CHANGELOG.md index d9f42cc0c..02ff2f06f 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.10.12 + +### Patch Changes + +- fix unknown `metadata` & `store` fields on OpenAI-like API - [#1276](https://github.com/livekit/agents/pull/1276) ([@theomonnom](https://github.com/theomonnom)) + ## 0.10.11 ### 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 613650a21..16e535380 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.10.11" +__version__ = "0.10.12" diff --git a/livekit-plugins/livekit-plugins-openai/package.json b/livekit-plugins/livekit-plugins-openai/package.json index a5087740b..bfe2370d0 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.10.11" + "version": "0.10.12" }