diff --git a/.changeset/angry-donuts-build.md b/.changeset/angry-donuts-build.md deleted file mode 100644 index a2b3a61ce..000000000 --- a/.changeset/angry-donuts-build.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"livekit-plugins-google": minor ---- - -support gemini LLM diff --git a/.changeset/chatty-coins-heal.md b/.changeset/chatty-coins-heal.md deleted file mode 100644 index cc749a481..000000000 --- a/.changeset/chatty-coins-heal.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"livekit-plugins-google": patch ---- - -fix: address breaking change from google-genai >= 0.3.0 diff --git a/.changeset/moody-tools-push.md b/.changeset/moody-tools-push.md deleted file mode 100644 index e2987ac40..000000000 --- a/.changeset/moody-tools-push.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"livekit-plugins-openai": patch -"livekit-agents": patch ---- - -add generate_reply api for multimodal agent diff --git a/.changeset/purple-years-deny.md b/.changeset/purple-years-deny.md deleted file mode 100644 index 0efbe33ea..000000000 --- a/.changeset/purple-years-deny.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"livekit-plugins-google": patch ---- - -gemini improvements: exception handling, transcription & Ensure contents.parts is non-empty in gemini contex diff --git a/.changeset/slimy-candles-agree.md b/.changeset/slimy-candles-agree.md deleted file mode 100644 index 3b2d8c374..000000000 --- a/.changeset/slimy-candles-agree.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"livekit-plugins-google": patch ---- - -support transcriber session for user/agent audio diff --git a/.changeset/smooth-windows-repeat.md b/.changeset/smooth-windows-repeat.md deleted file mode 100644 index 06df22120..000000000 --- a/.changeset/smooth-windows-repeat.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"livekit-plugins-elevenlabs": patch ---- - -add latest model by 11labs diff --git a/.changeset/strong-experts-grin.md b/.changeset/strong-experts-grin.md deleted file mode 100644 index 15cbee2db..000000000 --- a/.changeset/strong-experts-grin.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"livekit-plugins-playai": patch ---- - -fix: Avoid websocket reconnections for each request diff --git a/.changeset/tender-goats-sit.md b/.changeset/tender-goats-sit.md deleted file mode 100644 index 7dc96d24c..000000000 --- a/.changeset/tender-goats-sit.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"livekit-plugins-rime": minor ---- - -inital release diff --git a/.changeset/young-monkeys-allow.md b/.changeset/young-monkeys-allow.md deleted file mode 100644 index d009fed6e..000000000 --- a/.changeset/young-monkeys-allow.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"livekit-agents": patch ---- - -remove aiodns from livekit-agents diff --git a/examples/participant-entrypoint/requirements.txt b/examples/participant-entrypoint/requirements.txt index 1f51fb5dd..74184391b 100644 --- a/examples/participant-entrypoint/requirements.txt +++ b/examples/participant-entrypoint/requirements.txt @@ -1,2 +1,2 @@ -livekit-agents>=0.12.8 +livekit-agents>=0.12.9 python-dotenv~=1.0 diff --git a/examples/simple-color/requirements.txt b/examples/simple-color/requirements.txt index 1f51fb5dd..74184391b 100644 --- a/examples/simple-color/requirements.txt +++ b/examples/simple-color/requirements.txt @@ -1,2 +1,2 @@ -livekit-agents>=0.12.8 +livekit-agents>=0.12.9 python-dotenv~=1.0 diff --git a/examples/speech-to-text/requirements.txt b/examples/speech-to-text/requirements.txt index ce3c03747..5f5701f58 100644 --- a/examples/speech-to-text/requirements.txt +++ b/examples/speech-to-text/requirements.txt @@ -1,3 +1,3 @@ -livekit-agents>=0.12.8 +livekit-agents>=0.12.9 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 18788ff10..4d5ad45a2 100644 --- a/examples/text-to-speech/requirements.txt +++ b/examples/text-to-speech/requirements.txt @@ -1,5 +1,5 @@ -livekit-agents>=0.12.8 -livekit-plugins-openai>=0.10.15 +livekit-agents>=0.12.9 +livekit-plugins-openai>=0.10.16 livekit-plugins-cartesia>=0.4.6 -livekit-plugins-elevenlabs>=0.7.10 +livekit-plugins-elevenlabs>=0.7.11 python-dotenv~=1.0 diff --git a/examples/voice-pipeline-agent/requirements.txt b/examples/voice-pipeline-agent/requirements.txt index 09b221600..efe56af8a 100644 --- a/examples/voice-pipeline-agent/requirements.txt +++ b/examples/voice-pipeline-agent/requirements.txt @@ -1,6 +1,6 @@ -livekit-agents>=0.12.8 +livekit-agents>=0.12.9 livekit-plugins-deepgram>=0.6.16 -livekit-plugins-google>=0.9.1 +livekit-plugins-google>=0.10.0 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 30bec0ce7..d8de0a743 100644 --- a/livekit-agents/CHANGELOG.md +++ b/livekit-agents/CHANGELOG.md @@ -1,5 +1,13 @@ # livekit-agents +## 0.12.9 + +### Patch Changes + +- add generate_reply api for multimodal agent - [#1359](https://github.com/livekit/agents/pull/1359) ([@longcw](https://github.com/longcw)) + +- remove aiodns from livekit-agents - [#1368](https://github.com/livekit/agents/pull/1368) ([@theomonnom](https://github.com/theomonnom)) + ## 0.12.8 ### Patch Changes diff --git a/livekit-agents/livekit/agents/version.py b/livekit-agents/livekit/agents/version.py index b2ad44396..e8b0b8a81 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.8" +__version__ = "0.12.9" diff --git a/livekit-agents/package.json b/livekit-agents/package.json index 1332f4c18..6951209b2 100644 --- a/livekit-agents/package.json +++ b/livekit-agents/package.json @@ -1,5 +1,5 @@ { "name": "livekit-agents", "private": true, - "version": "0.12.8" + "version": "0.12.9" } diff --git a/livekit-plugins/livekit-plugins-elevenlabs/CHANGELOG.md b/livekit-plugins/livekit-plugins-elevenlabs/CHANGELOG.md index e39ff1934..ddc0bf553 100644 --- a/livekit-plugins/livekit-plugins-elevenlabs/CHANGELOG.md +++ b/livekit-plugins/livekit-plugins-elevenlabs/CHANGELOG.md @@ -1,5 +1,11 @@ # livekit-plugins-elevenlabs +## 0.7.11 + +### Patch Changes + +- add latest model by 11labs - [#1396](https://github.com/livekit/agents/pull/1396) ([@jayeshp19](https://github.com/jayeshp19)) + ## 0.7.10 ### Patch Changes diff --git a/livekit-plugins/livekit-plugins-elevenlabs/livekit/plugins/elevenlabs/version.py b/livekit-plugins/livekit-plugins-elevenlabs/livekit/plugins/elevenlabs/version.py index 749cfc74c..8a6a25034 100644 --- a/livekit-plugins/livekit-plugins-elevenlabs/livekit/plugins/elevenlabs/version.py +++ b/livekit-plugins/livekit-plugins-elevenlabs/livekit/plugins/elevenlabs/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "0.7.10" +__version__ = "0.7.11" diff --git a/livekit-plugins/livekit-plugins-elevenlabs/package.json b/livekit-plugins/livekit-plugins-elevenlabs/package.json index 202e05c27..bd3c828c8 100644 --- a/livekit-plugins/livekit-plugins-elevenlabs/package.json +++ b/livekit-plugins/livekit-plugins-elevenlabs/package.json @@ -1,5 +1,5 @@ { "name": "livekit-plugins-elevenlabs", "private": true, - "version": "0.7.10" + "version": "0.7.11" } diff --git a/livekit-plugins/livekit-plugins-google/CHANGELOG.md b/livekit-plugins/livekit-plugins-google/CHANGELOG.md index 1dc87810d..47cfa7ad6 100644 --- a/livekit-plugins/livekit-plugins-google/CHANGELOG.md +++ b/livekit-plugins/livekit-plugins-google/CHANGELOG.md @@ -1,5 +1,19 @@ # livekit-plugins-google +## 0.10.0 + +### Minor Changes + +- support gemini LLM - [#1382](https://github.com/livekit/agents/pull/1382) ([@jayeshp19](https://github.com/jayeshp19)) + +### Patch Changes + +- fix: address breaking change from google-genai >= 0.3.0 - [#1383](https://github.com/livekit/agents/pull/1383) ([@jayeshp19](https://github.com/jayeshp19)) + +- gemini improvements: exception handling, transcription & Ensure contents.parts is non-empty in gemini contex - [#1398](https://github.com/livekit/agents/pull/1398) ([@jayeshp19](https://github.com/jayeshp19)) + +- support transcriber session for user/agent audio - [#1321](https://github.com/livekit/agents/pull/1321) ([@jayeshp19](https://github.com/jayeshp19)) + ## 0.9.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 a4aa3419a..dec295d4e 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.9.1" +__version__ = "0.10.0" diff --git a/livekit-plugins/livekit-plugins-google/package.json b/livekit-plugins/livekit-plugins-google/package.json index c1ae29e04..82253d100 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.9.1" + "version": "0.10.0" } diff --git a/livekit-plugins/livekit-plugins-openai/CHANGELOG.md b/livekit-plugins/livekit-plugins-openai/CHANGELOG.md index 8571fe1a1..d10d70dd9 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.16 + +### Patch Changes + +- add generate_reply api for multimodal agent - [#1359](https://github.com/livekit/agents/pull/1359) ([@longcw](https://github.com/longcw)) + ## 0.10.15 ### 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 f112bbd17..4bffd9162 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.15" +__version__ = "0.10.16" diff --git a/livekit-plugins/livekit-plugins-openai/package.json b/livekit-plugins/livekit-plugins-openai/package.json index baab6fd1e..10d84ab87 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.15" + "version": "0.10.16" } diff --git a/livekit-plugins/livekit-plugins-playai/CHANGELOG.md b/livekit-plugins/livekit-plugins-playai/CHANGELOG.md index 8bb778173..af80f9b64 100644 --- a/livekit-plugins/livekit-plugins-playai/CHANGELOG.md +++ b/livekit-plugins/livekit-plugins-playai/CHANGELOG.md @@ -1,5 +1,11 @@ # livekit-plugins-playht +## 1.0.6 + +### Patch Changes + +- fix: Avoid websocket reconnections for each request - [#1387](https://github.com/livekit/agents/pull/1387) ([@jayeshp19](https://github.com/jayeshp19)) + ## 1.0.5 ### Patch Changes diff --git a/livekit-plugins/livekit-plugins-playai/livekit/plugins/playai/version.py b/livekit-plugins/livekit-plugins-playai/livekit/plugins/playai/version.py index 68cdeee4b..382021f30 100644 --- a/livekit-plugins/livekit-plugins-playai/livekit/plugins/playai/version.py +++ b/livekit-plugins/livekit-plugins-playai/livekit/plugins/playai/version.py @@ -1 +1 @@ -__version__ = "1.0.5" +__version__ = "1.0.6" diff --git a/livekit-plugins/livekit-plugins-playai/package.json b/livekit-plugins/livekit-plugins-playai/package.json index 387f461a0..5eec1fb46 100644 --- a/livekit-plugins/livekit-plugins-playai/package.json +++ b/livekit-plugins/livekit-plugins-playai/package.json @@ -1,5 +1,5 @@ { "name": "livekit-plugins-playai", "private": true, - "version": "1.0.5" + "version": "1.0.6" } diff --git a/livekit-plugins/livekit-plugins-rime/CHANGELOG.md b/livekit-plugins/livekit-plugins-rime/CHANGELOG.md index 957347da1..bd8297a74 100644 --- a/livekit-plugins/livekit-plugins-rime/CHANGELOG.md +++ b/livekit-plugins/livekit-plugins-rime/CHANGELOG.md @@ -1 +1,7 @@ # livekit-plugins-rime + +## 0.2.0 + +### Minor Changes + +- inital release - [#1377](https://github.com/livekit/agents/pull/1377) ([@jayeshp19](https://github.com/jayeshp19)) diff --git a/livekit-plugins/livekit-plugins-rime/livekit/plugins/rime/version.py b/livekit-plugins/livekit-plugins-rime/livekit/plugins/rime/version.py index 78ce264e0..bfaa38701 100644 --- a/livekit-plugins/livekit-plugins-rime/livekit/plugins/rime/version.py +++ b/livekit-plugins/livekit-plugins-rime/livekit/plugins/rime/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "0.1.0" +__version__ = "0.2.0" diff --git a/livekit-plugins/livekit-plugins-rime/package.json b/livekit-plugins/livekit-plugins-rime/package.json index 1cce9d991..d49dc07e5 100644 --- a/livekit-plugins/livekit-plugins-rime/package.json +++ b/livekit-plugins/livekit-plugins-rime/package.json @@ -1,5 +1,5 @@ { "name": "livekit-plugins-rime", "private": true, - "version": "0.1.0" + "version": "0.2.0" }