diff --git a/.changeset/agents-voice-audio-input-export.md b/.changeset/agents-voice-audio-input-export.md deleted file mode 100644 index ec69c4bb0..000000000 --- a/.changeset/agents-voice-audio-input-export.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': patch ---- - -Export the `AudioInput` base class from the `voice` module so plugins and applications can implement custom agent audio inputs. diff --git a/.changeset/azure-stt-cancellation-recovery.md b/.changeset/azure-stt-cancellation-recovery.md deleted file mode 100644 index 7eb9de684..000000000 --- a/.changeset/azure-stt-cancellation-recovery.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents-plugin-azure': patch ---- - -Add Azure streaming STT with cancellation error recovery. diff --git a/.changeset/chubby-months-stop.md b/.changeset/chubby-months-stop.md deleted file mode 100644 index ddefdf3e0..000000000 --- a/.changeset/chubby-months-stop.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents-plugin-lemonslice': patch ---- - -Add the ability for users to provide a local image to the LemonSlice transport to be used as the avatar image. diff --git a/.changeset/commit-inflight-turn-on-close.md b/.changeset/commit-inflight-turn-on-close.md deleted file mode 100644 index b4e53ddd8..000000000 --- a/.changeset/commit-inflight-turn-on-close.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': patch ---- - -Commit the in-flight assistant turn (interrupted: true, partially-forwarded text) when the session closes mid-playout — previously a room disconnect during playback dropped the turn from chatCtx entirely, with no ConversationItemAdded emitted (#2041) diff --git a/.changeset/dry-mirrors-pull.md b/.changeset/dry-mirrors-pull.md deleted file mode 100644 index 599db48f6..000000000 --- a/.changeset/dry-mirrors-pull.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents-plugin-lemonslice': patch ---- - -Convert extrapayload to snake_case diff --git a/.changeset/fishaudio-drop-startup-prebuffer.md b/.changeset/fishaudio-drop-startup-prebuffer.md deleted file mode 100644 index e113846df..000000000 --- a/.changeset/fishaudio-drop-startup-prebuffer.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents-plugin-fishaudio': patch ---- - -Drop Fish Audio's startup audio prebuffer so streaming audio starts from the opening chunk. diff --git a/.changeset/fishaudio-pool-prebuffer.md b/.changeset/fishaudio-pool-prebuffer.md deleted file mode 100644 index 733f47944..000000000 --- a/.changeset/fishaudio-pool-prebuffer.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents-plugin-fishaudio': patch ---- - -Reuse and prewarm Fish Audio streaming TTS websockets to avoid repeated connection setup. diff --git a/.changeset/fishaudio-tts-options.md b/.changeset/fishaudio-tts-options.md deleted file mode 100644 index 69c30a485..000000000 --- a/.changeset/fishaudio-tts-options.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents-plugin-fishaudio': patch ---- - -Expose Fish Audio TTS sampling, bitrate, and normalization options. diff --git a/.changeset/fresh-tts-chunked-retries.md b/.changeset/fresh-tts-chunked-retries.md deleted file mode 100644 index d947bc10c..000000000 --- a/.changeset/fresh-tts-chunked-retries.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': patch ---- - -Restart chunked TTS retries with a fresh attempt queue so retried synthesis uses a fresh request ID and does not write to a closed failed-attempt queue. diff --git a/.changeset/gemini-mixed-tools-cache.md b/.changeset/gemini-mixed-tools-cache.md deleted file mode 100644 index 592213767..000000000 --- a/.changeset/gemini-mixed-tools-cache.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@livekit/agents-plugin-google": patch ---- - -Gate mixed Gemini built-in and function tool requests to the Gemini 3 Developer API and build Google tool config in chat requests. diff --git a/.changeset/google-strip-thought-summaries.md b/.changeset/google-strip-thought-summaries.md deleted file mode 100644 index 5deaa6d9e..000000000 --- a/.changeset/google-strip-thought-summaries.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents-plugin-google': patch ---- - -Strip Gemini thought summary parts from Google LLM text output. diff --git a/.changeset/honor-ignore-on-enter-toolsets.md b/.changeset/honor-ignore-on-enter-toolsets.md deleted file mode 100644 index 6370558fd..000000000 --- a/.changeset/honor-ignore-on-enter-toolsets.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': patch ---- - -Honor `ToolFlag.IGNORE_ON_ENTER` for tools nested inside `Toolset`s. diff --git a/.changeset/instructions-template-collapse.md b/.changeset/instructions-template-collapse.md deleted file mode 100644 index 5698d35e6..000000000 --- a/.changeset/instructions-template-collapse.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': patch ---- - -Fix modality-aware instruction templates to collapse identical variants and avoid duplicate rendered output. diff --git a/.changeset/late-playback-started-dropped-turns.md b/.changeset/late-playback-started-dropped-turns.md deleted file mode 100644 index b588d191a..000000000 --- a/.changeset/late-playback-started-dropped-turns.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -'@livekit/agents': patch ---- - -fix(voice): stop dropping agent turns whose playback starts after audio forwarding completes (#1909, #1960; port of livekit/agents#5039). - -`forwardAudio` used to reject `firstFrameFut` (and detach its `PLAYBACK_STARTED` listener) in its `finally` block whenever no frame had played by the time forwarding finished. Two real scenarios hit this window: a speech paused in the thinking state by a brief user sound, whose buffered first frame only plays after the false interruption clears (#1909), and DataStream avatar outputs with `waitPlaybackStart: true`, which deliver `lk.playback_started` ~1s after frames were captured (#1960). In both cases the late playback-started event found nothing listening, the reply was classified "skipped", and the turn was silently removed from the chat context while the agent never entered the `speaking` state. - -The `PLAYBACK_STARTED` listener now lives in `performAudioForwarding` so it outlives the forwarding task, and `forwardAudio` no longer settles the future; the reply tasks (including the `say()` path) settle it once the playout window ends, which also detaches the listener. A reported non-zero playback position on interruption is additionally honored as evidence of partial playback — but only when the segment actually captured a frame into the output (tracked via the output's segment count, which is also what makes the reported position fresh rather than stale) — covering avatars whose playback-started RPC races the interruption itself. diff --git a/.changeset/lemonslice-meeting-support.md b/.changeset/lemonslice-meeting-support.md deleted file mode 100644 index 64ddbfeb6..000000000 --- a/.changeset/lemonslice-meeting-support.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents-plugin-lemonslice': patch ---- - -Add external meeting support to the LemonSlice avatar plugin: `joinMeeting()` and `leaveMeeting()` send the avatar into Zoom, Google Meet, Microsoft Teams, or Webex meetings, stream mixed meeting audio into the agent session's STT, and optionally relay meeting chat messages as user input. diff --git a/.changeset/openai-realtime-fatal-errors.md b/.changeset/openai-realtime-fatal-errors.md deleted file mode 100644 index 08bd02b96..000000000 --- a/.changeset/openai-realtime-fatal-errors.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents-plugin-openai': patch ---- - -Stop OpenAI realtime sessions from reconnecting forever after fatal server errors. diff --git a/.changeset/openai-websocket-model-url.md b/.changeset/openai-websocket-model-url.md deleted file mode 100644 index 3c266eecc..000000000 --- a/.changeset/openai-websocket-model-url.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents-plugin-openai': patch ---- - -Include OpenAI model names on Responses WebSocket URLs for gateway endpoints. diff --git a/.changeset/preserve-llm-response-telemetry.md b/.changeset/preserve-llm-response-telemetry.md deleted file mode 100644 index 57992201f..000000000 --- a/.changeset/preserve-llm-response-telemetry.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': patch ---- - -Preserve partial LLM response telemetry and generated function calls on every inference exit path. diff --git a/.changeset/recorder-io-final-speech-flush.md b/.changeset/recorder-io-final-speech-flush.md deleted file mode 100644 index f37f3fc77..000000000 --- a/.changeset/recorder-io-final-speech-flush.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': patch ---- - -fix(voice): stop RecorderIO from dropping the final agent speech at session teardown. A force-interrupted shutdown marks the current speech done before playout settles, so the recorder could close and fence out the in-flight playbackFinished flush, silently losing the last agent turn and trailing mic audio from the recording. RecorderIO.close() now waits (bounded) for the pending playback event — which carries the authoritative playback position — before fencing, flushes any input captured since the last write, and warns if unflushed agent audio had to be dropped. diff --git a/.changeset/remove-native-transcript-sync.md b/.changeset/remove-native-transcript-sync.md deleted file mode 100644 index a28e1e4f9..000000000 --- a/.changeset/remove-native-transcript-sync.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@livekit/agents-plugin-phonic': patch -'@livekit/agents': patch ---- - -Deprecate the `nativeTranscriptSync` realtime model capability while preserving its existing transcript synchronization behavior for third-party models. Remove Phonic's redundant explicit opt-out now that it uses `stream_ahead_of_real_time` mode. diff --git a/.changeset/replace-prefix-holdback.md b/.changeset/replace-prefix-holdback.md deleted file mode 100644 index 79a8a0be6..000000000 --- a/.changeset/replace-prefix-holdback.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': patch ---- - -Avoid splitting streamed replacement output mid-word when no replacement key prefix is pending. diff --git a/.changeset/send-dtmf-active-room.md b/.changeset/send-dtmf-active-room.md deleted file mode 100644 index 8e8868e6e..000000000 --- a/.changeset/send-dtmf-active-room.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': patch ---- - -Add a beta DTMF sending tool that publishes to the active agent session room. diff --git a/.changeset/soft-tigers-speak.md b/.changeset/soft-tigers-speak.md deleted file mode 100644 index 96ef20253..000000000 --- a/.changeset/soft-tigers-speak.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents-plugin-soniox': patch ---- - -Add Soniox TTS support with configurable speaking speed. diff --git a/.changeset/soniox-endpoint-latency-adjustment.md b/.changeset/soniox-endpoint-latency-adjustment.md deleted file mode 100644 index 6950ebc9d..000000000 --- a/.changeset/soniox-endpoint-latency-adjustment.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents-plugin-soniox': patch ---- - -Add Soniox endpoint latency adjustment level STT option. diff --git a/.changeset/xai-tts-speed.md b/.changeset/xai-tts-speed.md deleted file mode 100644 index 8e1552b68..000000000 --- a/.changeset/xai-tts-speed.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': patch ---- - -Add `speed` to xAI TTS inference options. diff --git a/.changeset/xai-tts-websocket-deadline.md b/.changeset/xai-tts-websocket-deadline.md deleted file mode 100644 index 1f43a452b..000000000 --- a/.changeset/xai-tts-websocket-deadline.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents-plugin-xai': patch ---- - -Add xAI TTS support with websocket connection rotation before xAI's server deadline. diff --git a/agents/CHANGELOG.md b/agents/CHANGELOG.md index c598285e8..f846aa6b7 100644 --- a/agents/CHANGELOG.md +++ b/agents/CHANGELOG.md @@ -1,5 +1,37 @@ # @livekit/agents +## 1.5.3 + +### Patch Changes + +- Export the `AudioInput` base class from the `voice` module so plugins and applications can implement custom agent audio inputs. - [#2036](https://github.com/livekit/agents-js/pull/2036) ([@aweitz](https://github.com/aweitz)) + +- Commit the in-flight assistant turn (interrupted: true, partially-forwarded text) when the session closes mid-playout — previously a room disconnect during playback dropped the turn from chatCtx entirely, with no ConversationItemAdded emitted (#2041) - [#2042](https://github.com/livekit/agents-js/pull/2042) ([@Sarfaraz85](https://github.com/Sarfaraz85)) + +- Restart chunked TTS retries with a fresh attempt queue so retried synthesis uses a fresh request ID and does not write to a closed failed-attempt queue. - [#1994](https://github.com/livekit/agents-js/pull/1994) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- Honor `ToolFlag.IGNORE_ON_ENTER` for tools nested inside `Toolset`s. - [#2011](https://github.com/livekit/agents-js/pull/2011) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- Fix modality-aware instruction templates to collapse identical variants and avoid duplicate rendered output. - [#2030](https://github.com/livekit/agents-js/pull/2030) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- fix(voice): stop dropping agent turns whose playback starts after audio forwarding completes (#1909, #1960; port of livekit/agents#5039). - [#1966](https://github.com/livekit/agents-js/pull/1966) ([@toubatbrian](https://github.com/toubatbrian)) + + `forwardAudio` used to reject `firstFrameFut` (and detach its `PLAYBACK_STARTED` listener) in its `finally` block whenever no frame had played by the time forwarding finished. Two real scenarios hit this window: a speech paused in the thinking state by a brief user sound, whose buffered first frame only plays after the false interruption clears (#1909), and DataStream avatar outputs with `waitPlaybackStart: true`, which deliver `lk.playback_started` ~1s after frames were captured (#1960). In both cases the late playback-started event found nothing listening, the reply was classified "skipped", and the turn was silently removed from the chat context while the agent never entered the `speaking` state. + + The `PLAYBACK_STARTED` listener now lives in `performAudioForwarding` so it outlives the forwarding task, and `forwardAudio` no longer settles the future; the reply tasks (including the `say()` path) settle it once the playout window ends, which also detaches the listener. A reported non-zero playback position on interruption is additionally honored as evidence of partial playback — but only when the segment actually captured a frame into the output (tracked via the output's segment count, which is also what makes the reported position fresh rather than stale) — covering avatars whose playback-started RPC races the interruption itself. + +- Preserve partial LLM response telemetry and generated function calls on every inference exit path. - [#2048](https://github.com/livekit/agents-js/pull/2048) ([@toubatbrian](https://github.com/toubatbrian)) + +- fix(voice): stop RecorderIO from dropping the final agent speech at session teardown. A force-interrupted shutdown marks the current speech done before playout settles, so the recorder could close and fence out the in-flight playbackFinished flush, silently losing the last agent turn and trailing mic audio from the recording. RecorderIO.close() now waits (bounded) for the pending playback event — which carries the authoritative playback position — before fencing, flushes any input captured since the last write, and warns if unflushed agent audio had to be dropped. - [#2037](https://github.com/livekit/agents-js/pull/2037) ([@chenghao-mou](https://github.com/chenghao-mou)) + +- Deprecate the `nativeTranscriptSync` realtime model capability while preserving its existing transcript synchronization behavior for third-party models. Remove Phonic's redundant explicit opt-out now that it uses `stream_ahead_of_real_time` mode. - [#2044](https://github.com/livekit/agents-js/pull/2044) ([@tinalenguyen](https://github.com/tinalenguyen)) + +- Avoid splitting streamed replacement output mid-word when no replacement key prefix is pending. - [#2050](https://github.com/livekit/agents-js/pull/2050) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- Add a beta DTMF sending tool that publishes to the active agent session room. - [#2010](https://github.com/livekit/agents-js/pull/2010) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- Add `speed` to xAI TTS inference options. - [#2028](https://github.com/livekit/agents-js/pull/2028) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + ## 1.5.2 ## 1.5.1 diff --git a/agents/package.json b/agents/package.json index 0b23b57b6..38a5ddd78 100644 --- a/agents/package.json +++ b/agents/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents", - "version": "1.5.2", + "version": "1.5.3", "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 7377c734f..0ee5fe6de 100644 --- a/plugins/anam/CHANGELOG.md +++ b/plugins/anam/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-anam +## 1.5.3 + +### Patch Changes + +- Updated dependencies [[`3c19945`](https://github.com/livekit/agents-js/commit/3c1994531efc43975fec30d29289b06abdd6b14f), [`7db92dd`](https://github.com/livekit/agents-js/commit/7db92dd9808c7df5aeb7d06286496a31f49674ba), [`b9d8e95`](https://github.com/livekit/agents-js/commit/b9d8e95b3dbe62cf21e66e345495acb6d8dd768b), [`bad25fd`](https://github.com/livekit/agents-js/commit/bad25fd1dba0e6676fc1153a443dc6acde82626d), [`206e884`](https://github.com/livekit/agents-js/commit/206e884914f8beb658235351bf1c6a20b98d3ac6), [`16ac15e`](https://github.com/livekit/agents-js/commit/16ac15ecbeebe0e3d9e21edf4a29bdb90c969b33), [`6300c1c`](https://github.com/livekit/agents-js/commit/6300c1c9242690589866c6767238aa0c31f3ad30), [`dfd6654`](https://github.com/livekit/agents-js/commit/dfd66540e1e7eb00f8c0b0bfc830e9eeaf0f33ed), [`97c5aa2`](https://github.com/livekit/agents-js/commit/97c5aa23a73eb48e128300f8f58d3c9a79db4be1), [`13a191c`](https://github.com/livekit/agents-js/commit/13a191c71088bdd9d4db112f9b57976c1530753f), [`508236a`](https://github.com/livekit/agents-js/commit/508236a77d5b3dd97b93c3b47030f5852dcdd5fe), [`2312eed`](https://github.com/livekit/agents-js/commit/2312eedf02dceaed0ef8554f545c2a5acd720121)]: + - @livekit/agents@1.5.3 + ## 1.5.2 ### Patch Changes diff --git a/plugins/anam/package.json b/plugins/anam/package.json index 8d25c5aab..3627256c9 100644 --- a/plugins/anam/package.json +++ b/plugins/anam/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-anam", - "version": "1.5.2", + "version": "1.5.3", "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 1b7b4fccb..8bceb54d7 100644 --- a/plugins/anthropic/CHANGELOG.md +++ b/plugins/anthropic/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-anthropic +## 1.5.3 + +### Patch Changes + +- Updated dependencies [[`3c19945`](https://github.com/livekit/agents-js/commit/3c1994531efc43975fec30d29289b06abdd6b14f), [`7db92dd`](https://github.com/livekit/agents-js/commit/7db92dd9808c7df5aeb7d06286496a31f49674ba), [`b9d8e95`](https://github.com/livekit/agents-js/commit/b9d8e95b3dbe62cf21e66e345495acb6d8dd768b), [`bad25fd`](https://github.com/livekit/agents-js/commit/bad25fd1dba0e6676fc1153a443dc6acde82626d), [`206e884`](https://github.com/livekit/agents-js/commit/206e884914f8beb658235351bf1c6a20b98d3ac6), [`16ac15e`](https://github.com/livekit/agents-js/commit/16ac15ecbeebe0e3d9e21edf4a29bdb90c969b33), [`6300c1c`](https://github.com/livekit/agents-js/commit/6300c1c9242690589866c6767238aa0c31f3ad30), [`dfd6654`](https://github.com/livekit/agents-js/commit/dfd66540e1e7eb00f8c0b0bfc830e9eeaf0f33ed), [`97c5aa2`](https://github.com/livekit/agents-js/commit/97c5aa23a73eb48e128300f8f58d3c9a79db4be1), [`13a191c`](https://github.com/livekit/agents-js/commit/13a191c71088bdd9d4db112f9b57976c1530753f), [`508236a`](https://github.com/livekit/agents-js/commit/508236a77d5b3dd97b93c3b47030f5852dcdd5fe), [`2312eed`](https://github.com/livekit/agents-js/commit/2312eedf02dceaed0ef8554f545c2a5acd720121)]: + - @livekit/agents@1.5.3 + ## 1.5.2 ### Patch Changes diff --git a/plugins/anthropic/package.json b/plugins/anthropic/package.json index 5050ef384..1ecc3c484 100644 --- a/plugins/anthropic/package.json +++ b/plugins/anthropic/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-anthropic", - "version": "1.5.2", + "version": "1.5.3", "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 005743372..840521def 100644 --- a/plugins/assemblyai/CHANGELOG.md +++ b/plugins/assemblyai/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-assemblyai +## 1.5.3 + +### Patch Changes + +- Updated dependencies [[`3c19945`](https://github.com/livekit/agents-js/commit/3c1994531efc43975fec30d29289b06abdd6b14f), [`7db92dd`](https://github.com/livekit/agents-js/commit/7db92dd9808c7df5aeb7d06286496a31f49674ba), [`b9d8e95`](https://github.com/livekit/agents-js/commit/b9d8e95b3dbe62cf21e66e345495acb6d8dd768b), [`bad25fd`](https://github.com/livekit/agents-js/commit/bad25fd1dba0e6676fc1153a443dc6acde82626d), [`206e884`](https://github.com/livekit/agents-js/commit/206e884914f8beb658235351bf1c6a20b98d3ac6), [`16ac15e`](https://github.com/livekit/agents-js/commit/16ac15ecbeebe0e3d9e21edf4a29bdb90c969b33), [`6300c1c`](https://github.com/livekit/agents-js/commit/6300c1c9242690589866c6767238aa0c31f3ad30), [`dfd6654`](https://github.com/livekit/agents-js/commit/dfd66540e1e7eb00f8c0b0bfc830e9eeaf0f33ed), [`97c5aa2`](https://github.com/livekit/agents-js/commit/97c5aa23a73eb48e128300f8f58d3c9a79db4be1), [`13a191c`](https://github.com/livekit/agents-js/commit/13a191c71088bdd9d4db112f9b57976c1530753f), [`508236a`](https://github.com/livekit/agents-js/commit/508236a77d5b3dd97b93c3b47030f5852dcdd5fe), [`2312eed`](https://github.com/livekit/agents-js/commit/2312eedf02dceaed0ef8554f545c2a5acd720121)]: + - @livekit/agents@1.5.3 + ## 1.5.2 ### Patch Changes diff --git a/plugins/assemblyai/package.json b/plugins/assemblyai/package.json index 5069063e4..95bd49e68 100644 --- a/plugins/assemblyai/package.json +++ b/plugins/assemblyai/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-assemblyai", - "version": "1.5.2", + "version": "1.5.3", "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 new file mode 100644 index 000000000..67c7e0628 --- /dev/null +++ b/plugins/azure/CHANGELOG.md @@ -0,0 +1,10 @@ +# @livekit/agents-plugin-azure + +## 1.5.3 + +### Patch Changes + +- Add Azure streaming STT with cancellation error recovery. - [#2009](https://github.com/livekit/agents-js/pull/2009) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- Updated dependencies [[`3c19945`](https://github.com/livekit/agents-js/commit/3c1994531efc43975fec30d29289b06abdd6b14f), [`7db92dd`](https://github.com/livekit/agents-js/commit/7db92dd9808c7df5aeb7d06286496a31f49674ba), [`b9d8e95`](https://github.com/livekit/agents-js/commit/b9d8e95b3dbe62cf21e66e345495acb6d8dd768b), [`bad25fd`](https://github.com/livekit/agents-js/commit/bad25fd1dba0e6676fc1153a443dc6acde82626d), [`206e884`](https://github.com/livekit/agents-js/commit/206e884914f8beb658235351bf1c6a20b98d3ac6), [`16ac15e`](https://github.com/livekit/agents-js/commit/16ac15ecbeebe0e3d9e21edf4a29bdb90c969b33), [`6300c1c`](https://github.com/livekit/agents-js/commit/6300c1c9242690589866c6767238aa0c31f3ad30), [`dfd6654`](https://github.com/livekit/agents-js/commit/dfd66540e1e7eb00f8c0b0bfc830e9eeaf0f33ed), [`97c5aa2`](https://github.com/livekit/agents-js/commit/97c5aa23a73eb48e128300f8f58d3c9a79db4be1), [`13a191c`](https://github.com/livekit/agents-js/commit/13a191c71088bdd9d4db112f9b57976c1530753f), [`508236a`](https://github.com/livekit/agents-js/commit/508236a77d5b3dd97b93c3b47030f5852dcdd5fe), [`2312eed`](https://github.com/livekit/agents-js/commit/2312eedf02dceaed0ef8554f545c2a5acd720121)]: + - @livekit/agents@1.5.3 diff --git a/plugins/azure/package.json b/plugins/azure/package.json index 0ffae04d6..cab7d2e2d 100644 --- a/plugins/azure/package.json +++ b/plugins/azure/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-azure", - "version": "1.5.0", + "version": "1.5.3", "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 2e789c052..283a9a6cb 100644 --- a/plugins/baseten/CHANGELOG.md +++ b/plugins/baseten/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-baseten +## 1.5.3 + +### Patch Changes + +- Updated dependencies [[`3c19945`](https://github.com/livekit/agents-js/commit/3c1994531efc43975fec30d29289b06abdd6b14f), [`7db92dd`](https://github.com/livekit/agents-js/commit/7db92dd9808c7df5aeb7d06286496a31f49674ba), [`b9d8e95`](https://github.com/livekit/agents-js/commit/b9d8e95b3dbe62cf21e66e345495acb6d8dd768b), [`bad25fd`](https://github.com/livekit/agents-js/commit/bad25fd1dba0e6676fc1153a443dc6acde82626d), [`206e884`](https://github.com/livekit/agents-js/commit/206e884914f8beb658235351bf1c6a20b98d3ac6), [`16ac15e`](https://github.com/livekit/agents-js/commit/16ac15ecbeebe0e3d9e21edf4a29bdb90c969b33), [`6300c1c`](https://github.com/livekit/agents-js/commit/6300c1c9242690589866c6767238aa0c31f3ad30), [`dfd6654`](https://github.com/livekit/agents-js/commit/dfd66540e1e7eb00f8c0b0bfc830e9eeaf0f33ed), [`97c5aa2`](https://github.com/livekit/agents-js/commit/97c5aa23a73eb48e128300f8f58d3c9a79db4be1), [`13a191c`](https://github.com/livekit/agents-js/commit/13a191c71088bdd9d4db112f9b57976c1530753f), [`508236a`](https://github.com/livekit/agents-js/commit/508236a77d5b3dd97b93c3b47030f5852dcdd5fe), [`2312eed`](https://github.com/livekit/agents-js/commit/2312eedf02dceaed0ef8554f545c2a5acd720121)]: + - @livekit/agents@1.5.3 + ## 1.5.2 ### Patch Changes diff --git a/plugins/baseten/package.json b/plugins/baseten/package.json index 8697a8919..c7d15193e 100644 --- a/plugins/baseten/package.json +++ b/plugins/baseten/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-baseten", - "version": "1.5.2", + "version": "1.5.3", "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 2dc66c5f2..446935e3e 100644 --- a/plugins/bey/CHANGELOG.md +++ b/plugins/bey/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-bey +## 1.5.3 + +### Patch Changes + +- Updated dependencies [[`3c19945`](https://github.com/livekit/agents-js/commit/3c1994531efc43975fec30d29289b06abdd6b14f), [`7db92dd`](https://github.com/livekit/agents-js/commit/7db92dd9808c7df5aeb7d06286496a31f49674ba), [`b9d8e95`](https://github.com/livekit/agents-js/commit/b9d8e95b3dbe62cf21e66e345495acb6d8dd768b), [`bad25fd`](https://github.com/livekit/agents-js/commit/bad25fd1dba0e6676fc1153a443dc6acde82626d), [`206e884`](https://github.com/livekit/agents-js/commit/206e884914f8beb658235351bf1c6a20b98d3ac6), [`16ac15e`](https://github.com/livekit/agents-js/commit/16ac15ecbeebe0e3d9e21edf4a29bdb90c969b33), [`6300c1c`](https://github.com/livekit/agents-js/commit/6300c1c9242690589866c6767238aa0c31f3ad30), [`dfd6654`](https://github.com/livekit/agents-js/commit/dfd66540e1e7eb00f8c0b0bfc830e9eeaf0f33ed), [`97c5aa2`](https://github.com/livekit/agents-js/commit/97c5aa23a73eb48e128300f8f58d3c9a79db4be1), [`13a191c`](https://github.com/livekit/agents-js/commit/13a191c71088bdd9d4db112f9b57976c1530753f), [`508236a`](https://github.com/livekit/agents-js/commit/508236a77d5b3dd97b93c3b47030f5852dcdd5fe), [`2312eed`](https://github.com/livekit/agents-js/commit/2312eedf02dceaed0ef8554f545c2a5acd720121)]: + - @livekit/agents@1.5.3 + ## 1.5.2 ### Patch Changes diff --git a/plugins/bey/package.json b/plugins/bey/package.json index 4442c2bb2..699ff0d96 100644 --- a/plugins/bey/package.json +++ b/plugins/bey/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-bey", - "version": "1.5.2", + "version": "1.5.3", "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 a1d40db1b..0a000a6c1 100644 --- a/plugins/cartesia/CHANGELOG.md +++ b/plugins/cartesia/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-cartesia +## 1.5.3 + +### Patch Changes + +- Updated dependencies [[`3c19945`](https://github.com/livekit/agents-js/commit/3c1994531efc43975fec30d29289b06abdd6b14f), [`7db92dd`](https://github.com/livekit/agents-js/commit/7db92dd9808c7df5aeb7d06286496a31f49674ba), [`b9d8e95`](https://github.com/livekit/agents-js/commit/b9d8e95b3dbe62cf21e66e345495acb6d8dd768b), [`bad25fd`](https://github.com/livekit/agents-js/commit/bad25fd1dba0e6676fc1153a443dc6acde82626d), [`206e884`](https://github.com/livekit/agents-js/commit/206e884914f8beb658235351bf1c6a20b98d3ac6), [`16ac15e`](https://github.com/livekit/agents-js/commit/16ac15ecbeebe0e3d9e21edf4a29bdb90c969b33), [`6300c1c`](https://github.com/livekit/agents-js/commit/6300c1c9242690589866c6767238aa0c31f3ad30), [`dfd6654`](https://github.com/livekit/agents-js/commit/dfd66540e1e7eb00f8c0b0bfc830e9eeaf0f33ed), [`97c5aa2`](https://github.com/livekit/agents-js/commit/97c5aa23a73eb48e128300f8f58d3c9a79db4be1), [`13a191c`](https://github.com/livekit/agents-js/commit/13a191c71088bdd9d4db112f9b57976c1530753f), [`508236a`](https://github.com/livekit/agents-js/commit/508236a77d5b3dd97b93c3b47030f5852dcdd5fe), [`2312eed`](https://github.com/livekit/agents-js/commit/2312eedf02dceaed0ef8554f545c2a5acd720121)]: + - @livekit/agents@1.5.3 + ## 1.5.2 ### Patch Changes diff --git a/plugins/cartesia/package.json b/plugins/cartesia/package.json index c264b4307..ba0a8a234 100644 --- a/plugins/cartesia/package.json +++ b/plugins/cartesia/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-cartesia", - "version": "1.5.2", + "version": "1.5.3", "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 bc1c48e84..3e775a711 100644 --- a/plugins/cerebras/CHANGELOG.md +++ b/plugins/cerebras/CHANGELOG.md @@ -1,5 +1,13 @@ # @livekit/agents-plugin-cerebras +## 1.5.3 + +### Patch Changes + +- Updated dependencies [[`3c19945`](https://github.com/livekit/agents-js/commit/3c1994531efc43975fec30d29289b06abdd6b14f), [`7db92dd`](https://github.com/livekit/agents-js/commit/7db92dd9808c7df5aeb7d06286496a31f49674ba), [`b9d8e95`](https://github.com/livekit/agents-js/commit/b9d8e95b3dbe62cf21e66e345495acb6d8dd768b), [`bad25fd`](https://github.com/livekit/agents-js/commit/bad25fd1dba0e6676fc1153a443dc6acde82626d), [`206e884`](https://github.com/livekit/agents-js/commit/206e884914f8beb658235351bf1c6a20b98d3ac6), [`16ac15e`](https://github.com/livekit/agents-js/commit/16ac15ecbeebe0e3d9e21edf4a29bdb90c969b33), [`6a998f6`](https://github.com/livekit/agents-js/commit/6a998f6b48625f928e7c38fbe31569ad0bf1ba76), [`c0c927a`](https://github.com/livekit/agents-js/commit/c0c927a741c2f2de964c2758e263897737d6ddd1), [`6300c1c`](https://github.com/livekit/agents-js/commit/6300c1c9242690589866c6767238aa0c31f3ad30), [`dfd6654`](https://github.com/livekit/agents-js/commit/dfd66540e1e7eb00f8c0b0bfc830e9eeaf0f33ed), [`97c5aa2`](https://github.com/livekit/agents-js/commit/97c5aa23a73eb48e128300f8f58d3c9a79db4be1), [`13a191c`](https://github.com/livekit/agents-js/commit/13a191c71088bdd9d4db112f9b57976c1530753f), [`508236a`](https://github.com/livekit/agents-js/commit/508236a77d5b3dd97b93c3b47030f5852dcdd5fe), [`2312eed`](https://github.com/livekit/agents-js/commit/2312eedf02dceaed0ef8554f545c2a5acd720121)]: + - @livekit/agents@1.5.3 + - @livekit/agents-plugin-openai@1.5.3 + ## 1.5.2 ### Patch Changes diff --git a/plugins/cerebras/package.json b/plugins/cerebras/package.json index b0a964022..381ca5d94 100644 --- a/plugins/cerebras/package.json +++ b/plugins/cerebras/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-cerebras", - "version": "1.5.2", + "version": "1.5.3", "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 6d009ffd0..6a24832f1 100644 --- a/plugins/deepgram/CHANGELOG.md +++ b/plugins/deepgram/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-deepgram +## 1.5.3 + +### Patch Changes + +- Updated dependencies [[`3c19945`](https://github.com/livekit/agents-js/commit/3c1994531efc43975fec30d29289b06abdd6b14f), [`7db92dd`](https://github.com/livekit/agents-js/commit/7db92dd9808c7df5aeb7d06286496a31f49674ba), [`b9d8e95`](https://github.com/livekit/agents-js/commit/b9d8e95b3dbe62cf21e66e345495acb6d8dd768b), [`bad25fd`](https://github.com/livekit/agents-js/commit/bad25fd1dba0e6676fc1153a443dc6acde82626d), [`206e884`](https://github.com/livekit/agents-js/commit/206e884914f8beb658235351bf1c6a20b98d3ac6), [`16ac15e`](https://github.com/livekit/agents-js/commit/16ac15ecbeebe0e3d9e21edf4a29bdb90c969b33), [`6300c1c`](https://github.com/livekit/agents-js/commit/6300c1c9242690589866c6767238aa0c31f3ad30), [`dfd6654`](https://github.com/livekit/agents-js/commit/dfd66540e1e7eb00f8c0b0bfc830e9eeaf0f33ed), [`97c5aa2`](https://github.com/livekit/agents-js/commit/97c5aa23a73eb48e128300f8f58d3c9a79db4be1), [`13a191c`](https://github.com/livekit/agents-js/commit/13a191c71088bdd9d4db112f9b57976c1530753f), [`508236a`](https://github.com/livekit/agents-js/commit/508236a77d5b3dd97b93c3b47030f5852dcdd5fe), [`2312eed`](https://github.com/livekit/agents-js/commit/2312eedf02dceaed0ef8554f545c2a5acd720121)]: + - @livekit/agents@1.5.3 + ## 1.5.2 ### Patch Changes diff --git a/plugins/deepgram/package.json b/plugins/deepgram/package.json index cea2d1e0b..2702135d4 100644 --- a/plugins/deepgram/package.json +++ b/plugins/deepgram/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-deepgram", - "version": "1.5.2", + "version": "1.5.3", "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 532f3e0ca..acd9fdefd 100644 --- a/plugins/did/CHANGELOG.md +++ b/plugins/did/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-did +## 1.5.3 + +### Patch Changes + +- Updated dependencies [[`3c19945`](https://github.com/livekit/agents-js/commit/3c1994531efc43975fec30d29289b06abdd6b14f), [`7db92dd`](https://github.com/livekit/agents-js/commit/7db92dd9808c7df5aeb7d06286496a31f49674ba), [`b9d8e95`](https://github.com/livekit/agents-js/commit/b9d8e95b3dbe62cf21e66e345495acb6d8dd768b), [`bad25fd`](https://github.com/livekit/agents-js/commit/bad25fd1dba0e6676fc1153a443dc6acde82626d), [`206e884`](https://github.com/livekit/agents-js/commit/206e884914f8beb658235351bf1c6a20b98d3ac6), [`16ac15e`](https://github.com/livekit/agents-js/commit/16ac15ecbeebe0e3d9e21edf4a29bdb90c969b33), [`6300c1c`](https://github.com/livekit/agents-js/commit/6300c1c9242690589866c6767238aa0c31f3ad30), [`dfd6654`](https://github.com/livekit/agents-js/commit/dfd66540e1e7eb00f8c0b0bfc830e9eeaf0f33ed), [`97c5aa2`](https://github.com/livekit/agents-js/commit/97c5aa23a73eb48e128300f8f58d3c9a79db4be1), [`13a191c`](https://github.com/livekit/agents-js/commit/13a191c71088bdd9d4db112f9b57976c1530753f), [`508236a`](https://github.com/livekit/agents-js/commit/508236a77d5b3dd97b93c3b47030f5852dcdd5fe), [`2312eed`](https://github.com/livekit/agents-js/commit/2312eedf02dceaed0ef8554f545c2a5acd720121)]: + - @livekit/agents@1.5.3 + ## 1.5.2 ### Patch Changes diff --git a/plugins/did/package.json b/plugins/did/package.json index 37ba22d0a..dfb10d9cf 100644 --- a/plugins/did/package.json +++ b/plugins/did/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-did", - "version": "1.5.2", + "version": "1.5.3", "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 b95673f15..5323c9980 100644 --- a/plugins/elevenlabs/CHANGELOG.md +++ b/plugins/elevenlabs/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-elevenlabs +## 1.5.3 + +### Patch Changes + +- Updated dependencies [[`3c19945`](https://github.com/livekit/agents-js/commit/3c1994531efc43975fec30d29289b06abdd6b14f), [`7db92dd`](https://github.com/livekit/agents-js/commit/7db92dd9808c7df5aeb7d06286496a31f49674ba), [`b9d8e95`](https://github.com/livekit/agents-js/commit/b9d8e95b3dbe62cf21e66e345495acb6d8dd768b), [`bad25fd`](https://github.com/livekit/agents-js/commit/bad25fd1dba0e6676fc1153a443dc6acde82626d), [`206e884`](https://github.com/livekit/agents-js/commit/206e884914f8beb658235351bf1c6a20b98d3ac6), [`16ac15e`](https://github.com/livekit/agents-js/commit/16ac15ecbeebe0e3d9e21edf4a29bdb90c969b33), [`6300c1c`](https://github.com/livekit/agents-js/commit/6300c1c9242690589866c6767238aa0c31f3ad30), [`dfd6654`](https://github.com/livekit/agents-js/commit/dfd66540e1e7eb00f8c0b0bfc830e9eeaf0f33ed), [`97c5aa2`](https://github.com/livekit/agents-js/commit/97c5aa23a73eb48e128300f8f58d3c9a79db4be1), [`13a191c`](https://github.com/livekit/agents-js/commit/13a191c71088bdd9d4db112f9b57976c1530753f), [`508236a`](https://github.com/livekit/agents-js/commit/508236a77d5b3dd97b93c3b47030f5852dcdd5fe), [`2312eed`](https://github.com/livekit/agents-js/commit/2312eedf02dceaed0ef8554f545c2a5acd720121)]: + - @livekit/agents@1.5.3 + ## 1.5.2 ### Patch Changes diff --git a/plugins/elevenlabs/package.json b/plugins/elevenlabs/package.json index 614bfd77b..628c6a444 100644 --- a/plugins/elevenlabs/package.json +++ b/plugins/elevenlabs/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-elevenlabs", - "version": "1.5.2", + "version": "1.5.3", "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 844cb1242..c3a3a9dc9 100644 --- a/plugins/fishaudio/CHANGELOG.md +++ b/plugins/fishaudio/CHANGELOG.md @@ -1,5 +1,18 @@ # @livekit/agents-plugin-fishaudio +## 1.5.3 + +### Patch Changes + +- Drop Fish Audio's startup audio prebuffer so streaming audio starts from the opening chunk. - [#2033](https://github.com/livekit/agents-js/pull/2033) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- Reuse and prewarm Fish Audio streaming TTS websockets to avoid repeated connection setup. - [#2017](https://github.com/livekit/agents-js/pull/2017) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- Expose Fish Audio TTS sampling, bitrate, and normalization options. - [#2049](https://github.com/livekit/agents-js/pull/2049) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- Updated dependencies [[`3c19945`](https://github.com/livekit/agents-js/commit/3c1994531efc43975fec30d29289b06abdd6b14f), [`7db92dd`](https://github.com/livekit/agents-js/commit/7db92dd9808c7df5aeb7d06286496a31f49674ba), [`b9d8e95`](https://github.com/livekit/agents-js/commit/b9d8e95b3dbe62cf21e66e345495acb6d8dd768b), [`bad25fd`](https://github.com/livekit/agents-js/commit/bad25fd1dba0e6676fc1153a443dc6acde82626d), [`206e884`](https://github.com/livekit/agents-js/commit/206e884914f8beb658235351bf1c6a20b98d3ac6), [`16ac15e`](https://github.com/livekit/agents-js/commit/16ac15ecbeebe0e3d9e21edf4a29bdb90c969b33), [`6300c1c`](https://github.com/livekit/agents-js/commit/6300c1c9242690589866c6767238aa0c31f3ad30), [`dfd6654`](https://github.com/livekit/agents-js/commit/dfd66540e1e7eb00f8c0b0bfc830e9eeaf0f33ed), [`97c5aa2`](https://github.com/livekit/agents-js/commit/97c5aa23a73eb48e128300f8f58d3c9a79db4be1), [`13a191c`](https://github.com/livekit/agents-js/commit/13a191c71088bdd9d4db112f9b57976c1530753f), [`508236a`](https://github.com/livekit/agents-js/commit/508236a77d5b3dd97b93c3b47030f5852dcdd5fe), [`2312eed`](https://github.com/livekit/agents-js/commit/2312eedf02dceaed0ef8554f545c2a5acd720121)]: + - @livekit/agents@1.5.3 + ## 1.5.2 ### Patch Changes diff --git a/plugins/fishaudio/package.json b/plugins/fishaudio/package.json index f35162e8e..87095e72e 100644 --- a/plugins/fishaudio/package.json +++ b/plugins/fishaudio/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-fishaudio", - "version": "1.5.2", + "version": "1.5.3", "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 e14789c54..733601d15 100644 --- a/plugins/google/CHANGELOG.md +++ b/plugins/google/CHANGELOG.md @@ -1,5 +1,16 @@ # @livekit/agents-plugin-google +## 1.5.3 + +### Patch Changes + +- Gate mixed Gemini built-in and function tool requests to the Gemini 3 Developer API and build Google tool config in chat requests. - [#2035](https://github.com/livekit/agents-js/pull/2035) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- Strip Gemini thought summary parts from Google LLM text output. - [#2039](https://github.com/livekit/agents-js/pull/2039) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- Updated dependencies [[`3c19945`](https://github.com/livekit/agents-js/commit/3c1994531efc43975fec30d29289b06abdd6b14f), [`7db92dd`](https://github.com/livekit/agents-js/commit/7db92dd9808c7df5aeb7d06286496a31f49674ba), [`b9d8e95`](https://github.com/livekit/agents-js/commit/b9d8e95b3dbe62cf21e66e345495acb6d8dd768b), [`bad25fd`](https://github.com/livekit/agents-js/commit/bad25fd1dba0e6676fc1153a443dc6acde82626d), [`206e884`](https://github.com/livekit/agents-js/commit/206e884914f8beb658235351bf1c6a20b98d3ac6), [`16ac15e`](https://github.com/livekit/agents-js/commit/16ac15ecbeebe0e3d9e21edf4a29bdb90c969b33), [`6300c1c`](https://github.com/livekit/agents-js/commit/6300c1c9242690589866c6767238aa0c31f3ad30), [`dfd6654`](https://github.com/livekit/agents-js/commit/dfd66540e1e7eb00f8c0b0bfc830e9eeaf0f33ed), [`97c5aa2`](https://github.com/livekit/agents-js/commit/97c5aa23a73eb48e128300f8f58d3c9a79db4be1), [`13a191c`](https://github.com/livekit/agents-js/commit/13a191c71088bdd9d4db112f9b57976c1530753f), [`508236a`](https://github.com/livekit/agents-js/commit/508236a77d5b3dd97b93c3b47030f5852dcdd5fe), [`2312eed`](https://github.com/livekit/agents-js/commit/2312eedf02dceaed0ef8554f545c2a5acd720121)]: + - @livekit/agents@1.5.3 + ## 1.5.2 ### Patch Changes diff --git a/plugins/google/package.json b/plugins/google/package.json index 10c95152e..01f3f8513 100644 --- a/plugins/google/package.json +++ b/plugins/google/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-google", - "version": "1.5.2", + "version": "1.5.3", "description": "Google Gemini plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/hedra/CHANGELOG.md b/plugins/hedra/CHANGELOG.md index f558bf325..d62a633d7 100644 --- a/plugins/hedra/CHANGELOG.md +++ b/plugins/hedra/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-hedra +## 1.5.3 + +### Patch Changes + +- Updated dependencies [[`3c19945`](https://github.com/livekit/agents-js/commit/3c1994531efc43975fec30d29289b06abdd6b14f), [`7db92dd`](https://github.com/livekit/agents-js/commit/7db92dd9808c7df5aeb7d06286496a31f49674ba), [`b9d8e95`](https://github.com/livekit/agents-js/commit/b9d8e95b3dbe62cf21e66e345495acb6d8dd768b), [`bad25fd`](https://github.com/livekit/agents-js/commit/bad25fd1dba0e6676fc1153a443dc6acde82626d), [`206e884`](https://github.com/livekit/agents-js/commit/206e884914f8beb658235351bf1c6a20b98d3ac6), [`16ac15e`](https://github.com/livekit/agents-js/commit/16ac15ecbeebe0e3d9e21edf4a29bdb90c969b33), [`6300c1c`](https://github.com/livekit/agents-js/commit/6300c1c9242690589866c6767238aa0c31f3ad30), [`dfd6654`](https://github.com/livekit/agents-js/commit/dfd66540e1e7eb00f8c0b0bfc830e9eeaf0f33ed), [`97c5aa2`](https://github.com/livekit/agents-js/commit/97c5aa23a73eb48e128300f8f58d3c9a79db4be1), [`13a191c`](https://github.com/livekit/agents-js/commit/13a191c71088bdd9d4db112f9b57976c1530753f), [`508236a`](https://github.com/livekit/agents-js/commit/508236a77d5b3dd97b93c3b47030f5852dcdd5fe), [`2312eed`](https://github.com/livekit/agents-js/commit/2312eedf02dceaed0ef8554f545c2a5acd720121)]: + - @livekit/agents@1.5.3 + ## 1.5.2 ### Patch Changes diff --git a/plugins/hedra/package.json b/plugins/hedra/package.json index 811c35942..560060085 100644 --- a/plugins/hedra/package.json +++ b/plugins/hedra/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-hedra", - "version": "1.5.2", + "version": "1.5.3", "description": "Hedra avatar 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 e51569c21..e16b16b5f 100644 --- a/plugins/hume/CHANGELOG.md +++ b/plugins/hume/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-hume +## 1.5.3 + +### Patch Changes + +- Updated dependencies [[`3c19945`](https://github.com/livekit/agents-js/commit/3c1994531efc43975fec30d29289b06abdd6b14f), [`7db92dd`](https://github.com/livekit/agents-js/commit/7db92dd9808c7df5aeb7d06286496a31f49674ba), [`b9d8e95`](https://github.com/livekit/agents-js/commit/b9d8e95b3dbe62cf21e66e345495acb6d8dd768b), [`bad25fd`](https://github.com/livekit/agents-js/commit/bad25fd1dba0e6676fc1153a443dc6acde82626d), [`206e884`](https://github.com/livekit/agents-js/commit/206e884914f8beb658235351bf1c6a20b98d3ac6), [`16ac15e`](https://github.com/livekit/agents-js/commit/16ac15ecbeebe0e3d9e21edf4a29bdb90c969b33), [`6300c1c`](https://github.com/livekit/agents-js/commit/6300c1c9242690589866c6767238aa0c31f3ad30), [`dfd6654`](https://github.com/livekit/agents-js/commit/dfd66540e1e7eb00f8c0b0bfc830e9eeaf0f33ed), [`97c5aa2`](https://github.com/livekit/agents-js/commit/97c5aa23a73eb48e128300f8f58d3c9a79db4be1), [`13a191c`](https://github.com/livekit/agents-js/commit/13a191c71088bdd9d4db112f9b57976c1530753f), [`508236a`](https://github.com/livekit/agents-js/commit/508236a77d5b3dd97b93c3b47030f5852dcdd5fe), [`2312eed`](https://github.com/livekit/agents-js/commit/2312eedf02dceaed0ef8554f545c2a5acd720121)]: + - @livekit/agents@1.5.3 + ## 1.5.2 ### Patch Changes diff --git a/plugins/hume/package.json b/plugins/hume/package.json index 260c9f6e3..422405b9b 100644 --- a/plugins/hume/package.json +++ b/plugins/hume/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-hume", - "version": "1.5.2", + "version": "1.5.3", "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 8f11fad2d..31d4c4ce9 100644 --- a/plugins/inworld/CHANGELOG.md +++ b/plugins/inworld/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-inworld +## 1.5.3 + +### Patch Changes + +- Updated dependencies [[`3c19945`](https://github.com/livekit/agents-js/commit/3c1994531efc43975fec30d29289b06abdd6b14f), [`7db92dd`](https://github.com/livekit/agents-js/commit/7db92dd9808c7df5aeb7d06286496a31f49674ba), [`b9d8e95`](https://github.com/livekit/agents-js/commit/b9d8e95b3dbe62cf21e66e345495acb6d8dd768b), [`bad25fd`](https://github.com/livekit/agents-js/commit/bad25fd1dba0e6676fc1153a443dc6acde82626d), [`206e884`](https://github.com/livekit/agents-js/commit/206e884914f8beb658235351bf1c6a20b98d3ac6), [`16ac15e`](https://github.com/livekit/agents-js/commit/16ac15ecbeebe0e3d9e21edf4a29bdb90c969b33), [`6300c1c`](https://github.com/livekit/agents-js/commit/6300c1c9242690589866c6767238aa0c31f3ad30), [`dfd6654`](https://github.com/livekit/agents-js/commit/dfd66540e1e7eb00f8c0b0bfc830e9eeaf0f33ed), [`97c5aa2`](https://github.com/livekit/agents-js/commit/97c5aa23a73eb48e128300f8f58d3c9a79db4be1), [`13a191c`](https://github.com/livekit/agents-js/commit/13a191c71088bdd9d4db112f9b57976c1530753f), [`508236a`](https://github.com/livekit/agents-js/commit/508236a77d5b3dd97b93c3b47030f5852dcdd5fe), [`2312eed`](https://github.com/livekit/agents-js/commit/2312eedf02dceaed0ef8554f545c2a5acd720121)]: + - @livekit/agents@1.5.3 + ## 1.5.2 ### Patch Changes diff --git a/plugins/inworld/package.json b/plugins/inworld/package.json index 4c075caef..9d01497c8 100644 --- a/plugins/inworld/package.json +++ b/plugins/inworld/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-inworld", - "version": "1.5.2", + "version": "1.5.3", "description": "Inworld 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 2e5c4ed07..67b0a84e6 100644 --- a/plugins/lemonslice/CHANGELOG.md +++ b/plugins/lemonslice/CHANGELOG.md @@ -1,5 +1,18 @@ # @livekit/agents-plugin-lemonslice +## 1.5.3 + +### Patch Changes + +- Add the ability for users to provide a local image to the LemonSlice transport to be used as the avatar image. - [#1986](https://github.com/livekit/agents-js/pull/1986) ([@jp-lemon](https://github.com/jp-lemon)) + +- Convert extrapayload to snake_case - [#2034](https://github.com/livekit/agents-js/pull/2034) ([@aweitz](https://github.com/aweitz)) + +- Add external meeting support to the LemonSlice avatar plugin: `joinMeeting()` and `leaveMeeting()` send the avatar into Zoom, Google Meet, Microsoft Teams, or Webex meetings, stream mixed meeting audio into the agent session's STT, and optionally relay meeting chat messages as user input. - [#2036](https://github.com/livekit/agents-js/pull/2036) ([@aweitz](https://github.com/aweitz)) + +- Updated dependencies [[`3c19945`](https://github.com/livekit/agents-js/commit/3c1994531efc43975fec30d29289b06abdd6b14f), [`7db92dd`](https://github.com/livekit/agents-js/commit/7db92dd9808c7df5aeb7d06286496a31f49674ba), [`b9d8e95`](https://github.com/livekit/agents-js/commit/b9d8e95b3dbe62cf21e66e345495acb6d8dd768b), [`bad25fd`](https://github.com/livekit/agents-js/commit/bad25fd1dba0e6676fc1153a443dc6acde82626d), [`206e884`](https://github.com/livekit/agents-js/commit/206e884914f8beb658235351bf1c6a20b98d3ac6), [`16ac15e`](https://github.com/livekit/agents-js/commit/16ac15ecbeebe0e3d9e21edf4a29bdb90c969b33), [`6300c1c`](https://github.com/livekit/agents-js/commit/6300c1c9242690589866c6767238aa0c31f3ad30), [`dfd6654`](https://github.com/livekit/agents-js/commit/dfd66540e1e7eb00f8c0b0bfc830e9eeaf0f33ed), [`97c5aa2`](https://github.com/livekit/agents-js/commit/97c5aa23a73eb48e128300f8f58d3c9a79db4be1), [`13a191c`](https://github.com/livekit/agents-js/commit/13a191c71088bdd9d4db112f9b57976c1530753f), [`508236a`](https://github.com/livekit/agents-js/commit/508236a77d5b3dd97b93c3b47030f5852dcdd5fe), [`2312eed`](https://github.com/livekit/agents-js/commit/2312eedf02dceaed0ef8554f545c2a5acd720121)]: + - @livekit/agents@1.5.3 + ## 1.5.2 ### Patch Changes diff --git a/plugins/lemonslice/package.json b/plugins/lemonslice/package.json index 79dd3f55c..94bcd26a7 100644 --- a/plugins/lemonslice/package.json +++ b/plugins/lemonslice/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-lemonslice", - "version": "1.5.2", + "version": "1.5.3", "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 40007ceb9..8f610389f 100644 --- a/plugins/liveavatar/CHANGELOG.md +++ b/plugins/liveavatar/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-liveavatar +## 1.5.3 + +### Patch Changes + +- Updated dependencies [[`3c19945`](https://github.com/livekit/agents-js/commit/3c1994531efc43975fec30d29289b06abdd6b14f), [`7db92dd`](https://github.com/livekit/agents-js/commit/7db92dd9808c7df5aeb7d06286496a31f49674ba), [`b9d8e95`](https://github.com/livekit/agents-js/commit/b9d8e95b3dbe62cf21e66e345495acb6d8dd768b), [`bad25fd`](https://github.com/livekit/agents-js/commit/bad25fd1dba0e6676fc1153a443dc6acde82626d), [`206e884`](https://github.com/livekit/agents-js/commit/206e884914f8beb658235351bf1c6a20b98d3ac6), [`16ac15e`](https://github.com/livekit/agents-js/commit/16ac15ecbeebe0e3d9e21edf4a29bdb90c969b33), [`6300c1c`](https://github.com/livekit/agents-js/commit/6300c1c9242690589866c6767238aa0c31f3ad30), [`dfd6654`](https://github.com/livekit/agents-js/commit/dfd66540e1e7eb00f8c0b0bfc830e9eeaf0f33ed), [`97c5aa2`](https://github.com/livekit/agents-js/commit/97c5aa23a73eb48e128300f8f58d3c9a79db4be1), [`13a191c`](https://github.com/livekit/agents-js/commit/13a191c71088bdd9d4db112f9b57976c1530753f), [`508236a`](https://github.com/livekit/agents-js/commit/508236a77d5b3dd97b93c3b47030f5852dcdd5fe), [`2312eed`](https://github.com/livekit/agents-js/commit/2312eedf02dceaed0ef8554f545c2a5acd720121)]: + - @livekit/agents@1.5.3 + ## 1.5.2 ### Patch Changes diff --git a/plugins/liveavatar/package.json b/plugins/liveavatar/package.json index f0eb06dd0..fd0cc702b 100644 --- a/plugins/liveavatar/package.json +++ b/plugins/liveavatar/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-liveavatar", - "version": "1.5.2", + "version": "1.5.3", "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 17194361d..e433c2266 100644 --- a/plugins/livekit/CHANGELOG.md +++ b/plugins/livekit/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-livekit +## 1.5.3 + +### Patch Changes + +- Updated dependencies [[`3c19945`](https://github.com/livekit/agents-js/commit/3c1994531efc43975fec30d29289b06abdd6b14f), [`7db92dd`](https://github.com/livekit/agents-js/commit/7db92dd9808c7df5aeb7d06286496a31f49674ba), [`b9d8e95`](https://github.com/livekit/agents-js/commit/b9d8e95b3dbe62cf21e66e345495acb6d8dd768b), [`bad25fd`](https://github.com/livekit/agents-js/commit/bad25fd1dba0e6676fc1153a443dc6acde82626d), [`206e884`](https://github.com/livekit/agents-js/commit/206e884914f8beb658235351bf1c6a20b98d3ac6), [`16ac15e`](https://github.com/livekit/agents-js/commit/16ac15ecbeebe0e3d9e21edf4a29bdb90c969b33), [`6300c1c`](https://github.com/livekit/agents-js/commit/6300c1c9242690589866c6767238aa0c31f3ad30), [`dfd6654`](https://github.com/livekit/agents-js/commit/dfd66540e1e7eb00f8c0b0bfc830e9eeaf0f33ed), [`97c5aa2`](https://github.com/livekit/agents-js/commit/97c5aa23a73eb48e128300f8f58d3c9a79db4be1), [`13a191c`](https://github.com/livekit/agents-js/commit/13a191c71088bdd9d4db112f9b57976c1530753f), [`508236a`](https://github.com/livekit/agents-js/commit/508236a77d5b3dd97b93c3b47030f5852dcdd5fe), [`2312eed`](https://github.com/livekit/agents-js/commit/2312eedf02dceaed0ef8554f545c2a5acd720121)]: + - @livekit/agents@1.5.3 + ## 1.5.2 ### Patch Changes diff --git a/plugins/livekit/package.json b/plugins/livekit/package.json index 3b74dfb3e..e16665ebe 100644 --- a/plugins/livekit/package.json +++ b/plugins/livekit/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-livekit", - "version": "1.5.2", + "version": "1.5.3", "description": "Additional utilities for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/minimax/CHANGELOG.md b/plugins/minimax/CHANGELOG.md index cd4c145b6..bd4f8305e 100644 --- a/plugins/minimax/CHANGELOG.md +++ b/plugins/minimax/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-minimax +## 1.5.3 + +### Patch Changes + +- Updated dependencies [[`3c19945`](https://github.com/livekit/agents-js/commit/3c1994531efc43975fec30d29289b06abdd6b14f), [`7db92dd`](https://github.com/livekit/agents-js/commit/7db92dd9808c7df5aeb7d06286496a31f49674ba), [`b9d8e95`](https://github.com/livekit/agents-js/commit/b9d8e95b3dbe62cf21e66e345495acb6d8dd768b), [`bad25fd`](https://github.com/livekit/agents-js/commit/bad25fd1dba0e6676fc1153a443dc6acde82626d), [`206e884`](https://github.com/livekit/agents-js/commit/206e884914f8beb658235351bf1c6a20b98d3ac6), [`16ac15e`](https://github.com/livekit/agents-js/commit/16ac15ecbeebe0e3d9e21edf4a29bdb90c969b33), [`6300c1c`](https://github.com/livekit/agents-js/commit/6300c1c9242690589866c6767238aa0c31f3ad30), [`dfd6654`](https://github.com/livekit/agents-js/commit/dfd66540e1e7eb00f8c0b0bfc830e9eeaf0f33ed), [`97c5aa2`](https://github.com/livekit/agents-js/commit/97c5aa23a73eb48e128300f8f58d3c9a79db4be1), [`13a191c`](https://github.com/livekit/agents-js/commit/13a191c71088bdd9d4db112f9b57976c1530753f), [`508236a`](https://github.com/livekit/agents-js/commit/508236a77d5b3dd97b93c3b47030f5852dcdd5fe), [`2312eed`](https://github.com/livekit/agents-js/commit/2312eedf02dceaed0ef8554f545c2a5acd720121)]: + - @livekit/agents@1.5.3 + ## 1.5.2 ### Patch Changes diff --git a/plugins/minimax/package.json b/plugins/minimax/package.json index d3eca16cd..d04109551 100644 --- a/plugins/minimax/package.json +++ b/plugins/minimax/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-minimax", - "version": "1.5.2", + "version": "1.5.3", "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 7780a1223..375ffbad9 100644 --- a/plugins/mistral/CHANGELOG.md +++ b/plugins/mistral/CHANGELOG.md @@ -1,5 +1,13 @@ # @livekit/agents-plugin-mistral +## 1.5.3 + +### Patch Changes + +- Updated dependencies [[`3c19945`](https://github.com/livekit/agents-js/commit/3c1994531efc43975fec30d29289b06abdd6b14f), [`7db92dd`](https://github.com/livekit/agents-js/commit/7db92dd9808c7df5aeb7d06286496a31f49674ba), [`b9d8e95`](https://github.com/livekit/agents-js/commit/b9d8e95b3dbe62cf21e66e345495acb6d8dd768b), [`bad25fd`](https://github.com/livekit/agents-js/commit/bad25fd1dba0e6676fc1153a443dc6acde82626d), [`206e884`](https://github.com/livekit/agents-js/commit/206e884914f8beb658235351bf1c6a20b98d3ac6), [`16ac15e`](https://github.com/livekit/agents-js/commit/16ac15ecbeebe0e3d9e21edf4a29bdb90c969b33), [`6300c1c`](https://github.com/livekit/agents-js/commit/6300c1c9242690589866c6767238aa0c31f3ad30), [`dfd6654`](https://github.com/livekit/agents-js/commit/dfd66540e1e7eb00f8c0b0bfc830e9eeaf0f33ed), [`97c5aa2`](https://github.com/livekit/agents-js/commit/97c5aa23a73eb48e128300f8f58d3c9a79db4be1), [`13a191c`](https://github.com/livekit/agents-js/commit/13a191c71088bdd9d4db112f9b57976c1530753f), [`508236a`](https://github.com/livekit/agents-js/commit/508236a77d5b3dd97b93c3b47030f5852dcdd5fe), [`2312eed`](https://github.com/livekit/agents-js/commit/2312eedf02dceaed0ef8554f545c2a5acd720121)]: + - @livekit/agents@1.5.3 + - @livekit/agents-plugin-mistralai@1.5.3 + ## 1.5.2 ### Patch Changes diff --git a/plugins/mistral/package.json b/plugins/mistral/package.json index df8ccc139..c877f0533 100644 --- a/plugins/mistral/package.json +++ b/plugins/mistral/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-mistral", - "version": "1.5.2", + "version": "1.5.3", "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 33bd342c0..c38e7c902 100644 --- a/plugins/mistralai/CHANGELOG.md +++ b/plugins/mistralai/CHANGELOG.md @@ -1,5 +1,13 @@ # @livekit/agents-plugin-mistralai +## 1.5.3 + +### Patch Changes + +- Updated dependencies [[`3c19945`](https://github.com/livekit/agents-js/commit/3c1994531efc43975fec30d29289b06abdd6b14f), [`7db92dd`](https://github.com/livekit/agents-js/commit/7db92dd9808c7df5aeb7d06286496a31f49674ba), [`b9d8e95`](https://github.com/livekit/agents-js/commit/b9d8e95b3dbe62cf21e66e345495acb6d8dd768b), [`bad25fd`](https://github.com/livekit/agents-js/commit/bad25fd1dba0e6676fc1153a443dc6acde82626d), [`206e884`](https://github.com/livekit/agents-js/commit/206e884914f8beb658235351bf1c6a20b98d3ac6), [`16ac15e`](https://github.com/livekit/agents-js/commit/16ac15ecbeebe0e3d9e21edf4a29bdb90c969b33), [`6300c1c`](https://github.com/livekit/agents-js/commit/6300c1c9242690589866c6767238aa0c31f3ad30), [`dfd6654`](https://github.com/livekit/agents-js/commit/dfd66540e1e7eb00f8c0b0bfc830e9eeaf0f33ed), [`97c5aa2`](https://github.com/livekit/agents-js/commit/97c5aa23a73eb48e128300f8f58d3c9a79db4be1), [`13a191c`](https://github.com/livekit/agents-js/commit/13a191c71088bdd9d4db112f9b57976c1530753f), [`508236a`](https://github.com/livekit/agents-js/commit/508236a77d5b3dd97b93c3b47030f5852dcdd5fe), [`2312eed`](https://github.com/livekit/agents-js/commit/2312eedf02dceaed0ef8554f545c2a5acd720121)]: + - @livekit/agents@1.5.3 + - @livekit/agents-plugin-silero@1.5.3 + ## 1.5.2 ### Patch Changes diff --git a/plugins/mistralai/package.json b/plugins/mistralai/package.json index 3d911a58d..e21eb4bea 100644 --- a/plugins/mistralai/package.json +++ b/plugins/mistralai/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-mistralai", - "version": "1.5.2", + "version": "1.5.3", "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 7d77a3fcb..04087ecc4 100644 --- a/plugins/neuphonic/CHANGELOG.md +++ b/plugins/neuphonic/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-neuphonic +## 1.5.3 + +### Patch Changes + +- Updated dependencies [[`3c19945`](https://github.com/livekit/agents-js/commit/3c1994531efc43975fec30d29289b06abdd6b14f), [`7db92dd`](https://github.com/livekit/agents-js/commit/7db92dd9808c7df5aeb7d06286496a31f49674ba), [`b9d8e95`](https://github.com/livekit/agents-js/commit/b9d8e95b3dbe62cf21e66e345495acb6d8dd768b), [`bad25fd`](https://github.com/livekit/agents-js/commit/bad25fd1dba0e6676fc1153a443dc6acde82626d), [`206e884`](https://github.com/livekit/agents-js/commit/206e884914f8beb658235351bf1c6a20b98d3ac6), [`16ac15e`](https://github.com/livekit/agents-js/commit/16ac15ecbeebe0e3d9e21edf4a29bdb90c969b33), [`6300c1c`](https://github.com/livekit/agents-js/commit/6300c1c9242690589866c6767238aa0c31f3ad30), [`dfd6654`](https://github.com/livekit/agents-js/commit/dfd66540e1e7eb00f8c0b0bfc830e9eeaf0f33ed), [`97c5aa2`](https://github.com/livekit/agents-js/commit/97c5aa23a73eb48e128300f8f58d3c9a79db4be1), [`13a191c`](https://github.com/livekit/agents-js/commit/13a191c71088bdd9d4db112f9b57976c1530753f), [`508236a`](https://github.com/livekit/agents-js/commit/508236a77d5b3dd97b93c3b47030f5852dcdd5fe), [`2312eed`](https://github.com/livekit/agents-js/commit/2312eedf02dceaed0ef8554f545c2a5acd720121)]: + - @livekit/agents@1.5.3 + ## 1.5.2 ### Patch Changes diff --git a/plugins/neuphonic/package.json b/plugins/neuphonic/package.json index 6a2cc96df..4c423f98d 100644 --- a/plugins/neuphonic/package.json +++ b/plugins/neuphonic/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-neuphonic", - "version": "1.5.2", + "version": "1.5.3", "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 b1b9d3360..49426857e 100644 --- a/plugins/openai/CHANGELOG.md +++ b/plugins/openai/CHANGELOG.md @@ -1,5 +1,16 @@ # @livekit/agents-plugin-openai +## 1.5.3 + +### Patch Changes + +- Stop OpenAI realtime sessions from reconnecting forever after fatal server errors. - [#2031](https://github.com/livekit/agents-js/pull/2031) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- Include OpenAI model names on Responses WebSocket URLs for gateway endpoints. - [#2032](https://github.com/livekit/agents-js/pull/2032) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- Updated dependencies [[`3c19945`](https://github.com/livekit/agents-js/commit/3c1994531efc43975fec30d29289b06abdd6b14f), [`7db92dd`](https://github.com/livekit/agents-js/commit/7db92dd9808c7df5aeb7d06286496a31f49674ba), [`b9d8e95`](https://github.com/livekit/agents-js/commit/b9d8e95b3dbe62cf21e66e345495acb6d8dd768b), [`bad25fd`](https://github.com/livekit/agents-js/commit/bad25fd1dba0e6676fc1153a443dc6acde82626d), [`206e884`](https://github.com/livekit/agents-js/commit/206e884914f8beb658235351bf1c6a20b98d3ac6), [`16ac15e`](https://github.com/livekit/agents-js/commit/16ac15ecbeebe0e3d9e21edf4a29bdb90c969b33), [`6300c1c`](https://github.com/livekit/agents-js/commit/6300c1c9242690589866c6767238aa0c31f3ad30), [`dfd6654`](https://github.com/livekit/agents-js/commit/dfd66540e1e7eb00f8c0b0bfc830e9eeaf0f33ed), [`97c5aa2`](https://github.com/livekit/agents-js/commit/97c5aa23a73eb48e128300f8f58d3c9a79db4be1), [`13a191c`](https://github.com/livekit/agents-js/commit/13a191c71088bdd9d4db112f9b57976c1530753f), [`508236a`](https://github.com/livekit/agents-js/commit/508236a77d5b3dd97b93c3b47030f5852dcdd5fe), [`2312eed`](https://github.com/livekit/agents-js/commit/2312eedf02dceaed0ef8554f545c2a5acd720121)]: + - @livekit/agents@1.5.3 + ## 1.5.2 ### Patch Changes diff --git a/plugins/openai/package.json b/plugins/openai/package.json index 02cc801ee..2f3d9ac97 100644 --- a/plugins/openai/package.json +++ b/plugins/openai/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-openai", - "version": "1.5.2", + "version": "1.5.3", "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 cd4bcb0fb..49cc2d375 100644 --- a/plugins/perplexity/CHANGELOG.md +++ b/plugins/perplexity/CHANGELOG.md @@ -1,5 +1,13 @@ # @livekit/agents-plugin-perplexity +## 1.5.3 + +### Patch Changes + +- Updated dependencies [[`3c19945`](https://github.com/livekit/agents-js/commit/3c1994531efc43975fec30d29289b06abdd6b14f), [`7db92dd`](https://github.com/livekit/agents-js/commit/7db92dd9808c7df5aeb7d06286496a31f49674ba), [`b9d8e95`](https://github.com/livekit/agents-js/commit/b9d8e95b3dbe62cf21e66e345495acb6d8dd768b), [`bad25fd`](https://github.com/livekit/agents-js/commit/bad25fd1dba0e6676fc1153a443dc6acde82626d), [`206e884`](https://github.com/livekit/agents-js/commit/206e884914f8beb658235351bf1c6a20b98d3ac6), [`16ac15e`](https://github.com/livekit/agents-js/commit/16ac15ecbeebe0e3d9e21edf4a29bdb90c969b33), [`6a998f6`](https://github.com/livekit/agents-js/commit/6a998f6b48625f928e7c38fbe31569ad0bf1ba76), [`c0c927a`](https://github.com/livekit/agents-js/commit/c0c927a741c2f2de964c2758e263897737d6ddd1), [`6300c1c`](https://github.com/livekit/agents-js/commit/6300c1c9242690589866c6767238aa0c31f3ad30), [`dfd6654`](https://github.com/livekit/agents-js/commit/dfd66540e1e7eb00f8c0b0bfc830e9eeaf0f33ed), [`97c5aa2`](https://github.com/livekit/agents-js/commit/97c5aa23a73eb48e128300f8f58d3c9a79db4be1), [`13a191c`](https://github.com/livekit/agents-js/commit/13a191c71088bdd9d4db112f9b57976c1530753f), [`508236a`](https://github.com/livekit/agents-js/commit/508236a77d5b3dd97b93c3b47030f5852dcdd5fe), [`2312eed`](https://github.com/livekit/agents-js/commit/2312eedf02dceaed0ef8554f545c2a5acd720121)]: + - @livekit/agents@1.5.3 + - @livekit/agents-plugin-openai@1.5.3 + ## 1.5.2 ### Patch Changes diff --git a/plugins/perplexity/package.json b/plugins/perplexity/package.json index bafd5cb9d..2bea2e1c4 100644 --- a/plugins/perplexity/package.json +++ b/plugins/perplexity/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-perplexity", - "version": "1.5.2", + "version": "1.5.3", "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 7b060c7ee..fb82a19f9 100644 --- a/plugins/phonic/CHANGELOG.md +++ b/plugins/phonic/CHANGELOG.md @@ -1,5 +1,14 @@ # @livekit/agents-plugin-phonic +## 1.5.3 + +### Patch Changes + +- Deprecate the `nativeTranscriptSync` realtime model capability while preserving its existing transcript synchronization behavior for third-party models. Remove Phonic's redundant explicit opt-out now that it uses `stream_ahead_of_real_time` mode. - [#2044](https://github.com/livekit/agents-js/pull/2044) ([@tinalenguyen](https://github.com/tinalenguyen)) + +- Updated dependencies [[`3c19945`](https://github.com/livekit/agents-js/commit/3c1994531efc43975fec30d29289b06abdd6b14f), [`7db92dd`](https://github.com/livekit/agents-js/commit/7db92dd9808c7df5aeb7d06286496a31f49674ba), [`b9d8e95`](https://github.com/livekit/agents-js/commit/b9d8e95b3dbe62cf21e66e345495acb6d8dd768b), [`bad25fd`](https://github.com/livekit/agents-js/commit/bad25fd1dba0e6676fc1153a443dc6acde82626d), [`206e884`](https://github.com/livekit/agents-js/commit/206e884914f8beb658235351bf1c6a20b98d3ac6), [`16ac15e`](https://github.com/livekit/agents-js/commit/16ac15ecbeebe0e3d9e21edf4a29bdb90c969b33), [`6300c1c`](https://github.com/livekit/agents-js/commit/6300c1c9242690589866c6767238aa0c31f3ad30), [`dfd6654`](https://github.com/livekit/agents-js/commit/dfd66540e1e7eb00f8c0b0bfc830e9eeaf0f33ed), [`97c5aa2`](https://github.com/livekit/agents-js/commit/97c5aa23a73eb48e128300f8f58d3c9a79db4be1), [`13a191c`](https://github.com/livekit/agents-js/commit/13a191c71088bdd9d4db112f9b57976c1530753f), [`508236a`](https://github.com/livekit/agents-js/commit/508236a77d5b3dd97b93c3b47030f5852dcdd5fe), [`2312eed`](https://github.com/livekit/agents-js/commit/2312eedf02dceaed0ef8554f545c2a5acd720121)]: + - @livekit/agents@1.5.3 + ## 1.5.2 ### Patch Changes diff --git a/plugins/phonic/package.json b/plugins/phonic/package.json index d5aee1a42..394ed6de5 100644 --- a/plugins/phonic/package.json +++ b/plugins/phonic/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-phonic", - "version": "1.5.2", + "version": "1.5.3", "description": "Phonic STS 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 723f85107..f80f1dbd3 100644 --- a/plugins/resemble/CHANGELOG.md +++ b/plugins/resemble/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-resemble +## 1.5.3 + +### Patch Changes + +- Updated dependencies [[`3c19945`](https://github.com/livekit/agents-js/commit/3c1994531efc43975fec30d29289b06abdd6b14f), [`7db92dd`](https://github.com/livekit/agents-js/commit/7db92dd9808c7df5aeb7d06286496a31f49674ba), [`b9d8e95`](https://github.com/livekit/agents-js/commit/b9d8e95b3dbe62cf21e66e345495acb6d8dd768b), [`bad25fd`](https://github.com/livekit/agents-js/commit/bad25fd1dba0e6676fc1153a443dc6acde82626d), [`206e884`](https://github.com/livekit/agents-js/commit/206e884914f8beb658235351bf1c6a20b98d3ac6), [`16ac15e`](https://github.com/livekit/agents-js/commit/16ac15ecbeebe0e3d9e21edf4a29bdb90c969b33), [`6300c1c`](https://github.com/livekit/agents-js/commit/6300c1c9242690589866c6767238aa0c31f3ad30), [`dfd6654`](https://github.com/livekit/agents-js/commit/dfd66540e1e7eb00f8c0b0bfc830e9eeaf0f33ed), [`97c5aa2`](https://github.com/livekit/agents-js/commit/97c5aa23a73eb48e128300f8f58d3c9a79db4be1), [`13a191c`](https://github.com/livekit/agents-js/commit/13a191c71088bdd9d4db112f9b57976c1530753f), [`508236a`](https://github.com/livekit/agents-js/commit/508236a77d5b3dd97b93c3b47030f5852dcdd5fe), [`2312eed`](https://github.com/livekit/agents-js/commit/2312eedf02dceaed0ef8554f545c2a5acd720121)]: + - @livekit/agents@1.5.3 + ## 1.5.2 ### Patch Changes diff --git a/plugins/resemble/package.json b/plugins/resemble/package.json index e96400aa9..81d1e7120 100644 --- a/plugins/resemble/package.json +++ b/plugins/resemble/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-resemble", - "version": "1.5.2", + "version": "1.5.3", "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 402f77b97..c329b73a4 100644 --- a/plugins/rime/CHANGELOG.md +++ b/plugins/rime/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-rime +## 1.5.3 + +### Patch Changes + +- Updated dependencies [[`3c19945`](https://github.com/livekit/agents-js/commit/3c1994531efc43975fec30d29289b06abdd6b14f), [`7db92dd`](https://github.com/livekit/agents-js/commit/7db92dd9808c7df5aeb7d06286496a31f49674ba), [`b9d8e95`](https://github.com/livekit/agents-js/commit/b9d8e95b3dbe62cf21e66e345495acb6d8dd768b), [`bad25fd`](https://github.com/livekit/agents-js/commit/bad25fd1dba0e6676fc1153a443dc6acde82626d), [`206e884`](https://github.com/livekit/agents-js/commit/206e884914f8beb658235351bf1c6a20b98d3ac6), [`16ac15e`](https://github.com/livekit/agents-js/commit/16ac15ecbeebe0e3d9e21edf4a29bdb90c969b33), [`6300c1c`](https://github.com/livekit/agents-js/commit/6300c1c9242690589866c6767238aa0c31f3ad30), [`dfd6654`](https://github.com/livekit/agents-js/commit/dfd66540e1e7eb00f8c0b0bfc830e9eeaf0f33ed), [`97c5aa2`](https://github.com/livekit/agents-js/commit/97c5aa23a73eb48e128300f8f58d3c9a79db4be1), [`13a191c`](https://github.com/livekit/agents-js/commit/13a191c71088bdd9d4db112f9b57976c1530753f), [`508236a`](https://github.com/livekit/agents-js/commit/508236a77d5b3dd97b93c3b47030f5852dcdd5fe), [`2312eed`](https://github.com/livekit/agents-js/commit/2312eedf02dceaed0ef8554f545c2a5acd720121)]: + - @livekit/agents@1.5.3 + ## 1.5.2 ### Patch Changes diff --git a/plugins/rime/package.json b/plugins/rime/package.json index d1ba5dd98..7480086d4 100644 --- a/plugins/rime/package.json +++ b/plugins/rime/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-rime", - "version": "1.5.2", + "version": "1.5.3", "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 ebd54d052..b0aa3f8b8 100644 --- a/plugins/runway/CHANGELOG.md +++ b/plugins/runway/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-runway +## 1.5.3 + +### Patch Changes + +- Updated dependencies [[`3c19945`](https://github.com/livekit/agents-js/commit/3c1994531efc43975fec30d29289b06abdd6b14f), [`7db92dd`](https://github.com/livekit/agents-js/commit/7db92dd9808c7df5aeb7d06286496a31f49674ba), [`b9d8e95`](https://github.com/livekit/agents-js/commit/b9d8e95b3dbe62cf21e66e345495acb6d8dd768b), [`bad25fd`](https://github.com/livekit/agents-js/commit/bad25fd1dba0e6676fc1153a443dc6acde82626d), [`206e884`](https://github.com/livekit/agents-js/commit/206e884914f8beb658235351bf1c6a20b98d3ac6), [`16ac15e`](https://github.com/livekit/agents-js/commit/16ac15ecbeebe0e3d9e21edf4a29bdb90c969b33), [`6300c1c`](https://github.com/livekit/agents-js/commit/6300c1c9242690589866c6767238aa0c31f3ad30), [`dfd6654`](https://github.com/livekit/agents-js/commit/dfd66540e1e7eb00f8c0b0bfc830e9eeaf0f33ed), [`97c5aa2`](https://github.com/livekit/agents-js/commit/97c5aa23a73eb48e128300f8f58d3c9a79db4be1), [`13a191c`](https://github.com/livekit/agents-js/commit/13a191c71088bdd9d4db112f9b57976c1530753f), [`508236a`](https://github.com/livekit/agents-js/commit/508236a77d5b3dd97b93c3b47030f5852dcdd5fe), [`2312eed`](https://github.com/livekit/agents-js/commit/2312eedf02dceaed0ef8554f545c2a5acd720121)]: + - @livekit/agents@1.5.3 + ## 1.5.2 ### Patch Changes diff --git a/plugins/runway/package.json b/plugins/runway/package.json index ce426b7d3..dbd28fd10 100644 --- a/plugins/runway/package.json +++ b/plugins/runway/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-runway", - "version": "1.5.2", + "version": "1.5.3", "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 3eb332f50..71b819a04 100644 --- a/plugins/sarvam/CHANGELOG.md +++ b/plugins/sarvam/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-sarvam +## 1.5.3 + +### Patch Changes + +- Updated dependencies [[`3c19945`](https://github.com/livekit/agents-js/commit/3c1994531efc43975fec30d29289b06abdd6b14f), [`7db92dd`](https://github.com/livekit/agents-js/commit/7db92dd9808c7df5aeb7d06286496a31f49674ba), [`b9d8e95`](https://github.com/livekit/agents-js/commit/b9d8e95b3dbe62cf21e66e345495acb6d8dd768b), [`bad25fd`](https://github.com/livekit/agents-js/commit/bad25fd1dba0e6676fc1153a443dc6acde82626d), [`206e884`](https://github.com/livekit/agents-js/commit/206e884914f8beb658235351bf1c6a20b98d3ac6), [`16ac15e`](https://github.com/livekit/agents-js/commit/16ac15ecbeebe0e3d9e21edf4a29bdb90c969b33), [`6300c1c`](https://github.com/livekit/agents-js/commit/6300c1c9242690589866c6767238aa0c31f3ad30), [`dfd6654`](https://github.com/livekit/agents-js/commit/dfd66540e1e7eb00f8c0b0bfc830e9eeaf0f33ed), [`97c5aa2`](https://github.com/livekit/agents-js/commit/97c5aa23a73eb48e128300f8f58d3c9a79db4be1), [`13a191c`](https://github.com/livekit/agents-js/commit/13a191c71088bdd9d4db112f9b57976c1530753f), [`508236a`](https://github.com/livekit/agents-js/commit/508236a77d5b3dd97b93c3b47030f5852dcdd5fe), [`2312eed`](https://github.com/livekit/agents-js/commit/2312eedf02dceaed0ef8554f545c2a5acd720121)]: + - @livekit/agents@1.5.3 + ## 1.5.2 ### Patch Changes diff --git a/plugins/sarvam/package.json b/plugins/sarvam/package.json index e67753622..1c3ff59ed 100644 --- a/plugins/sarvam/package.json +++ b/plugins/sarvam/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-sarvam", - "version": "1.5.2", + "version": "1.5.3", "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 e3bda7497..c8a1c6a6c 100644 --- a/plugins/silero/CHANGELOG.md +++ b/plugins/silero/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-silero +## 1.5.3 + +### Patch Changes + +- Updated dependencies [[`3c19945`](https://github.com/livekit/agents-js/commit/3c1994531efc43975fec30d29289b06abdd6b14f), [`7db92dd`](https://github.com/livekit/agents-js/commit/7db92dd9808c7df5aeb7d06286496a31f49674ba), [`b9d8e95`](https://github.com/livekit/agents-js/commit/b9d8e95b3dbe62cf21e66e345495acb6d8dd768b), [`bad25fd`](https://github.com/livekit/agents-js/commit/bad25fd1dba0e6676fc1153a443dc6acde82626d), [`206e884`](https://github.com/livekit/agents-js/commit/206e884914f8beb658235351bf1c6a20b98d3ac6), [`16ac15e`](https://github.com/livekit/agents-js/commit/16ac15ecbeebe0e3d9e21edf4a29bdb90c969b33), [`6300c1c`](https://github.com/livekit/agents-js/commit/6300c1c9242690589866c6767238aa0c31f3ad30), [`dfd6654`](https://github.com/livekit/agents-js/commit/dfd66540e1e7eb00f8c0b0bfc830e9eeaf0f33ed), [`97c5aa2`](https://github.com/livekit/agents-js/commit/97c5aa23a73eb48e128300f8f58d3c9a79db4be1), [`13a191c`](https://github.com/livekit/agents-js/commit/13a191c71088bdd9d4db112f9b57976c1530753f), [`508236a`](https://github.com/livekit/agents-js/commit/508236a77d5b3dd97b93c3b47030f5852dcdd5fe), [`2312eed`](https://github.com/livekit/agents-js/commit/2312eedf02dceaed0ef8554f545c2a5acd720121)]: + - @livekit/agents@1.5.3 + ## 1.5.2 ### Patch Changes diff --git a/plugins/silero/package.json b/plugins/silero/package.json index 3443c8ffb..4f964f0f9 100644 --- a/plugins/silero/package.json +++ b/plugins/silero/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-silero", - "version": "1.5.2", + "version": "1.5.3", "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 73337c7f6..7a227f275 100644 --- a/plugins/soniox/CHANGELOG.md +++ b/plugins/soniox/CHANGELOG.md @@ -1,5 +1,16 @@ # @livekit/agents-plugin-soniox +## 1.5.3 + +### Patch Changes + +- Add Soniox TTS support with configurable speaking speed. - [#2005](https://github.com/livekit/agents-js/pull/2005) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- Add Soniox endpoint latency adjustment level STT option. - [#2027](https://github.com/livekit/agents-js/pull/2027) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- Updated dependencies [[`3c19945`](https://github.com/livekit/agents-js/commit/3c1994531efc43975fec30d29289b06abdd6b14f), [`7db92dd`](https://github.com/livekit/agents-js/commit/7db92dd9808c7df5aeb7d06286496a31f49674ba), [`b9d8e95`](https://github.com/livekit/agents-js/commit/b9d8e95b3dbe62cf21e66e345495acb6d8dd768b), [`bad25fd`](https://github.com/livekit/agents-js/commit/bad25fd1dba0e6676fc1153a443dc6acde82626d), [`206e884`](https://github.com/livekit/agents-js/commit/206e884914f8beb658235351bf1c6a20b98d3ac6), [`16ac15e`](https://github.com/livekit/agents-js/commit/16ac15ecbeebe0e3d9e21edf4a29bdb90c969b33), [`6300c1c`](https://github.com/livekit/agents-js/commit/6300c1c9242690589866c6767238aa0c31f3ad30), [`dfd6654`](https://github.com/livekit/agents-js/commit/dfd66540e1e7eb00f8c0b0bfc830e9eeaf0f33ed), [`97c5aa2`](https://github.com/livekit/agents-js/commit/97c5aa23a73eb48e128300f8f58d3c9a79db4be1), [`13a191c`](https://github.com/livekit/agents-js/commit/13a191c71088bdd9d4db112f9b57976c1530753f), [`508236a`](https://github.com/livekit/agents-js/commit/508236a77d5b3dd97b93c3b47030f5852dcdd5fe), [`2312eed`](https://github.com/livekit/agents-js/commit/2312eedf02dceaed0ef8554f545c2a5acd720121)]: + - @livekit/agents@1.5.3 + ## 1.5.2 ### Patch Changes diff --git a/plugins/soniox/package.json b/plugins/soniox/package.json index 85450f34c..560b78b98 100644 --- a/plugins/soniox/package.json +++ b/plugins/soniox/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-soniox", - "version": "1.5.2", + "version": "1.5.3", "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 79111cde8..6c37fa8ef 100644 --- a/plugins/tavus/CHANGELOG.md +++ b/plugins/tavus/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-tavus +## 1.5.3 + +### Patch Changes + +- Updated dependencies [[`3c19945`](https://github.com/livekit/agents-js/commit/3c1994531efc43975fec30d29289b06abdd6b14f), [`7db92dd`](https://github.com/livekit/agents-js/commit/7db92dd9808c7df5aeb7d06286496a31f49674ba), [`b9d8e95`](https://github.com/livekit/agents-js/commit/b9d8e95b3dbe62cf21e66e345495acb6d8dd768b), [`bad25fd`](https://github.com/livekit/agents-js/commit/bad25fd1dba0e6676fc1153a443dc6acde82626d), [`206e884`](https://github.com/livekit/agents-js/commit/206e884914f8beb658235351bf1c6a20b98d3ac6), [`16ac15e`](https://github.com/livekit/agents-js/commit/16ac15ecbeebe0e3d9e21edf4a29bdb90c969b33), [`6300c1c`](https://github.com/livekit/agents-js/commit/6300c1c9242690589866c6767238aa0c31f3ad30), [`dfd6654`](https://github.com/livekit/agents-js/commit/dfd66540e1e7eb00f8c0b0bfc830e9eeaf0f33ed), [`97c5aa2`](https://github.com/livekit/agents-js/commit/97c5aa23a73eb48e128300f8f58d3c9a79db4be1), [`13a191c`](https://github.com/livekit/agents-js/commit/13a191c71088bdd9d4db112f9b57976c1530753f), [`508236a`](https://github.com/livekit/agents-js/commit/508236a77d5b3dd97b93c3b47030f5852dcdd5fe), [`2312eed`](https://github.com/livekit/agents-js/commit/2312eedf02dceaed0ef8554f545c2a5acd720121)]: + - @livekit/agents@1.5.3 + ## 1.5.2 ### Patch Changes diff --git a/plugins/tavus/package.json b/plugins/tavus/package.json index b310a36de..aece712cc 100644 --- a/plugins/tavus/package.json +++ b/plugins/tavus/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-tavus", - "version": "1.5.2", + "version": "1.5.3", "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 c0da34f25..e1418e384 100644 --- a/plugins/test/CHANGELOG.md +++ b/plugins/test/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugins-test +## 1.5.3 + +### Patch Changes + +- Updated dependencies [[`3c19945`](https://github.com/livekit/agents-js/commit/3c1994531efc43975fec30d29289b06abdd6b14f), [`7db92dd`](https://github.com/livekit/agents-js/commit/7db92dd9808c7df5aeb7d06286496a31f49674ba), [`b9d8e95`](https://github.com/livekit/agents-js/commit/b9d8e95b3dbe62cf21e66e345495acb6d8dd768b), [`bad25fd`](https://github.com/livekit/agents-js/commit/bad25fd1dba0e6676fc1153a443dc6acde82626d), [`206e884`](https://github.com/livekit/agents-js/commit/206e884914f8beb658235351bf1c6a20b98d3ac6), [`16ac15e`](https://github.com/livekit/agents-js/commit/16ac15ecbeebe0e3d9e21edf4a29bdb90c969b33), [`6300c1c`](https://github.com/livekit/agents-js/commit/6300c1c9242690589866c6767238aa0c31f3ad30), [`dfd6654`](https://github.com/livekit/agents-js/commit/dfd66540e1e7eb00f8c0b0bfc830e9eeaf0f33ed), [`97c5aa2`](https://github.com/livekit/agents-js/commit/97c5aa23a73eb48e128300f8f58d3c9a79db4be1), [`13a191c`](https://github.com/livekit/agents-js/commit/13a191c71088bdd9d4db112f9b57976c1530753f), [`508236a`](https://github.com/livekit/agents-js/commit/508236a77d5b3dd97b93c3b47030f5852dcdd5fe), [`2312eed`](https://github.com/livekit/agents-js/commit/2312eedf02dceaed0ef8554f545c2a5acd720121)]: + - @livekit/agents@1.5.3 + ## 1.5.2 ### Patch Changes diff --git a/plugins/test/package.json b/plugins/test/package.json index 55633aac3..5b9204a85 100644 --- a/plugins/test/package.json +++ b/plugins/test/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugins-test", - "version": "1.5.2", + "version": "1.5.3", "description": "Testing suite for LiveKit Agents plugins", "author": "LiveKit", "type": "module", diff --git a/plugins/trugen/CHANGELOG.md b/plugins/trugen/CHANGELOG.md index d2f974751..8e8fb672f 100644 --- a/plugins/trugen/CHANGELOG.md +++ b/plugins/trugen/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-trugen +## 1.5.3 + +### Patch Changes + +- Updated dependencies [[`3c19945`](https://github.com/livekit/agents-js/commit/3c1994531efc43975fec30d29289b06abdd6b14f), [`7db92dd`](https://github.com/livekit/agents-js/commit/7db92dd9808c7df5aeb7d06286496a31f49674ba), [`b9d8e95`](https://github.com/livekit/agents-js/commit/b9d8e95b3dbe62cf21e66e345495acb6d8dd768b), [`bad25fd`](https://github.com/livekit/agents-js/commit/bad25fd1dba0e6676fc1153a443dc6acde82626d), [`206e884`](https://github.com/livekit/agents-js/commit/206e884914f8beb658235351bf1c6a20b98d3ac6), [`16ac15e`](https://github.com/livekit/agents-js/commit/16ac15ecbeebe0e3d9e21edf4a29bdb90c969b33), [`6300c1c`](https://github.com/livekit/agents-js/commit/6300c1c9242690589866c6767238aa0c31f3ad30), [`dfd6654`](https://github.com/livekit/agents-js/commit/dfd66540e1e7eb00f8c0b0bfc830e9eeaf0f33ed), [`97c5aa2`](https://github.com/livekit/agents-js/commit/97c5aa23a73eb48e128300f8f58d3c9a79db4be1), [`13a191c`](https://github.com/livekit/agents-js/commit/13a191c71088bdd9d4db112f9b57976c1530753f), [`508236a`](https://github.com/livekit/agents-js/commit/508236a77d5b3dd97b93c3b47030f5852dcdd5fe), [`2312eed`](https://github.com/livekit/agents-js/commit/2312eedf02dceaed0ef8554f545c2a5acd720121)]: + - @livekit/agents@1.5.3 + ## 1.5.2 ### Patch Changes diff --git a/plugins/trugen/package.json b/plugins/trugen/package.json index 7bf6a1114..0dd416247 100644 --- a/plugins/trugen/package.json +++ b/plugins/trugen/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-trugen", - "version": "1.5.2", + "version": "1.5.3", "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 b03fdfb95..cf1c5013a 100644 --- a/plugins/xai/CHANGELOG.md +++ b/plugins/xai/CHANGELOG.md @@ -1,5 +1,15 @@ # @livekit/agents-plugin-xai +## 1.5.3 + +### Patch Changes + +- Add xAI TTS support with websocket connection rotation before xAI's server deadline. - [#2025](https://github.com/livekit/agents-js/pull/2025) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- Updated dependencies [[`3c19945`](https://github.com/livekit/agents-js/commit/3c1994531efc43975fec30d29289b06abdd6b14f), [`7db92dd`](https://github.com/livekit/agents-js/commit/7db92dd9808c7df5aeb7d06286496a31f49674ba), [`b9d8e95`](https://github.com/livekit/agents-js/commit/b9d8e95b3dbe62cf21e66e345495acb6d8dd768b), [`bad25fd`](https://github.com/livekit/agents-js/commit/bad25fd1dba0e6676fc1153a443dc6acde82626d), [`206e884`](https://github.com/livekit/agents-js/commit/206e884914f8beb658235351bf1c6a20b98d3ac6), [`16ac15e`](https://github.com/livekit/agents-js/commit/16ac15ecbeebe0e3d9e21edf4a29bdb90c969b33), [`6a998f6`](https://github.com/livekit/agents-js/commit/6a998f6b48625f928e7c38fbe31569ad0bf1ba76), [`c0c927a`](https://github.com/livekit/agents-js/commit/c0c927a741c2f2de964c2758e263897737d6ddd1), [`6300c1c`](https://github.com/livekit/agents-js/commit/6300c1c9242690589866c6767238aa0c31f3ad30), [`dfd6654`](https://github.com/livekit/agents-js/commit/dfd66540e1e7eb00f8c0b0bfc830e9eeaf0f33ed), [`97c5aa2`](https://github.com/livekit/agents-js/commit/97c5aa23a73eb48e128300f8f58d3c9a79db4be1), [`13a191c`](https://github.com/livekit/agents-js/commit/13a191c71088bdd9d4db112f9b57976c1530753f), [`508236a`](https://github.com/livekit/agents-js/commit/508236a77d5b3dd97b93c3b47030f5852dcdd5fe), [`2312eed`](https://github.com/livekit/agents-js/commit/2312eedf02dceaed0ef8554f545c2a5acd720121)]: + - @livekit/agents@1.5.3 + - @livekit/agents-plugin-openai@1.5.3 + ## 1.5.2 ### Patch Changes diff --git a/plugins/xai/package.json b/plugins/xai/package.json index f63f38843..6629b17aa 100644 --- a/plugins/xai/package.json +++ b/plugins/xai/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-xai", - "version": "1.5.2", + "version": "1.5.3", "description": "xAI plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs",