diff --git a/.changeset/anam-start-session-api-key.md b/.changeset/anam-start-session-api-key.md deleted file mode 100644 index 7c9cf7851a..0000000000 --- a/.changeset/anam-start-session-api-key.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents-plugin-anam': patch ---- - -Start Anam engine sessions directly with the API key, removing the session-token round trip. diff --git a/.changeset/clean-fallback-teardown.md b/.changeset/clean-fallback-teardown.md deleted file mode 100644 index 39a8c262d8..0000000000 --- a/.changeset/clean-fallback-teardown.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': patch ---- - -Keep healthy STT providers available when fallback streams close with transcripts in flight. diff --git a/.changeset/duplex-text-simulation-error.md b/.changeset/duplex-text-simulation-error.md deleted file mode 100644 index 4f2a794328..0000000000 --- a/.changeset/duplex-text-simulation-error.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': patch ---- - -Fail fast with a clear error when a DuplexModel such as GPT-Live is started under a text simulation, which has no audio, instead of timing out on the first reply. diff --git a/.changeset/fuzzy-geese-detect.md b/.changeset/fuzzy-geese-detect.md deleted file mode 100644 index 856d64ed4d..0000000000 --- a/.changeset/fuzzy-geese-detect.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents-plugin-elevenlabs': minor ---- - -Add explicit realtime STT language detection and normalize primary and secondary language hints. diff --git a/.changeset/gemini-live-models.md b/.changeset/gemini-live-models.md deleted file mode 100644 index 1fc1221de2..0000000000 --- a/.changeset/gemini-live-models.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents-plugin-google': patch ---- - -Add Gemini 3.8 Live models and support their mid-session updates and reply generation behavior. diff --git a/.changeset/gpt-live-session-wide-call-gate.md b/.changeset/gpt-live-session-wide-call-gate.md deleted file mode 100644 index f5e7b8e1bb..0000000000 --- a/.changeset/gpt-live-session-wide-call-gate.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents-plugin-openai': patch ---- - -Continue a GPT-Live response only once every backend function call in the session is answered, instead of only the calls of the one response the plugin tracked per delegation. A continuation sent while another call is still open is refused with function_call_outputs_required, after which the backend never answers again. diff --git a/.changeset/quiet-handoff-tasks.md b/.changeset/quiet-handoff-tasks.md deleted file mode 100644 index 945d7fbb18..0000000000 --- a/.changeset/quiet-handoff-tasks.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': patch ---- - -Reject late inline AgentTasks on an outgoing activity so handoff and shutdown do not deadlock while draining non-cancellable tools. diff --git a/.changeset/recorder-playback-progress.md b/.changeset/recorder-playback-progress.md deleted file mode 100644 index 67e6dae453..0000000000 --- a/.changeset/recorder-playback-progress.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': patch ---- - -Place recorded audio where the sink reports it actually played, instead of inferring it from the moment playback finished. diff --git a/.changeset/slow-loops-report.md b/.changeset/slow-loops-report.md deleted file mode 100644 index 19cc93329d..0000000000 --- a/.changeset/slow-loops-report.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': minor ---- - -Flag synchronous code that blocks agent event loops in telemetry and logs. diff --git a/.changeset/tidy-snakes-smile.md b/.changeset/tidy-snakes-smile.md deleted file mode 100644 index cee804c583..0000000000 --- a/.changeset/tidy-snakes-smile.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents-plugin-tavus': patch ---- - -Default Tavus conversations to the stock Lucy face when neither a face nor pal is provided. diff --git a/agents/CHANGELOG.md b/agents/CHANGELOG.md index d57239e293..e5724e1602 100644 --- a/agents/CHANGELOG.md +++ b/agents/CHANGELOG.md @@ -1,5 +1,21 @@ # @livekit/agents +## 1.9.0 + +### Minor Changes + +- Flag synchronous code that blocks agent event loops in telemetry and logs. - [#2459](https://github.com/livekit/agents-js/pull/2459) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +### Patch Changes + +- Keep healthy STT providers available when fallback streams close with transcripts in flight. - [#2381](https://github.com/livekit/agents-js/pull/2381) ([@swayamg20](https://github.com/swayamg20)) + +- Fail fast with a clear error when a DuplexModel such as GPT-Live is started under a text simulation, which has no audio, instead of timing out on the first reply. - [#2481](https://github.com/livekit/agents-js/pull/2481) ([@u9g](https://github.com/u9g)) + +- Reject late inline AgentTasks on an outgoing activity so handoff and shutdown do not deadlock while draining non-cancellable tools. - [#2488](https://github.com/livekit/agents-js/pull/2488) ([@swayamg20](https://github.com/swayamg20)) + +- Place recorded audio where the sink reports it actually played, instead of inferring it from the moment playback finished. - [#2327](https://github.com/livekit/agents-js/pull/2327) ([@longcw](https://github.com/longcw)) + ## 1.8.1 ### Patch Changes diff --git a/agents/package.json b/agents/package.json index b3594b2047..c12e1aaa61 100644 --- a/agents/package.json +++ b/agents/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents", - "version": "1.8.1", + "version": "1.9.0", "description": "LiveKit Agents - Node.js", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/anam/CHANGELOG.md b/plugins/anam/CHANGELOG.md index ed11ca6643..2fa0b221c4 100644 --- a/plugins/anam/CHANGELOG.md +++ b/plugins/anam/CHANGELOG.md @@ -1,5 +1,14 @@ # @livekit/agents-plugin-anam +## 1.9.0 + +### Patch Changes + +- Start Anam engine sessions directly with the API key, removing the session-token round trip. - [#2452](https://github.com/livekit/agents-js/pull/2452) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- Updated dependencies [[`d074b68`](https://github.com/livekit/agents-js/commit/d074b68b0fcb0f96768b425f27167a3c6ea2e5cd), [`3b068a5`](https://github.com/livekit/agents-js/commit/3b068a5679eae29ed114dfc7caa114dd9145accc), [`78dde70`](https://github.com/livekit/agents-js/commit/78dde705069bf38a3e9abcc6561c7163911b0ae7), [`931a217`](https://github.com/livekit/agents-js/commit/931a217014cd9425130d6580cc4cec2c44de96dc), [`c82fd8c`](https://github.com/livekit/agents-js/commit/c82fd8ca4046d3d03d235007953c17c19d9d766a)]: + - @livekit/agents@1.9.0 + ## 1.8.1 ### Patch Changes diff --git a/plugins/anam/package.json b/plugins/anam/package.json index 6e1d1c9801..0ce6ac6f1e 100644 --- a/plugins/anam/package.json +++ b/plugins/anam/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-anam", - "version": "1.8.1", + "version": "1.9.0", "description": "Anam plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/anthropic/CHANGELOG.md b/plugins/anthropic/CHANGELOG.md index 1db380769a..158cae7105 100644 --- a/plugins/anthropic/CHANGELOG.md +++ b/plugins/anthropic/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-anthropic +## 1.9.0 + +### Patch Changes + +- Updated dependencies [[`d074b68`](https://github.com/livekit/agents-js/commit/d074b68b0fcb0f96768b425f27167a3c6ea2e5cd), [`3b068a5`](https://github.com/livekit/agents-js/commit/3b068a5679eae29ed114dfc7caa114dd9145accc), [`78dde70`](https://github.com/livekit/agents-js/commit/78dde705069bf38a3e9abcc6561c7163911b0ae7), [`931a217`](https://github.com/livekit/agents-js/commit/931a217014cd9425130d6580cc4cec2c44de96dc), [`c82fd8c`](https://github.com/livekit/agents-js/commit/c82fd8ca4046d3d03d235007953c17c19d9d766a)]: + - @livekit/agents@1.9.0 + ## 1.8.1 ### Patch Changes diff --git a/plugins/anthropic/package.json b/plugins/anthropic/package.json index 60ef8e3d4e..917a7acf30 100644 --- a/plugins/anthropic/package.json +++ b/plugins/anthropic/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-anthropic", - "version": "1.8.1", + "version": "1.9.0", "description": "Anthropic plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/assemblyai/CHANGELOG.md b/plugins/assemblyai/CHANGELOG.md index dc0bbe78d8..9f0d92639f 100644 --- a/plugins/assemblyai/CHANGELOG.md +++ b/plugins/assemblyai/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-assemblyai +## 1.9.0 + +### Patch Changes + +- Updated dependencies [[`d074b68`](https://github.com/livekit/agents-js/commit/d074b68b0fcb0f96768b425f27167a3c6ea2e5cd), [`3b068a5`](https://github.com/livekit/agents-js/commit/3b068a5679eae29ed114dfc7caa114dd9145accc), [`78dde70`](https://github.com/livekit/agents-js/commit/78dde705069bf38a3e9abcc6561c7163911b0ae7), [`931a217`](https://github.com/livekit/agents-js/commit/931a217014cd9425130d6580cc4cec2c44de96dc), [`c82fd8c`](https://github.com/livekit/agents-js/commit/c82fd8ca4046d3d03d235007953c17c19d9d766a)]: + - @livekit/agents@1.9.0 + ## 1.8.1 ### Patch Changes diff --git a/plugins/assemblyai/package.json b/plugins/assemblyai/package.json index 8775810bc3..6d3b46963f 100644 --- a/plugins/assemblyai/package.json +++ b/plugins/assemblyai/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-assemblyai", - "version": "1.8.1", + "version": "1.9.0", "description": "AssemblyAI plugin for LiveKit Agents for Node.js", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/azure/CHANGELOG.md b/plugins/azure/CHANGELOG.md index c1f1d92a2b..5735337dbb 100644 --- a/plugins/azure/CHANGELOG.md +++ b/plugins/azure/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-azure +## 1.9.0 + +### Patch Changes + +- Updated dependencies [[`d074b68`](https://github.com/livekit/agents-js/commit/d074b68b0fcb0f96768b425f27167a3c6ea2e5cd), [`3b068a5`](https://github.com/livekit/agents-js/commit/3b068a5679eae29ed114dfc7caa114dd9145accc), [`78dde70`](https://github.com/livekit/agents-js/commit/78dde705069bf38a3e9abcc6561c7163911b0ae7), [`931a217`](https://github.com/livekit/agents-js/commit/931a217014cd9425130d6580cc4cec2c44de96dc), [`c82fd8c`](https://github.com/livekit/agents-js/commit/c82fd8ca4046d3d03d235007953c17c19d9d766a)]: + - @livekit/agents@1.9.0 + ## 1.8.1 ### Patch Changes diff --git a/plugins/azure/package.json b/plugins/azure/package.json index be82b61067..7acbe0a32e 100644 --- a/plugins/azure/package.json +++ b/plugins/azure/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-azure", - "version": "1.8.1", + "version": "1.9.0", "description": "Azure plugin for LiveKit Agents for Node.js", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/baseten/CHANGELOG.md b/plugins/baseten/CHANGELOG.md index e44e078085..27fafadce6 100644 --- a/plugins/baseten/CHANGELOG.md +++ b/plugins/baseten/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-baseten +## 1.9.0 + +### Patch Changes + +- Updated dependencies [[`d074b68`](https://github.com/livekit/agents-js/commit/d074b68b0fcb0f96768b425f27167a3c6ea2e5cd), [`3b068a5`](https://github.com/livekit/agents-js/commit/3b068a5679eae29ed114dfc7caa114dd9145accc), [`78dde70`](https://github.com/livekit/agents-js/commit/78dde705069bf38a3e9abcc6561c7163911b0ae7), [`931a217`](https://github.com/livekit/agents-js/commit/931a217014cd9425130d6580cc4cec2c44de96dc), [`c82fd8c`](https://github.com/livekit/agents-js/commit/c82fd8ca4046d3d03d235007953c17c19d9d766a)]: + - @livekit/agents@1.9.0 + ## 1.8.1 ### Patch Changes diff --git a/plugins/baseten/package.json b/plugins/baseten/package.json index 4a70406135..22f3c9e128 100644 --- a/plugins/baseten/package.json +++ b/plugins/baseten/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-baseten", - "version": "1.8.1", + "version": "1.9.0", "description": "Baseten plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/bey/CHANGELOG.md b/plugins/bey/CHANGELOG.md index 786fa26f0d..99e45def99 100644 --- a/plugins/bey/CHANGELOG.md +++ b/plugins/bey/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-bey +## 1.9.0 + +### Patch Changes + +- Updated dependencies [[`d074b68`](https://github.com/livekit/agents-js/commit/d074b68b0fcb0f96768b425f27167a3c6ea2e5cd), [`3b068a5`](https://github.com/livekit/agents-js/commit/3b068a5679eae29ed114dfc7caa114dd9145accc), [`78dde70`](https://github.com/livekit/agents-js/commit/78dde705069bf38a3e9abcc6561c7163911b0ae7), [`931a217`](https://github.com/livekit/agents-js/commit/931a217014cd9425130d6580cc4cec2c44de96dc), [`c82fd8c`](https://github.com/livekit/agents-js/commit/c82fd8ca4046d3d03d235007953c17c19d9d766a)]: + - @livekit/agents@1.9.0 + ## 1.8.1 ### Patch Changes diff --git a/plugins/bey/package.json b/plugins/bey/package.json index 74b768d018..f116697c53 100644 --- a/plugins/bey/package.json +++ b/plugins/bey/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-bey", - "version": "1.8.1", + "version": "1.9.0", "description": "Beyond Presence plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/cartesia/CHANGELOG.md b/plugins/cartesia/CHANGELOG.md index 9b235ab3f3..1f42ffb877 100644 --- a/plugins/cartesia/CHANGELOG.md +++ b/plugins/cartesia/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-cartesia +## 1.9.0 + +### Patch Changes + +- Updated dependencies [[`d074b68`](https://github.com/livekit/agents-js/commit/d074b68b0fcb0f96768b425f27167a3c6ea2e5cd), [`3b068a5`](https://github.com/livekit/agents-js/commit/3b068a5679eae29ed114dfc7caa114dd9145accc), [`78dde70`](https://github.com/livekit/agents-js/commit/78dde705069bf38a3e9abcc6561c7163911b0ae7), [`931a217`](https://github.com/livekit/agents-js/commit/931a217014cd9425130d6580cc4cec2c44de96dc), [`c82fd8c`](https://github.com/livekit/agents-js/commit/c82fd8ca4046d3d03d235007953c17c19d9d766a)]: + - @livekit/agents@1.9.0 + ## 1.8.1 ### Patch Changes diff --git a/plugins/cartesia/package.json b/plugins/cartesia/package.json index aa82da5389..efc00fb794 100644 --- a/plugins/cartesia/package.json +++ b/plugins/cartesia/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-cartesia", - "version": "1.8.1", + "version": "1.9.0", "description": "Cartesia plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/cerebras/CHANGELOG.md b/plugins/cerebras/CHANGELOG.md index ce421bf172..e45e9695a3 100644 --- a/plugins/cerebras/CHANGELOG.md +++ b/plugins/cerebras/CHANGELOG.md @@ -1,5 +1,13 @@ # @livekit/agents-plugin-cerebras +## 1.9.0 + +### Patch Changes + +- Updated dependencies [[`d074b68`](https://github.com/livekit/agents-js/commit/d074b68b0fcb0f96768b425f27167a3c6ea2e5cd), [`3b068a5`](https://github.com/livekit/agents-js/commit/3b068a5679eae29ed114dfc7caa114dd9145accc), [`ab3dc99`](https://github.com/livekit/agents-js/commit/ab3dc99a725b772c13829cfa854302a0cd1734e7), [`78dde70`](https://github.com/livekit/agents-js/commit/78dde705069bf38a3e9abcc6561c7163911b0ae7), [`931a217`](https://github.com/livekit/agents-js/commit/931a217014cd9425130d6580cc4cec2c44de96dc), [`c82fd8c`](https://github.com/livekit/agents-js/commit/c82fd8ca4046d3d03d235007953c17c19d9d766a)]: + - @livekit/agents@1.9.0 + - @livekit/agents-plugin-openai@1.9.0 + ## 1.8.1 ### Patch Changes diff --git a/plugins/cerebras/package.json b/plugins/cerebras/package.json index 22907390e9..f68d8c4caa 100644 --- a/plugins/cerebras/package.json +++ b/plugins/cerebras/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-cerebras", - "version": "1.8.1", + "version": "1.9.0", "description": "Cerebras plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/deepgram/CHANGELOG.md b/plugins/deepgram/CHANGELOG.md index 4a169c590a..5f289f3497 100644 --- a/plugins/deepgram/CHANGELOG.md +++ b/plugins/deepgram/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-deepgram +## 1.9.0 + +### Patch Changes + +- Updated dependencies [[`d074b68`](https://github.com/livekit/agents-js/commit/d074b68b0fcb0f96768b425f27167a3c6ea2e5cd), [`3b068a5`](https://github.com/livekit/agents-js/commit/3b068a5679eae29ed114dfc7caa114dd9145accc), [`78dde70`](https://github.com/livekit/agents-js/commit/78dde705069bf38a3e9abcc6561c7163911b0ae7), [`931a217`](https://github.com/livekit/agents-js/commit/931a217014cd9425130d6580cc4cec2c44de96dc), [`c82fd8c`](https://github.com/livekit/agents-js/commit/c82fd8ca4046d3d03d235007953c17c19d9d766a)]: + - @livekit/agents@1.9.0 + ## 1.8.1 ### Patch Changes diff --git a/plugins/deepgram/package.json b/plugins/deepgram/package.json index 9c58b2753f..a750ae8115 100644 --- a/plugins/deepgram/package.json +++ b/plugins/deepgram/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-deepgram", - "version": "1.8.1", + "version": "1.9.0", "description": "Deepgram plugin for LiveKit Agents for Node.js", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/did/CHANGELOG.md b/plugins/did/CHANGELOG.md index b17dfa15e2..f7f6e53f34 100644 --- a/plugins/did/CHANGELOG.md +++ b/plugins/did/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-did +## 1.9.0 + +### Patch Changes + +- Updated dependencies [[`d074b68`](https://github.com/livekit/agents-js/commit/d074b68b0fcb0f96768b425f27167a3c6ea2e5cd), [`3b068a5`](https://github.com/livekit/agents-js/commit/3b068a5679eae29ed114dfc7caa114dd9145accc), [`78dde70`](https://github.com/livekit/agents-js/commit/78dde705069bf38a3e9abcc6561c7163911b0ae7), [`931a217`](https://github.com/livekit/agents-js/commit/931a217014cd9425130d6580cc4cec2c44de96dc), [`c82fd8c`](https://github.com/livekit/agents-js/commit/c82fd8ca4046d3d03d235007953c17c19d9d766a)]: + - @livekit/agents@1.9.0 + ## 1.8.1 ### Patch Changes diff --git a/plugins/did/package.json b/plugins/did/package.json index abe1f3ed66..cee8569024 100644 --- a/plugins/did/package.json +++ b/plugins/did/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-did", - "version": "1.8.1", + "version": "1.9.0", "description": "D-ID avatar plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/elevenlabs/CHANGELOG.md b/plugins/elevenlabs/CHANGELOG.md index 817464a671..58aa5849a3 100644 --- a/plugins/elevenlabs/CHANGELOG.md +++ b/plugins/elevenlabs/CHANGELOG.md @@ -1,5 +1,16 @@ # @livekit/agents-plugin-elevenlabs +## 1.9.0 + +### Minor Changes + +- Add explicit realtime STT language detection and normalize primary and secondary language hints. - [#2489](https://github.com/livekit/agents-js/pull/2489) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +### Patch Changes + +- Updated dependencies [[`d074b68`](https://github.com/livekit/agents-js/commit/d074b68b0fcb0f96768b425f27167a3c6ea2e5cd), [`3b068a5`](https://github.com/livekit/agents-js/commit/3b068a5679eae29ed114dfc7caa114dd9145accc), [`78dde70`](https://github.com/livekit/agents-js/commit/78dde705069bf38a3e9abcc6561c7163911b0ae7), [`931a217`](https://github.com/livekit/agents-js/commit/931a217014cd9425130d6580cc4cec2c44de96dc), [`c82fd8c`](https://github.com/livekit/agents-js/commit/c82fd8ca4046d3d03d235007953c17c19d9d766a)]: + - @livekit/agents@1.9.0 + ## 1.8.1 ### Patch Changes diff --git a/plugins/elevenlabs/package.json b/plugins/elevenlabs/package.json index 5c940bcc2d..63a953b3c6 100644 --- a/plugins/elevenlabs/package.json +++ b/plugins/elevenlabs/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-elevenlabs", - "version": "1.8.1", + "version": "1.9.0", "description": "ElevenLabs plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/fishaudio/CHANGELOG.md b/plugins/fishaudio/CHANGELOG.md index 01feecbe39..8a70e9cb59 100644 --- a/plugins/fishaudio/CHANGELOG.md +++ b/plugins/fishaudio/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-fishaudio +## 1.9.0 + +### Patch Changes + +- Updated dependencies [[`d074b68`](https://github.com/livekit/agents-js/commit/d074b68b0fcb0f96768b425f27167a3c6ea2e5cd), [`3b068a5`](https://github.com/livekit/agents-js/commit/3b068a5679eae29ed114dfc7caa114dd9145accc), [`78dde70`](https://github.com/livekit/agents-js/commit/78dde705069bf38a3e9abcc6561c7163911b0ae7), [`931a217`](https://github.com/livekit/agents-js/commit/931a217014cd9425130d6580cc4cec2c44de96dc), [`c82fd8c`](https://github.com/livekit/agents-js/commit/c82fd8ca4046d3d03d235007953c17c19d9d766a)]: + - @livekit/agents@1.9.0 + ## 1.8.1 ### Patch Changes diff --git a/plugins/fishaudio/package.json b/plugins/fishaudio/package.json index 1b327c8096..737beb4280 100644 --- a/plugins/fishaudio/package.json +++ b/plugins/fishaudio/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-fishaudio", - "version": "1.8.1", + "version": "1.9.0", "description": "Fish Audio plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/google/CHANGELOG.md b/plugins/google/CHANGELOG.md index 97b56ec54a..8944df170d 100644 --- a/plugins/google/CHANGELOG.md +++ b/plugins/google/CHANGELOG.md @@ -1,5 +1,14 @@ # @livekit/agents-plugin-google +## 1.9.0 + +### Patch Changes + +- Add Gemini 3.8 Live models and support their mid-session updates and reply generation behavior. - [#2503](https://github.com/livekit/agents-js/pull/2503) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- Updated dependencies [[`d074b68`](https://github.com/livekit/agents-js/commit/d074b68b0fcb0f96768b425f27167a3c6ea2e5cd), [`3b068a5`](https://github.com/livekit/agents-js/commit/3b068a5679eae29ed114dfc7caa114dd9145accc), [`78dde70`](https://github.com/livekit/agents-js/commit/78dde705069bf38a3e9abcc6561c7163911b0ae7), [`931a217`](https://github.com/livekit/agents-js/commit/931a217014cd9425130d6580cc4cec2c44de96dc), [`c82fd8c`](https://github.com/livekit/agents-js/commit/c82fd8ca4046d3d03d235007953c17c19d9d766a)]: + - @livekit/agents@1.9.0 + ## 1.8.1 ### Patch Changes diff --git a/plugins/google/package.json b/plugins/google/package.json index d2fdf926a3..2a4787c0d0 100644 --- a/plugins/google/package.json +++ b/plugins/google/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-google", - "version": "1.8.1", + "version": "1.9.0", "description": "Google Gemini plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/hume/CHANGELOG.md b/plugins/hume/CHANGELOG.md index 86e2c7ab54..1f5efb165c 100644 --- a/plugins/hume/CHANGELOG.md +++ b/plugins/hume/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-hume +## 1.9.0 + +### Patch Changes + +- Updated dependencies [[`d074b68`](https://github.com/livekit/agents-js/commit/d074b68b0fcb0f96768b425f27167a3c6ea2e5cd), [`3b068a5`](https://github.com/livekit/agents-js/commit/3b068a5679eae29ed114dfc7caa114dd9145accc), [`78dde70`](https://github.com/livekit/agents-js/commit/78dde705069bf38a3e9abcc6561c7163911b0ae7), [`931a217`](https://github.com/livekit/agents-js/commit/931a217014cd9425130d6580cc4cec2c44de96dc), [`c82fd8c`](https://github.com/livekit/agents-js/commit/c82fd8ca4046d3d03d235007953c17c19d9d766a)]: + - @livekit/agents@1.9.0 + ## 1.8.1 ### Patch Changes diff --git a/plugins/hume/package.json b/plugins/hume/package.json index 1b00e1a47e..c9fd8e094c 100644 --- a/plugins/hume/package.json +++ b/plugins/hume/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-hume", - "version": "1.8.1", + "version": "1.9.0", "description": "Hume AI plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/inworld/CHANGELOG.md b/plugins/inworld/CHANGELOG.md index b73f183b97..fcd152cf80 100644 --- a/plugins/inworld/CHANGELOG.md +++ b/plugins/inworld/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-inworld +## 1.9.0 + +### Patch Changes + +- Updated dependencies [[`d074b68`](https://github.com/livekit/agents-js/commit/d074b68b0fcb0f96768b425f27167a3c6ea2e5cd), [`3b068a5`](https://github.com/livekit/agents-js/commit/3b068a5679eae29ed114dfc7caa114dd9145accc), [`78dde70`](https://github.com/livekit/agents-js/commit/78dde705069bf38a3e9abcc6561c7163911b0ae7), [`931a217`](https://github.com/livekit/agents-js/commit/931a217014cd9425130d6580cc4cec2c44de96dc), [`c82fd8c`](https://github.com/livekit/agents-js/commit/c82fd8ca4046d3d03d235007953c17c19d9d766a)]: + - @livekit/agents@1.9.0 + ## 1.8.1 ### Patch Changes diff --git a/plugins/inworld/package.json b/plugins/inworld/package.json index 7daff9f989..cecb2cd9e6 100644 --- a/plugins/inworld/package.json +++ b/plugins/inworld/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-inworld", - "version": "1.8.1", + "version": "1.9.0", "description": "Inworld plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/krisp/CHANGELOG.md b/plugins/krisp/CHANGELOG.md index fd2b0cbbf4..ebae49f8e9 100644 --- a/plugins/krisp/CHANGELOG.md +++ b/plugins/krisp/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-krisp +## 1.9.0 + +### Patch Changes + +- Updated dependencies [[`d074b68`](https://github.com/livekit/agents-js/commit/d074b68b0fcb0f96768b425f27167a3c6ea2e5cd), [`3b068a5`](https://github.com/livekit/agents-js/commit/3b068a5679eae29ed114dfc7caa114dd9145accc), [`78dde70`](https://github.com/livekit/agents-js/commit/78dde705069bf38a3e9abcc6561c7163911b0ae7), [`931a217`](https://github.com/livekit/agents-js/commit/931a217014cd9425130d6580cc4cec2c44de96dc), [`c82fd8c`](https://github.com/livekit/agents-js/commit/c82fd8ca4046d3d03d235007953c17c19d9d766a)]: + - @livekit/agents@1.9.0 + ## 1.8.1 ### Patch Changes diff --git a/plugins/krisp/package.json b/plugins/krisp/package.json index d848ff9acd..c1b1793269 100644 --- a/plugins/krisp/package.json +++ b/plugins/krisp/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-krisp", - "version": "1.8.1", + "version": "1.9.0", "description": "Krisp Audio plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/lemonslice/CHANGELOG.md b/plugins/lemonslice/CHANGELOG.md index 849d974119..12de068e04 100644 --- a/plugins/lemonslice/CHANGELOG.md +++ b/plugins/lemonslice/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-lemonslice +## 1.9.0 + +### Patch Changes + +- Updated dependencies [[`d074b68`](https://github.com/livekit/agents-js/commit/d074b68b0fcb0f96768b425f27167a3c6ea2e5cd), [`3b068a5`](https://github.com/livekit/agents-js/commit/3b068a5679eae29ed114dfc7caa114dd9145accc), [`78dde70`](https://github.com/livekit/agents-js/commit/78dde705069bf38a3e9abcc6561c7163911b0ae7), [`931a217`](https://github.com/livekit/agents-js/commit/931a217014cd9425130d6580cc4cec2c44de96dc), [`c82fd8c`](https://github.com/livekit/agents-js/commit/c82fd8ca4046d3d03d235007953c17c19d9d766a)]: + - @livekit/agents@1.9.0 + ## 1.8.1 ### Patch Changes diff --git a/plugins/lemonslice/package.json b/plugins/lemonslice/package.json index 980a468099..0e1c4832bd 100644 --- a/plugins/lemonslice/package.json +++ b/plugins/lemonslice/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-lemonslice", - "version": "1.8.1", + "version": "1.9.0", "description": "LemonSlice avatar plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/liveavatar/CHANGELOG.md b/plugins/liveavatar/CHANGELOG.md index a31cbba8af..0c4ee8d94b 100644 --- a/plugins/liveavatar/CHANGELOG.md +++ b/plugins/liveavatar/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-liveavatar +## 1.9.0 + +### Patch Changes + +- Updated dependencies [[`d074b68`](https://github.com/livekit/agents-js/commit/d074b68b0fcb0f96768b425f27167a3c6ea2e5cd), [`3b068a5`](https://github.com/livekit/agents-js/commit/3b068a5679eae29ed114dfc7caa114dd9145accc), [`78dde70`](https://github.com/livekit/agents-js/commit/78dde705069bf38a3e9abcc6561c7163911b0ae7), [`931a217`](https://github.com/livekit/agents-js/commit/931a217014cd9425130d6580cc4cec2c44de96dc), [`c82fd8c`](https://github.com/livekit/agents-js/commit/c82fd8ca4046d3d03d235007953c17c19d9d766a)]: + - @livekit/agents@1.9.0 + ## 1.8.1 ### Patch Changes diff --git a/plugins/liveavatar/package.json b/plugins/liveavatar/package.json index bfeee60570..9f659c4c15 100644 --- a/plugins/liveavatar/package.json +++ b/plugins/liveavatar/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-liveavatar", - "version": "1.8.1", + "version": "1.9.0", "description": "LiveAvatar avatar plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/livekit/CHANGELOG.md b/plugins/livekit/CHANGELOG.md index 5d852fd12e..af3791bcab 100644 --- a/plugins/livekit/CHANGELOG.md +++ b/plugins/livekit/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-livekit +## 1.9.0 + +### Patch Changes + +- Updated dependencies [[`d074b68`](https://github.com/livekit/agents-js/commit/d074b68b0fcb0f96768b425f27167a3c6ea2e5cd), [`3b068a5`](https://github.com/livekit/agents-js/commit/3b068a5679eae29ed114dfc7caa114dd9145accc), [`78dde70`](https://github.com/livekit/agents-js/commit/78dde705069bf38a3e9abcc6561c7163911b0ae7), [`931a217`](https://github.com/livekit/agents-js/commit/931a217014cd9425130d6580cc4cec2c44de96dc), [`c82fd8c`](https://github.com/livekit/agents-js/commit/c82fd8ca4046d3d03d235007953c17c19d9d766a)]: + - @livekit/agents@1.9.0 + ## 1.8.1 ### Patch Changes diff --git a/plugins/livekit/package.json b/plugins/livekit/package.json index ee4ebdb8cb..f9acc66f28 100644 --- a/plugins/livekit/package.json +++ b/plugins/livekit/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-livekit", - "version": "1.8.1", + "version": "1.9.0", "description": "Additional utilities for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/meta/CHANGELOG.md b/plugins/meta/CHANGELOG.md index 338c404317..ca13c24759 100644 --- a/plugins/meta/CHANGELOG.md +++ b/plugins/meta/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-meta +## 1.9.0 + +### Patch Changes + +- Updated dependencies [[`d074b68`](https://github.com/livekit/agents-js/commit/d074b68b0fcb0f96768b425f27167a3c6ea2e5cd), [`3b068a5`](https://github.com/livekit/agents-js/commit/3b068a5679eae29ed114dfc7caa114dd9145accc), [`78dde70`](https://github.com/livekit/agents-js/commit/78dde705069bf38a3e9abcc6561c7163911b0ae7), [`931a217`](https://github.com/livekit/agents-js/commit/931a217014cd9425130d6580cc4cec2c44de96dc), [`c82fd8c`](https://github.com/livekit/agents-js/commit/c82fd8ca4046d3d03d235007953c17c19d9d766a)]: + - @livekit/agents@1.9.0 + ## 1.8.1 ### Patch Changes diff --git a/plugins/meta/package.json b/plugins/meta/package.json index b73d11c182..ab37bdd661 100644 --- a/plugins/meta/package.json +++ b/plugins/meta/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-meta", - "version": "1.8.1", + "version": "1.9.0", "description": "Meta Muse Voice Transcribe plugin for LiveKit Agents for Node.js", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/minimax/CHANGELOG.md b/plugins/minimax/CHANGELOG.md index 15eeb0725a..d55f22f2c1 100644 --- a/plugins/minimax/CHANGELOG.md +++ b/plugins/minimax/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-minimax +## 1.9.0 + +### Patch Changes + +- Updated dependencies [[`d074b68`](https://github.com/livekit/agents-js/commit/d074b68b0fcb0f96768b425f27167a3c6ea2e5cd), [`3b068a5`](https://github.com/livekit/agents-js/commit/3b068a5679eae29ed114dfc7caa114dd9145accc), [`78dde70`](https://github.com/livekit/agents-js/commit/78dde705069bf38a3e9abcc6561c7163911b0ae7), [`931a217`](https://github.com/livekit/agents-js/commit/931a217014cd9425130d6580cc4cec2c44de96dc), [`c82fd8c`](https://github.com/livekit/agents-js/commit/c82fd8ca4046d3d03d235007953c17c19d9d766a)]: + - @livekit/agents@1.9.0 + ## 1.8.1 ### Patch Changes diff --git a/plugins/minimax/package.json b/plugins/minimax/package.json index 8b1274db0a..2542ba7cfe 100644 --- a/plugins/minimax/package.json +++ b/plugins/minimax/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-minimax", - "version": "1.8.1", + "version": "1.9.0", "description": "MiniMax plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/mistral/CHANGELOG.md b/plugins/mistral/CHANGELOG.md index a354ba0fe8..f7c152bbc6 100644 --- a/plugins/mistral/CHANGELOG.md +++ b/plugins/mistral/CHANGELOG.md @@ -1,5 +1,13 @@ # @livekit/agents-plugin-mistral +## 1.9.0 + +### Patch Changes + +- Updated dependencies [[`d074b68`](https://github.com/livekit/agents-js/commit/d074b68b0fcb0f96768b425f27167a3c6ea2e5cd), [`3b068a5`](https://github.com/livekit/agents-js/commit/3b068a5679eae29ed114dfc7caa114dd9145accc), [`78dde70`](https://github.com/livekit/agents-js/commit/78dde705069bf38a3e9abcc6561c7163911b0ae7), [`931a217`](https://github.com/livekit/agents-js/commit/931a217014cd9425130d6580cc4cec2c44de96dc), [`c82fd8c`](https://github.com/livekit/agents-js/commit/c82fd8ca4046d3d03d235007953c17c19d9d766a)]: + - @livekit/agents@1.9.0 + - @livekit/agents-plugin-mistralai@1.9.0 + ## 1.8.1 ### Patch Changes diff --git a/plugins/mistral/package.json b/plugins/mistral/package.json index 205c0888ea..b0198bc28a 100644 --- a/plugins/mistral/package.json +++ b/plugins/mistral/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-mistral", - "version": "1.8.1", + "version": "1.9.0", "description": "Mistral AI plugin for LiveKit Node Agents (deprecated, use @livekit/agents-plugin-mistralai)", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/mistralai/CHANGELOG.md b/plugins/mistralai/CHANGELOG.md index 06a0ddaaea..5132bd68fd 100644 --- a/plugins/mistralai/CHANGELOG.md +++ b/plugins/mistralai/CHANGELOG.md @@ -1,5 +1,13 @@ # @livekit/agents-plugin-mistralai +## 1.9.0 + +### Patch Changes + +- Updated dependencies [[`d074b68`](https://github.com/livekit/agents-js/commit/d074b68b0fcb0f96768b425f27167a3c6ea2e5cd), [`3b068a5`](https://github.com/livekit/agents-js/commit/3b068a5679eae29ed114dfc7caa114dd9145accc), [`78dde70`](https://github.com/livekit/agents-js/commit/78dde705069bf38a3e9abcc6561c7163911b0ae7), [`931a217`](https://github.com/livekit/agents-js/commit/931a217014cd9425130d6580cc4cec2c44de96dc), [`c82fd8c`](https://github.com/livekit/agents-js/commit/c82fd8ca4046d3d03d235007953c17c19d9d766a)]: + - @livekit/agents@1.9.0 + - @livekit/agents-plugin-silero@1.9.0 + ## 1.8.1 ### Patch Changes diff --git a/plugins/mistralai/package.json b/plugins/mistralai/package.json index 312e3fb0ee..e3e8cd3632 100644 --- a/plugins/mistralai/package.json +++ b/plugins/mistralai/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-mistralai", - "version": "1.8.1", + "version": "1.9.0", "description": "Mistral AI plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/neuphonic/CHANGELOG.md b/plugins/neuphonic/CHANGELOG.md index dbffd3f8e5..1a7f9ba4d4 100644 --- a/plugins/neuphonic/CHANGELOG.md +++ b/plugins/neuphonic/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-neuphonic +## 1.9.0 + +### Patch Changes + +- Updated dependencies [[`d074b68`](https://github.com/livekit/agents-js/commit/d074b68b0fcb0f96768b425f27167a3c6ea2e5cd), [`3b068a5`](https://github.com/livekit/agents-js/commit/3b068a5679eae29ed114dfc7caa114dd9145accc), [`78dde70`](https://github.com/livekit/agents-js/commit/78dde705069bf38a3e9abcc6561c7163911b0ae7), [`931a217`](https://github.com/livekit/agents-js/commit/931a217014cd9425130d6580cc4cec2c44de96dc), [`c82fd8c`](https://github.com/livekit/agents-js/commit/c82fd8ca4046d3d03d235007953c17c19d9d766a)]: + - @livekit/agents@1.9.0 + ## 1.8.1 ### Patch Changes diff --git a/plugins/neuphonic/package.json b/plugins/neuphonic/package.json index 8d78bbe4f5..499e69a382 100644 --- a/plugins/neuphonic/package.json +++ b/plugins/neuphonic/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-neuphonic", - "version": "1.8.1", + "version": "1.9.0", "description": "Neuphonic plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/openai/CHANGELOG.md b/plugins/openai/CHANGELOG.md index 500a6d5847..f258e6a02b 100644 --- a/plugins/openai/CHANGELOG.md +++ b/plugins/openai/CHANGELOG.md @@ -1,5 +1,14 @@ # @livekit/agents-plugin-openai +## 1.9.0 + +### Patch Changes + +- Continue a GPT-Live response only once every backend function call in the session is answered, instead of only the calls of the one response the plugin tracked per delegation. A continuation sent while another call is still open is refused with function_call_outputs_required, after which the backend never answers again. - [#2495](https://github.com/livekit/agents-js/pull/2495) ([@longcw](https://github.com/longcw)) + +- Updated dependencies [[`d074b68`](https://github.com/livekit/agents-js/commit/d074b68b0fcb0f96768b425f27167a3c6ea2e5cd), [`3b068a5`](https://github.com/livekit/agents-js/commit/3b068a5679eae29ed114dfc7caa114dd9145accc), [`78dde70`](https://github.com/livekit/agents-js/commit/78dde705069bf38a3e9abcc6561c7163911b0ae7), [`931a217`](https://github.com/livekit/agents-js/commit/931a217014cd9425130d6580cc4cec2c44de96dc), [`c82fd8c`](https://github.com/livekit/agents-js/commit/c82fd8ca4046d3d03d235007953c17c19d9d766a)]: + - @livekit/agents@1.9.0 + ## 1.8.1 ### Patch Changes diff --git a/plugins/openai/package.json b/plugins/openai/package.json index 530e1d96f6..a7c61d0d7e 100644 --- a/plugins/openai/package.json +++ b/plugins/openai/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-openai", - "version": "1.8.1", + "version": "1.9.0", "description": "OpenAI plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/perplexity/CHANGELOG.md b/plugins/perplexity/CHANGELOG.md index d7dc631a68..f050d35e8f 100644 --- a/plugins/perplexity/CHANGELOG.md +++ b/plugins/perplexity/CHANGELOG.md @@ -1,5 +1,13 @@ # @livekit/agents-plugin-perplexity +## 1.9.0 + +### Patch Changes + +- Updated dependencies [[`d074b68`](https://github.com/livekit/agents-js/commit/d074b68b0fcb0f96768b425f27167a3c6ea2e5cd), [`3b068a5`](https://github.com/livekit/agents-js/commit/3b068a5679eae29ed114dfc7caa114dd9145accc), [`ab3dc99`](https://github.com/livekit/agents-js/commit/ab3dc99a725b772c13829cfa854302a0cd1734e7), [`78dde70`](https://github.com/livekit/agents-js/commit/78dde705069bf38a3e9abcc6561c7163911b0ae7), [`931a217`](https://github.com/livekit/agents-js/commit/931a217014cd9425130d6580cc4cec2c44de96dc), [`c82fd8c`](https://github.com/livekit/agents-js/commit/c82fd8ca4046d3d03d235007953c17c19d9d766a)]: + - @livekit/agents@1.9.0 + - @livekit/agents-plugin-openai@1.9.0 + ## 1.8.1 ### Patch Changes diff --git a/plugins/perplexity/package.json b/plugins/perplexity/package.json index fbd9cf8e67..3a14661196 100644 --- a/plugins/perplexity/package.json +++ b/plugins/perplexity/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-perplexity", - "version": "1.8.1", + "version": "1.9.0", "description": "Perplexity plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/phonic/CHANGELOG.md b/plugins/phonic/CHANGELOG.md index f9bd4f7dfe..88a07c3629 100644 --- a/plugins/phonic/CHANGELOG.md +++ b/plugins/phonic/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-phonic +## 1.9.0 + +### Patch Changes + +- Updated dependencies [[`d074b68`](https://github.com/livekit/agents-js/commit/d074b68b0fcb0f96768b425f27167a3c6ea2e5cd), [`3b068a5`](https://github.com/livekit/agents-js/commit/3b068a5679eae29ed114dfc7caa114dd9145accc), [`78dde70`](https://github.com/livekit/agents-js/commit/78dde705069bf38a3e9abcc6561c7163911b0ae7), [`931a217`](https://github.com/livekit/agents-js/commit/931a217014cd9425130d6580cc4cec2c44de96dc), [`c82fd8c`](https://github.com/livekit/agents-js/commit/c82fd8ca4046d3d03d235007953c17c19d9d766a)]: + - @livekit/agents@1.9.0 + ## 1.8.1 ### Patch Changes diff --git a/plugins/phonic/package.json b/plugins/phonic/package.json index f3d7b9fa0a..891cba4b29 100644 --- a/plugins/phonic/package.json +++ b/plugins/phonic/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-phonic", - "version": "1.8.1", + "version": "1.9.0", "description": "Phonic STS plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/protoface/CHANGELOG.md b/plugins/protoface/CHANGELOG.md index 76dd88e067..eff1b4d853 100644 --- a/plugins/protoface/CHANGELOG.md +++ b/plugins/protoface/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-protoface +## 1.9.0 + +### Patch Changes + +- Updated dependencies [[`d074b68`](https://github.com/livekit/agents-js/commit/d074b68b0fcb0f96768b425f27167a3c6ea2e5cd), [`3b068a5`](https://github.com/livekit/agents-js/commit/3b068a5679eae29ed114dfc7caa114dd9145accc), [`78dde70`](https://github.com/livekit/agents-js/commit/78dde705069bf38a3e9abcc6561c7163911b0ae7), [`931a217`](https://github.com/livekit/agents-js/commit/931a217014cd9425130d6580cc4cec2c44de96dc), [`c82fd8c`](https://github.com/livekit/agents-js/commit/c82fd8ca4046d3d03d235007953c17c19d9d766a)]: + - @livekit/agents@1.9.0 + ## 1.8.1 ### Patch Changes diff --git a/plugins/protoface/package.json b/plugins/protoface/package.json index f6dac47105..06bc4d6341 100644 --- a/plugins/protoface/package.json +++ b/plugins/protoface/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-protoface", - "version": "1.8.1", + "version": "1.9.0", "description": "Protoface avatar plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/resemble/CHANGELOG.md b/plugins/resemble/CHANGELOG.md index 8272952aea..eafca3b261 100644 --- a/plugins/resemble/CHANGELOG.md +++ b/plugins/resemble/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-resemble +## 1.9.0 + +### Patch Changes + +- Updated dependencies [[`d074b68`](https://github.com/livekit/agents-js/commit/d074b68b0fcb0f96768b425f27167a3c6ea2e5cd), [`3b068a5`](https://github.com/livekit/agents-js/commit/3b068a5679eae29ed114dfc7caa114dd9145accc), [`78dde70`](https://github.com/livekit/agents-js/commit/78dde705069bf38a3e9abcc6561c7163911b0ae7), [`931a217`](https://github.com/livekit/agents-js/commit/931a217014cd9425130d6580cc4cec2c44de96dc), [`c82fd8c`](https://github.com/livekit/agents-js/commit/c82fd8ca4046d3d03d235007953c17c19d9d766a)]: + - @livekit/agents@1.9.0 + ## 1.8.1 ### Patch Changes diff --git a/plugins/resemble/package.json b/plugins/resemble/package.json index 04edba8e7b..c93c6efc0b 100644 --- a/plugins/resemble/package.json +++ b/plugins/resemble/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-resemble", - "version": "1.8.1", + "version": "1.9.0", "description": "Resemble plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/rime/CHANGELOG.md b/plugins/rime/CHANGELOG.md index 1f83c3d3c6..a54cb42e58 100644 --- a/plugins/rime/CHANGELOG.md +++ b/plugins/rime/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-rime +## 1.9.0 + +### Patch Changes + +- Updated dependencies [[`d074b68`](https://github.com/livekit/agents-js/commit/d074b68b0fcb0f96768b425f27167a3c6ea2e5cd), [`3b068a5`](https://github.com/livekit/agents-js/commit/3b068a5679eae29ed114dfc7caa114dd9145accc), [`78dde70`](https://github.com/livekit/agents-js/commit/78dde705069bf38a3e9abcc6561c7163911b0ae7), [`931a217`](https://github.com/livekit/agents-js/commit/931a217014cd9425130d6580cc4cec2c44de96dc), [`c82fd8c`](https://github.com/livekit/agents-js/commit/c82fd8ca4046d3d03d235007953c17c19d9d766a)]: + - @livekit/agents@1.9.0 + ## 1.8.1 ### Patch Changes diff --git a/plugins/rime/package.json b/plugins/rime/package.json index d4ee90149a..d17561fb97 100644 --- a/plugins/rime/package.json +++ b/plugins/rime/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-rime", - "version": "1.8.1", + "version": "1.9.0", "description": "Rime plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/runway/CHANGELOG.md b/plugins/runway/CHANGELOG.md index 5f6e533ec7..ec1cf5d89e 100644 --- a/plugins/runway/CHANGELOG.md +++ b/plugins/runway/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-runway +## 1.9.0 + +### Patch Changes + +- Updated dependencies [[`d074b68`](https://github.com/livekit/agents-js/commit/d074b68b0fcb0f96768b425f27167a3c6ea2e5cd), [`3b068a5`](https://github.com/livekit/agents-js/commit/3b068a5679eae29ed114dfc7caa114dd9145accc), [`78dde70`](https://github.com/livekit/agents-js/commit/78dde705069bf38a3e9abcc6561c7163911b0ae7), [`931a217`](https://github.com/livekit/agents-js/commit/931a217014cd9425130d6580cc4cec2c44de96dc), [`c82fd8c`](https://github.com/livekit/agents-js/commit/c82fd8ca4046d3d03d235007953c17c19d9d766a)]: + - @livekit/agents@1.9.0 + ## 1.8.1 ### Patch Changes diff --git a/plugins/runway/package.json b/plugins/runway/package.json index 7da4fd0d28..8137568109 100644 --- a/plugins/runway/package.json +++ b/plugins/runway/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-runway", - "version": "1.8.1", + "version": "1.9.0", "description": "Runway plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/sarvam/CHANGELOG.md b/plugins/sarvam/CHANGELOG.md index 612b998b74..aff39ed688 100644 --- a/plugins/sarvam/CHANGELOG.md +++ b/plugins/sarvam/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-sarvam +## 1.9.0 + +### Patch Changes + +- Updated dependencies [[`d074b68`](https://github.com/livekit/agents-js/commit/d074b68b0fcb0f96768b425f27167a3c6ea2e5cd), [`3b068a5`](https://github.com/livekit/agents-js/commit/3b068a5679eae29ed114dfc7caa114dd9145accc), [`78dde70`](https://github.com/livekit/agents-js/commit/78dde705069bf38a3e9abcc6561c7163911b0ae7), [`931a217`](https://github.com/livekit/agents-js/commit/931a217014cd9425130d6580cc4cec2c44de96dc), [`c82fd8c`](https://github.com/livekit/agents-js/commit/c82fd8ca4046d3d03d235007953c17c19d9d766a)]: + - @livekit/agents@1.9.0 + ## 1.8.1 ### Patch Changes diff --git a/plugins/sarvam/package.json b/plugins/sarvam/package.json index 86f1beebe6..f1160ddc15 100644 --- a/plugins/sarvam/package.json +++ b/plugins/sarvam/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-sarvam", - "version": "1.8.1", + "version": "1.9.0", "description": "Sarvam AI plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/silero/CHANGELOG.md b/plugins/silero/CHANGELOG.md index 27090c1c9d..cfc10ed3d4 100644 --- a/plugins/silero/CHANGELOG.md +++ b/plugins/silero/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-silero +## 1.9.0 + +### Patch Changes + +- Updated dependencies [[`d074b68`](https://github.com/livekit/agents-js/commit/d074b68b0fcb0f96768b425f27167a3c6ea2e5cd), [`3b068a5`](https://github.com/livekit/agents-js/commit/3b068a5679eae29ed114dfc7caa114dd9145accc), [`78dde70`](https://github.com/livekit/agents-js/commit/78dde705069bf38a3e9abcc6561c7163911b0ae7), [`931a217`](https://github.com/livekit/agents-js/commit/931a217014cd9425130d6580cc4cec2c44de96dc), [`c82fd8c`](https://github.com/livekit/agents-js/commit/c82fd8ca4046d3d03d235007953c17c19d9d766a)]: + - @livekit/agents@1.9.0 + ## 1.8.1 ### Patch Changes diff --git a/plugins/silero/package.json b/plugins/silero/package.json index 04f9824340..f877e5f111 100644 --- a/plugins/silero/package.json +++ b/plugins/silero/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-silero", - "version": "1.8.1", + "version": "1.9.0", "description": "Silero voice activity detection LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/soniox/CHANGELOG.md b/plugins/soniox/CHANGELOG.md index c3719a963f..bb9c1319f8 100644 --- a/plugins/soniox/CHANGELOG.md +++ b/plugins/soniox/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-soniox +## 1.9.0 + +### Patch Changes + +- Updated dependencies [[`d074b68`](https://github.com/livekit/agents-js/commit/d074b68b0fcb0f96768b425f27167a3c6ea2e5cd), [`3b068a5`](https://github.com/livekit/agents-js/commit/3b068a5679eae29ed114dfc7caa114dd9145accc), [`78dde70`](https://github.com/livekit/agents-js/commit/78dde705069bf38a3e9abcc6561c7163911b0ae7), [`931a217`](https://github.com/livekit/agents-js/commit/931a217014cd9425130d6580cc4cec2c44de96dc), [`c82fd8c`](https://github.com/livekit/agents-js/commit/c82fd8ca4046d3d03d235007953c17c19d9d766a)]: + - @livekit/agents@1.9.0 + ## 1.8.1 ### Patch Changes diff --git a/plugins/soniox/package.json b/plugins/soniox/package.json index dccb47da78..a733f5e1ae 100644 --- a/plugins/soniox/package.json +++ b/plugins/soniox/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-soniox", - "version": "1.8.1", + "version": "1.9.0", "description": "Soniox plugin for LiveKit Agents for Node.js", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/tavus/CHANGELOG.md b/plugins/tavus/CHANGELOG.md index 7471039294..35893169b4 100644 --- a/plugins/tavus/CHANGELOG.md +++ b/plugins/tavus/CHANGELOG.md @@ -1,5 +1,14 @@ # @livekit/agents-plugin-tavus +## 1.9.0 + +### Patch Changes + +- Default Tavus conversations to the stock Lucy face when neither a face nor pal is provided. - [#2473](https://github.com/livekit/agents-js/pull/2473) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- Updated dependencies [[`d074b68`](https://github.com/livekit/agents-js/commit/d074b68b0fcb0f96768b425f27167a3c6ea2e5cd), [`3b068a5`](https://github.com/livekit/agents-js/commit/3b068a5679eae29ed114dfc7caa114dd9145accc), [`78dde70`](https://github.com/livekit/agents-js/commit/78dde705069bf38a3e9abcc6561c7163911b0ae7), [`931a217`](https://github.com/livekit/agents-js/commit/931a217014cd9425130d6580cc4cec2c44de96dc), [`c82fd8c`](https://github.com/livekit/agents-js/commit/c82fd8ca4046d3d03d235007953c17c19d9d766a)]: + - @livekit/agents@1.9.0 + ## 1.8.1 ### Patch Changes diff --git a/plugins/tavus/package.json b/plugins/tavus/package.json index 6bd2ee2a93..f348b8898a 100644 --- a/plugins/tavus/package.json +++ b/plugins/tavus/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-tavus", - "version": "1.8.1", + "version": "1.9.0", "description": "Tavus avatar plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/test/CHANGELOG.md b/plugins/test/CHANGELOG.md index e3d972759d..4efa99fec2 100644 --- a/plugins/test/CHANGELOG.md +++ b/plugins/test/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugins-test +## 1.9.0 + +### Patch Changes + +- Updated dependencies [[`d074b68`](https://github.com/livekit/agents-js/commit/d074b68b0fcb0f96768b425f27167a3c6ea2e5cd), [`3b068a5`](https://github.com/livekit/agents-js/commit/3b068a5679eae29ed114dfc7caa114dd9145accc), [`78dde70`](https://github.com/livekit/agents-js/commit/78dde705069bf38a3e9abcc6561c7163911b0ae7), [`931a217`](https://github.com/livekit/agents-js/commit/931a217014cd9425130d6580cc4cec2c44de96dc), [`c82fd8c`](https://github.com/livekit/agents-js/commit/c82fd8ca4046d3d03d235007953c17c19d9d766a)]: + - @livekit/agents@1.9.0 + ## 1.8.1 ### Patch Changes diff --git a/plugins/test/package.json b/plugins/test/package.json index 6a7787822e..cf234d5f45 100644 --- a/plugins/test/package.json +++ b/plugins/test/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugins-test", - "version": "1.8.1", + "version": "1.9.0", "description": "Testing suite for LiveKit Agents plugins", "author": "LiveKit", "type": "module", diff --git a/plugins/trugen/CHANGELOG.md b/plugins/trugen/CHANGELOG.md index 3170e5ea48..9884ed9a67 100644 --- a/plugins/trugen/CHANGELOG.md +++ b/plugins/trugen/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-trugen +## 1.9.0 + +### Patch Changes + +- Updated dependencies [[`d074b68`](https://github.com/livekit/agents-js/commit/d074b68b0fcb0f96768b425f27167a3c6ea2e5cd), [`3b068a5`](https://github.com/livekit/agents-js/commit/3b068a5679eae29ed114dfc7caa114dd9145accc), [`78dde70`](https://github.com/livekit/agents-js/commit/78dde705069bf38a3e9abcc6561c7163911b0ae7), [`931a217`](https://github.com/livekit/agents-js/commit/931a217014cd9425130d6580cc4cec2c44de96dc), [`c82fd8c`](https://github.com/livekit/agents-js/commit/c82fd8ca4046d3d03d235007953c17c19d9d766a)]: + - @livekit/agents@1.9.0 + ## 1.8.1 ### Patch Changes diff --git a/plugins/trugen/package.json b/plugins/trugen/package.json index 1127f7fab8..83a316310d 100644 --- a/plugins/trugen/package.json +++ b/plugins/trugen/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-trugen", - "version": "1.8.1", + "version": "1.9.0", "description": "Trugen avatar plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/xai/CHANGELOG.md b/plugins/xai/CHANGELOG.md index b5435d56ae..4597949c62 100644 --- a/plugins/xai/CHANGELOG.md +++ b/plugins/xai/CHANGELOG.md @@ -1,5 +1,13 @@ # @livekit/agents-plugin-xai +## 1.9.0 + +### Patch Changes + +- Updated dependencies [[`d074b68`](https://github.com/livekit/agents-js/commit/d074b68b0fcb0f96768b425f27167a3c6ea2e5cd), [`3b068a5`](https://github.com/livekit/agents-js/commit/3b068a5679eae29ed114dfc7caa114dd9145accc), [`ab3dc99`](https://github.com/livekit/agents-js/commit/ab3dc99a725b772c13829cfa854302a0cd1734e7), [`78dde70`](https://github.com/livekit/agents-js/commit/78dde705069bf38a3e9abcc6561c7163911b0ae7), [`931a217`](https://github.com/livekit/agents-js/commit/931a217014cd9425130d6580cc4cec2c44de96dc), [`c82fd8c`](https://github.com/livekit/agents-js/commit/c82fd8ca4046d3d03d235007953c17c19d9d766a)]: + - @livekit/agents@1.9.0 + - @livekit/agents-plugin-openai@1.9.0 + ## 1.8.1 ### Patch Changes diff --git a/plugins/xai/package.json b/plugins/xai/package.json index 61db14a251..34681e58a9 100644 --- a/plugins/xai/package.json +++ b/plugins/xai/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-xai", - "version": "1.8.1", + "version": "1.9.0", "description": "xAI plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs",