diff --git a/.changeset/agent-id-deployment-resource-attrs.md b/.changeset/agent-id-deployment-resource-attrs.md deleted file mode 100644 index 7a19912dc..000000000 --- a/.changeset/agent-id-deployment-resource-attrs.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': patch ---- - -Add cloud agent id and deployment to telemetry resource attributes (`lk.cloud_agent_id` / `lk.deployment_id`) when running on LiveKit Cloud. diff --git a/.changeset/avatar-gateway-minted-token.md b/.changeset/avatar-gateway-minted-token.md deleted file mode 100644 index e54c6418b..000000000 --- a/.changeset/avatar-gateway-minted-token.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': patch ---- - -Let the inference gateway mint avatar worker tokens instead of signing them locally. diff --git a/.changeset/defer-interim-interruptions-vad.md b/.changeset/defer-interim-interruptions-vad.md deleted file mode 100644 index edda27c9a..000000000 --- a/.changeset/defer-interim-interruptions-vad.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': patch ---- - -fix(voice): defer interim transcript interruptions to local VAD when configured diff --git a/.changeset/deprecate-legacy-dev-mode.md b/.changeset/deprecate-legacy-dev-mode.md deleted file mode 100644 index d1e6d1be9..000000000 --- a/.changeset/deprecate-legacy-dev-mode.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': patch ---- - -Deprecate direct dev mode in favor of `lk agent dev`. diff --git a/.changeset/fix-interrupted-speech-wedges-session.md b/.changeset/fix-interrupted-speech-wedges-session.md deleted file mode 100644 index 7ba536d02..000000000 --- a/.changeset/fix-interrupted-speech-wedges-session.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -'@livekit/agents': patch ---- - -fix(voice): stop an interrupted reply from muting the session forever - -A reply interrupted before its audio started playing could leave its pipeline reply task -parked in the post-interrupt `waitForPlayout()`, which races only the reply's own abort -signal — a signal nothing on the ordinary interrupt path ever fires. The speech scheduling -loop waits on that reply's generation, so `_currentSpeech` stayed pinned on the interrupted -handle and every later turn was queued but never authorized: the agent went silent for the -rest of the session. On the evidence so far this needs an audio sink whose playback-finished -event the pipeline does not produce itself — remote avatar outputs (`DataStreamAudioOutput` -and the avatar plugins built on it) and user-supplied `AudioOutput`s; a plain room output -settled both of the affected waits on its own across six live runs. - -`SpeechHandle` now arms a 5s watchdog when a speech is interrupted (a port of python's -`INTERRUPTION_TIMEOUT`): if the speech has not finished by then, its tasks are cancelled — -firing exactly the abort signal those waits are already watching — and the handle is marked -done, releasing the scheduler. - -Fixes #2065. diff --git a/.changeset/fix-krisp-frame-identity.md b/.changeset/fix-krisp-frame-identity.md deleted file mode 100644 index 36babff8d..000000000 --- a/.changeset/fix-krisp-frame-identity.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -'@livekit/agents-plugin-krisp': patch ---- - -Fix Krisp-processed audio being invisible to the rest of the pipeline - -The LiveKit Cloud backend is reached through `createRequire`, which resolves the internal -package's `require` condition and so loads the CJS build of `@livekit/rtc-node` next to the -ESM one the framework uses. Frames returned by that backend were instances of the CJS copy's -`AudioFrame`, so every `instanceof AudioFrame` downstream failed. Adaptive interruption saw -zero audio and classified every barge-in as a backchannel, making it impossible to interrupt -an agent that had noise cancellation enabled. Frames are now adopted into the local binding -before leaving the filter, sharing their samples rather than copying them. diff --git a/.changeset/fuzzy-flushes-commit.md b/.changeset/fuzzy-flushes-commit.md deleted file mode 100644 index 8f3f26807..000000000 --- a/.changeset/fuzzy-flushes-commit.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@livekit/agents': patch -'@livekit/agents-plugin-deepgram': patch -'@livekit/agents-plugin-elevenlabs': patch ---- - -Send turn finalization messages when flushing streaming STT with no buffered audio. diff --git a/.changeset/google-genai-2-history-config.md b/.changeset/google-genai-2-history-config.md deleted file mode 100644 index 7521ea44c..000000000 --- a/.changeset/google-genai-2-history-config.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -'@livekit/agents-plugin-google': patch ---- - -Upgrade `@google/genai` to 2.x and seed the initial chat context of Gemini 3.x live sessions with its original roles. - -Models whose chat context cannot be updated mid-session (the 3.x live models) close the socket on a prefill containing `model` turns, so an initial context had to be flattened into `user` turns to survive. Those sessions now send `historyConfig.initialHistoryInClientContent`, which tells the server the leading `clientContent` is history, and the prefill keeps its `user`/`assistant` roles. - -Per the [`HistoryConfig` reference](https://ai.google.dev/api/live#HistoryConfig) the seeded history never triggers a model call and the conversation then starts through `realtimeInput`, so a context ending on a user question is seeded as the completed exchanges followed by that question as realtime text. Left inside the history it would be filed away unanswered. - -Also report when a user turn began on the final input transcript. Gemini withholds that transcript until its reply has finished generating, which had every reply landing ahead of the question it answered in the Cloud transcript. diff --git a/.changeset/green-mice-hear.md b/.changeset/green-mice-hear.md deleted file mode 100644 index 4268375d9..000000000 --- a/.changeset/green-mice-hear.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': patch ---- - -Preserve concrete STT language hints when later transcripts report non-specific language codes. diff --git a/.changeset/lucky-otters-listen.md b/.changeset/lucky-otters-listen.md deleted file mode 100644 index 9b21c669c..000000000 --- a/.changeset/lucky-otters-listen.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': patch ---- - -fix realtime user turns appearing after the reply they prompted, by placing the user message at the time its turn began rather than at the time the provider delivered the transcript diff --git a/.changeset/phonic-configs-for-tools.md b/.changeset/phonic-configs-for-tools.md deleted file mode 100644 index 1d68d7b66..000000000 --- a/.changeset/phonic-configs-for-tools.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents-plugin-phonic': patch ---- - -Add `configsForTools` to the Phonic realtime model — per-tool behavior overrides (`[{ name, ... }]`) forwarded to Phonic's tool config. Each entry may set `require_speech_before_tool_call`, `forbid_speech_after_tool_call`, and `forbid_tool_call_after_speech`; omitted fields fall back to the plugin defaults. The existing `forbidSpeechAfterToolCall: string[]` option is deprecated but still supported — it folds into `configsForTools` and logs a warning. See the README for details. diff --git a/.changeset/report-ink-speech-onset.md b/.changeset/report-ink-speech-onset.md deleted file mode 100644 index 3c61f75ef..000000000 --- a/.changeset/report-ink-speech-onset.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': patch ---- - -Report speech onset immediately when an inference STT provider detects it server-side. diff --git a/.changeset/stale-ravens-crash.md b/.changeset/stale-ravens-crash.md deleted file mode 100644 index d86712576..000000000 --- a/.changeset/stale-ravens-crash.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@livekit/agents-plugin-krisp": patch ---- - -Set default noiseSuppressionLevel to 75 diff --git a/.changeset/tame-clocks-agree.md b/.changeset/tame-clocks-agree.md deleted file mode 100644 index 0370f3251..000000000 --- a/.changeset/tame-clocks-agree.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': patch ---- - -stamp a tool call's `createdAt` when its execution begins rather than when it was parsed off the model stream, so it no longer sorts ahead of the assistant message that requested it diff --git a/.changeset/tidy-pears-listen.md b/.changeset/tidy-pears-listen.md deleted file mode 100644 index 5350ed51f..000000000 --- a/.changeset/tidy-pears-listen.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': patch ---- - -Avoid emitting `playbackStarted` again when room audio resumes mid-segment. diff --git a/.changeset/tidy-stt-alignment.md b/.changeset/tidy-stt-alignment.md deleted file mode 100644 index b1ac88027..000000000 --- a/.changeset/tidy-stt-alignment.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@livekit/agents': patch ---- - -Report word-aligned transcripts only when the inference STT model and every fallback are verified -to provide word timings. diff --git a/.changeset/tolerate-list-deltas.md b/.changeset/tolerate-list-deltas.md deleted file mode 100644 index a02830454..000000000 --- a/.changeset/tolerate-list-deltas.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': patch ---- - -Handle list-shaped content parts in streamed LLM deltas when stripping thinking tokens. diff --git a/.changeset/type-cartesia-turn-detection.md b/.changeset/type-cartesia-turn-detection.md deleted file mode 100644 index a4986200e..000000000 --- a/.changeset/type-cartesia-turn-detection.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': patch ---- - -Type Cartesia turn-detection parameters in inference STT model options. diff --git a/.changeset/update-rtc-node-0-13-33.md b/.changeset/update-rtc-node-0-13-33.md deleted file mode 100644 index 3af2ad7ef..000000000 --- a/.changeset/update-rtc-node-0-13-33.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@livekit/agents': patch ---- - -chore(deps): update @livekit/rtc-node to 0.13.33 - -Picks up livekit-ffi 0.12.73 and a fix for the dual package hazard (livekit/node-sdks#700, livekit/node-sdks#698). diff --git a/.changeset/xai-stt-turn-options.md b/.changeset/xai-stt-turn-options.md deleted file mode 100644 index 8f54d7aaf..000000000 --- a/.changeset/xai-stt-turn-options.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents-plugin-xai': patch ---- - -Expose xAI STT VAD threshold, Smart Turn, Smart Turn timeout, and keyterm options. diff --git a/agents/CHANGELOG.md b/agents/CHANGELOG.md index 946a4abf7..fb49afe4f 100644 --- a/agents/CHANGELOG.md +++ b/agents/CHANGELOG.md @@ -1,5 +1,59 @@ # @livekit/agents +## 1.6.1 + +### Patch Changes + +- Add cloud agent id and deployment to telemetry resource attributes (`lk.cloud_agent_id` / `lk.deployment_id`) when running on LiveKit Cloud. - [#2137](https://github.com/livekit/agents-js/pull/2137) ([@jmcclanahan](https://github.com/jmcclanahan)) + +- Let the inference gateway mint avatar worker tokens instead of signing them locally. - [#2152](https://github.com/livekit/agents-js/pull/2152) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- fix(voice): defer interim transcript interruptions to local VAD when configured - [#2159](https://github.com/livekit/agents-js/pull/2159) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- Deprecate direct dev mode in favor of `lk agent dev`. - [#2194](https://github.com/livekit/agents-js/pull/2194) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- fix(voice): stop an interrupted reply from muting the session forever - [#2127](https://github.com/livekit/agents-js/pull/2127) ([@toubatbrian](https://github.com/toubatbrian)) + + A reply interrupted before its audio started playing could leave its pipeline reply task + parked in the post-interrupt `waitForPlayout()`, which races only the reply's own abort + signal — a signal nothing on the ordinary interrupt path ever fires. The speech scheduling + loop waits on that reply's generation, so `_currentSpeech` stayed pinned on the interrupted + handle and every later turn was queued but never authorized: the agent went silent for the + rest of the session. On the evidence so far this needs an audio sink whose playback-finished + event the pipeline does not produce itself — remote avatar outputs (`DataStreamAudioOutput` + and the avatar plugins built on it) and user-supplied `AudioOutput`s; a plain room output + settled both of the affected waits on its own across six live runs. + + `SpeechHandle` now arms a 5s watchdog when a speech is interrupted (a port of python's + `INTERRUPTION_TIMEOUT`): if the speech has not finished by then, its tasks are cancelled — + firing exactly the abort signal those waits are already watching — and the handle is marked + done, releasing the scheduler. + + Fixes #2065. + +- Send turn finalization messages when flushing streaming STT with no buffered audio. - [#2172](https://github.com/livekit/agents-js/pull/2172) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- Preserve concrete STT language hints when later transcripts report non-specific language codes. - [#2149](https://github.com/livekit/agents-js/pull/2149) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- fix realtime user turns appearing after the reply they prompted, by placing the user message at the time its turn began rather than at the time the provider delivered the transcript - [#2165](https://github.com/livekit/agents-js/pull/2165) ([@toubatbrian](https://github.com/toubatbrian)) + +- Report speech onset immediately when an inference STT provider detects it server-side. - [#2182](https://github.com/livekit/agents-js/pull/2182) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- stamp a tool call's `createdAt` when its execution begins rather than when it was parsed off the model stream, so it no longer sorts ahead of the assistant message that requested it - [#2171](https://github.com/livekit/agents-js/pull/2171) ([@u9g](https://github.com/u9g)) + +- Avoid emitting `playbackStarted` again when room audio resumes mid-segment. - [#2184](https://github.com/livekit/agents-js/pull/2184) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- Report word-aligned transcripts only when the inference STT model and every fallback are verified - [#2181](https://github.com/livekit/agents-js/pull/2181) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + to provide word timings. + +- Handle list-shaped content parts in streamed LLM deltas when stripping thinking tokens. - [#2188](https://github.com/livekit/agents-js/pull/2188) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- Type Cartesia turn-detection parameters in inference STT model options. - [#2173](https://github.com/livekit/agents-js/pull/2173) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- chore(deps): update @livekit/rtc-node to 0.13.33 - [#2191](https://github.com/livekit/agents-js/pull/2191) ([@theomonnom](https://github.com/theomonnom)) + + Picks up livekit-ffi 0.12.73 and a fix for the dual package hazard (livekit/node-sdks#700, livekit/node-sdks#698). + ## 1.6.0 ### Minor Changes diff --git a/agents/package.json b/agents/package.json index ed83338ad..9134997f9 100644 --- a/agents/package.json +++ b/agents/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents", - "version": "1.6.0", + "version": "1.6.1", "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 8d7ead267..43b72d810 100644 --- a/plugins/anam/CHANGELOG.md +++ b/plugins/anam/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-anam +## 1.6.1 + +### Patch Changes + +- Updated dependencies [[`5010952`](https://github.com/livekit/agents-js/commit/5010952de1bae7b66c72981966f79f450dc8fc8c), [`db3263b`](https://github.com/livekit/agents-js/commit/db3263b47e940760570548c8cae76f83bb1b621e), [`37eda82`](https://github.com/livekit/agents-js/commit/37eda821631e44e182dbc4331df68715d471c3f0), [`6b6ba2b`](https://github.com/livekit/agents-js/commit/6b6ba2b8a11bf96ab48950edbb633127620f7f5a), [`67620fb`](https://github.com/livekit/agents-js/commit/67620fb963310fb26cef0f2d862023c705fd93f0), [`fd46904`](https://github.com/livekit/agents-js/commit/fd46904eeb91817dce99680876c50162573028cb), [`d4edb58`](https://github.com/livekit/agents-js/commit/d4edb58c1f7dc1636f516ef7d379da3a473d97b4), [`2446c9e`](https://github.com/livekit/agents-js/commit/2446c9e2a38f4595dfb3c474be36294bb09cd3db), [`262a602`](https://github.com/livekit/agents-js/commit/262a602e2452e946ad3c79212ac7412de5cdb704), [`d5d8d04`](https://github.com/livekit/agents-js/commit/d5d8d0487d2e99f49a1b56ab6b9e82b481491955), [`0daf8d6`](https://github.com/livekit/agents-js/commit/0daf8d61d92bfba5267d76a3871e7634a9111648), [`9d38c3e`](https://github.com/livekit/agents-js/commit/9d38c3ed8e6add6c8cfabb7c17a178e882db79b1), [`238a58c`](https://github.com/livekit/agents-js/commit/238a58c6bedbcea041676c2dfd6e72be1e3ac912), [`f7e9c0c`](https://github.com/livekit/agents-js/commit/f7e9c0c5295381051a7a50401383d975b3ce22b8), [`16c30ca`](https://github.com/livekit/agents-js/commit/16c30caec4a1d5b61ba8358fa69f81dea84915c1)]: + - @livekit/agents@1.6.1 + ## 1.6.0 ### Patch Changes diff --git a/plugins/anam/package.json b/plugins/anam/package.json index ea6fc76cf..e69a3f2c0 100644 --- a/plugins/anam/package.json +++ b/plugins/anam/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-anam", - "version": "1.6.0", + "version": "1.6.1", "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 826b22932..913359e13 100644 --- a/plugins/anthropic/CHANGELOG.md +++ b/plugins/anthropic/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-anthropic +## 1.6.1 + +### Patch Changes + +- Updated dependencies [[`5010952`](https://github.com/livekit/agents-js/commit/5010952de1bae7b66c72981966f79f450dc8fc8c), [`db3263b`](https://github.com/livekit/agents-js/commit/db3263b47e940760570548c8cae76f83bb1b621e), [`37eda82`](https://github.com/livekit/agents-js/commit/37eda821631e44e182dbc4331df68715d471c3f0), [`6b6ba2b`](https://github.com/livekit/agents-js/commit/6b6ba2b8a11bf96ab48950edbb633127620f7f5a), [`67620fb`](https://github.com/livekit/agents-js/commit/67620fb963310fb26cef0f2d862023c705fd93f0), [`fd46904`](https://github.com/livekit/agents-js/commit/fd46904eeb91817dce99680876c50162573028cb), [`d4edb58`](https://github.com/livekit/agents-js/commit/d4edb58c1f7dc1636f516ef7d379da3a473d97b4), [`2446c9e`](https://github.com/livekit/agents-js/commit/2446c9e2a38f4595dfb3c474be36294bb09cd3db), [`262a602`](https://github.com/livekit/agents-js/commit/262a602e2452e946ad3c79212ac7412de5cdb704), [`d5d8d04`](https://github.com/livekit/agents-js/commit/d5d8d0487d2e99f49a1b56ab6b9e82b481491955), [`0daf8d6`](https://github.com/livekit/agents-js/commit/0daf8d61d92bfba5267d76a3871e7634a9111648), [`9d38c3e`](https://github.com/livekit/agents-js/commit/9d38c3ed8e6add6c8cfabb7c17a178e882db79b1), [`238a58c`](https://github.com/livekit/agents-js/commit/238a58c6bedbcea041676c2dfd6e72be1e3ac912), [`f7e9c0c`](https://github.com/livekit/agents-js/commit/f7e9c0c5295381051a7a50401383d975b3ce22b8), [`16c30ca`](https://github.com/livekit/agents-js/commit/16c30caec4a1d5b61ba8358fa69f81dea84915c1)]: + - @livekit/agents@1.6.1 + ## 1.6.0 ### Patch Changes diff --git a/plugins/anthropic/package.json b/plugins/anthropic/package.json index 0d2ad1646..a826074b8 100644 --- a/plugins/anthropic/package.json +++ b/plugins/anthropic/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-anthropic", - "version": "1.6.0", + "version": "1.6.1", "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 d0f7e0e16..cb2cd402a 100644 --- a/plugins/assemblyai/CHANGELOG.md +++ b/plugins/assemblyai/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-assemblyai +## 1.6.1 + +### Patch Changes + +- Updated dependencies [[`5010952`](https://github.com/livekit/agents-js/commit/5010952de1bae7b66c72981966f79f450dc8fc8c), [`db3263b`](https://github.com/livekit/agents-js/commit/db3263b47e940760570548c8cae76f83bb1b621e), [`37eda82`](https://github.com/livekit/agents-js/commit/37eda821631e44e182dbc4331df68715d471c3f0), [`6b6ba2b`](https://github.com/livekit/agents-js/commit/6b6ba2b8a11bf96ab48950edbb633127620f7f5a), [`67620fb`](https://github.com/livekit/agents-js/commit/67620fb963310fb26cef0f2d862023c705fd93f0), [`fd46904`](https://github.com/livekit/agents-js/commit/fd46904eeb91817dce99680876c50162573028cb), [`d4edb58`](https://github.com/livekit/agents-js/commit/d4edb58c1f7dc1636f516ef7d379da3a473d97b4), [`2446c9e`](https://github.com/livekit/agents-js/commit/2446c9e2a38f4595dfb3c474be36294bb09cd3db), [`262a602`](https://github.com/livekit/agents-js/commit/262a602e2452e946ad3c79212ac7412de5cdb704), [`d5d8d04`](https://github.com/livekit/agents-js/commit/d5d8d0487d2e99f49a1b56ab6b9e82b481491955), [`0daf8d6`](https://github.com/livekit/agents-js/commit/0daf8d61d92bfba5267d76a3871e7634a9111648), [`9d38c3e`](https://github.com/livekit/agents-js/commit/9d38c3ed8e6add6c8cfabb7c17a178e882db79b1), [`238a58c`](https://github.com/livekit/agents-js/commit/238a58c6bedbcea041676c2dfd6e72be1e3ac912), [`f7e9c0c`](https://github.com/livekit/agents-js/commit/f7e9c0c5295381051a7a50401383d975b3ce22b8), [`16c30ca`](https://github.com/livekit/agents-js/commit/16c30caec4a1d5b61ba8358fa69f81dea84915c1)]: + - @livekit/agents@1.6.1 + ## 1.6.0 ### Patch Changes diff --git a/plugins/assemblyai/package.json b/plugins/assemblyai/package.json index 93ea319c9..0c4ea8e2b 100644 --- a/plugins/assemblyai/package.json +++ b/plugins/assemblyai/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-assemblyai", - "version": "1.6.0", + "version": "1.6.1", "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 f20cd4fb1..c81bc5dd9 100644 --- a/plugins/azure/CHANGELOG.md +++ b/plugins/azure/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-azure +## 1.6.1 + +### Patch Changes + +- Updated dependencies [[`5010952`](https://github.com/livekit/agents-js/commit/5010952de1bae7b66c72981966f79f450dc8fc8c), [`db3263b`](https://github.com/livekit/agents-js/commit/db3263b47e940760570548c8cae76f83bb1b621e), [`37eda82`](https://github.com/livekit/agents-js/commit/37eda821631e44e182dbc4331df68715d471c3f0), [`6b6ba2b`](https://github.com/livekit/agents-js/commit/6b6ba2b8a11bf96ab48950edbb633127620f7f5a), [`67620fb`](https://github.com/livekit/agents-js/commit/67620fb963310fb26cef0f2d862023c705fd93f0), [`fd46904`](https://github.com/livekit/agents-js/commit/fd46904eeb91817dce99680876c50162573028cb), [`d4edb58`](https://github.com/livekit/agents-js/commit/d4edb58c1f7dc1636f516ef7d379da3a473d97b4), [`2446c9e`](https://github.com/livekit/agents-js/commit/2446c9e2a38f4595dfb3c474be36294bb09cd3db), [`262a602`](https://github.com/livekit/agents-js/commit/262a602e2452e946ad3c79212ac7412de5cdb704), [`d5d8d04`](https://github.com/livekit/agents-js/commit/d5d8d0487d2e99f49a1b56ab6b9e82b481491955), [`0daf8d6`](https://github.com/livekit/agents-js/commit/0daf8d61d92bfba5267d76a3871e7634a9111648), [`9d38c3e`](https://github.com/livekit/agents-js/commit/9d38c3ed8e6add6c8cfabb7c17a178e882db79b1), [`238a58c`](https://github.com/livekit/agents-js/commit/238a58c6bedbcea041676c2dfd6e72be1e3ac912), [`f7e9c0c`](https://github.com/livekit/agents-js/commit/f7e9c0c5295381051a7a50401383d975b3ce22b8), [`16c30ca`](https://github.com/livekit/agents-js/commit/16c30caec4a1d5b61ba8358fa69f81dea84915c1)]: + - @livekit/agents@1.6.1 + ## 1.6.0 ### Patch Changes diff --git a/plugins/azure/package.json b/plugins/azure/package.json index 1bad9a117..1651d7550 100644 --- a/plugins/azure/package.json +++ b/plugins/azure/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-azure", - "version": "1.6.0", + "version": "1.6.1", "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 3f59bfacd..2b76fcac3 100644 --- a/plugins/baseten/CHANGELOG.md +++ b/plugins/baseten/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-baseten +## 1.6.1 + +### Patch Changes + +- Updated dependencies [[`5010952`](https://github.com/livekit/agents-js/commit/5010952de1bae7b66c72981966f79f450dc8fc8c), [`db3263b`](https://github.com/livekit/agents-js/commit/db3263b47e940760570548c8cae76f83bb1b621e), [`37eda82`](https://github.com/livekit/agents-js/commit/37eda821631e44e182dbc4331df68715d471c3f0), [`6b6ba2b`](https://github.com/livekit/agents-js/commit/6b6ba2b8a11bf96ab48950edbb633127620f7f5a), [`67620fb`](https://github.com/livekit/agents-js/commit/67620fb963310fb26cef0f2d862023c705fd93f0), [`fd46904`](https://github.com/livekit/agents-js/commit/fd46904eeb91817dce99680876c50162573028cb), [`d4edb58`](https://github.com/livekit/agents-js/commit/d4edb58c1f7dc1636f516ef7d379da3a473d97b4), [`2446c9e`](https://github.com/livekit/agents-js/commit/2446c9e2a38f4595dfb3c474be36294bb09cd3db), [`262a602`](https://github.com/livekit/agents-js/commit/262a602e2452e946ad3c79212ac7412de5cdb704), [`d5d8d04`](https://github.com/livekit/agents-js/commit/d5d8d0487d2e99f49a1b56ab6b9e82b481491955), [`0daf8d6`](https://github.com/livekit/agents-js/commit/0daf8d61d92bfba5267d76a3871e7634a9111648), [`9d38c3e`](https://github.com/livekit/agents-js/commit/9d38c3ed8e6add6c8cfabb7c17a178e882db79b1), [`238a58c`](https://github.com/livekit/agents-js/commit/238a58c6bedbcea041676c2dfd6e72be1e3ac912), [`f7e9c0c`](https://github.com/livekit/agents-js/commit/f7e9c0c5295381051a7a50401383d975b3ce22b8), [`16c30ca`](https://github.com/livekit/agents-js/commit/16c30caec4a1d5b61ba8358fa69f81dea84915c1)]: + - @livekit/agents@1.6.1 + ## 1.6.0 ### Patch Changes diff --git a/plugins/baseten/package.json b/plugins/baseten/package.json index d7f48ac27..fa7d9e1e9 100644 --- a/plugins/baseten/package.json +++ b/plugins/baseten/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-baseten", - "version": "1.6.0", + "version": "1.6.1", "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 2d7d14641..2b99b06e9 100644 --- a/plugins/bey/CHANGELOG.md +++ b/plugins/bey/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-bey +## 1.6.1 + +### Patch Changes + +- Updated dependencies [[`5010952`](https://github.com/livekit/agents-js/commit/5010952de1bae7b66c72981966f79f450dc8fc8c), [`db3263b`](https://github.com/livekit/agents-js/commit/db3263b47e940760570548c8cae76f83bb1b621e), [`37eda82`](https://github.com/livekit/agents-js/commit/37eda821631e44e182dbc4331df68715d471c3f0), [`6b6ba2b`](https://github.com/livekit/agents-js/commit/6b6ba2b8a11bf96ab48950edbb633127620f7f5a), [`67620fb`](https://github.com/livekit/agents-js/commit/67620fb963310fb26cef0f2d862023c705fd93f0), [`fd46904`](https://github.com/livekit/agents-js/commit/fd46904eeb91817dce99680876c50162573028cb), [`d4edb58`](https://github.com/livekit/agents-js/commit/d4edb58c1f7dc1636f516ef7d379da3a473d97b4), [`2446c9e`](https://github.com/livekit/agents-js/commit/2446c9e2a38f4595dfb3c474be36294bb09cd3db), [`262a602`](https://github.com/livekit/agents-js/commit/262a602e2452e946ad3c79212ac7412de5cdb704), [`d5d8d04`](https://github.com/livekit/agents-js/commit/d5d8d0487d2e99f49a1b56ab6b9e82b481491955), [`0daf8d6`](https://github.com/livekit/agents-js/commit/0daf8d61d92bfba5267d76a3871e7634a9111648), [`9d38c3e`](https://github.com/livekit/agents-js/commit/9d38c3ed8e6add6c8cfabb7c17a178e882db79b1), [`238a58c`](https://github.com/livekit/agents-js/commit/238a58c6bedbcea041676c2dfd6e72be1e3ac912), [`f7e9c0c`](https://github.com/livekit/agents-js/commit/f7e9c0c5295381051a7a50401383d975b3ce22b8), [`16c30ca`](https://github.com/livekit/agents-js/commit/16c30caec4a1d5b61ba8358fa69f81dea84915c1)]: + - @livekit/agents@1.6.1 + ## 1.6.0 ### Patch Changes diff --git a/plugins/bey/package.json b/plugins/bey/package.json index c252bae17..a1e405df1 100644 --- a/plugins/bey/package.json +++ b/plugins/bey/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-bey", - "version": "1.6.0", + "version": "1.6.1", "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 9a6fb94dd..4644b42b8 100644 --- a/plugins/cartesia/CHANGELOG.md +++ b/plugins/cartesia/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-cartesia +## 1.6.1 + +### Patch Changes + +- Updated dependencies [[`5010952`](https://github.com/livekit/agents-js/commit/5010952de1bae7b66c72981966f79f450dc8fc8c), [`db3263b`](https://github.com/livekit/agents-js/commit/db3263b47e940760570548c8cae76f83bb1b621e), [`37eda82`](https://github.com/livekit/agents-js/commit/37eda821631e44e182dbc4331df68715d471c3f0), [`6b6ba2b`](https://github.com/livekit/agents-js/commit/6b6ba2b8a11bf96ab48950edbb633127620f7f5a), [`67620fb`](https://github.com/livekit/agents-js/commit/67620fb963310fb26cef0f2d862023c705fd93f0), [`fd46904`](https://github.com/livekit/agents-js/commit/fd46904eeb91817dce99680876c50162573028cb), [`d4edb58`](https://github.com/livekit/agents-js/commit/d4edb58c1f7dc1636f516ef7d379da3a473d97b4), [`2446c9e`](https://github.com/livekit/agents-js/commit/2446c9e2a38f4595dfb3c474be36294bb09cd3db), [`262a602`](https://github.com/livekit/agents-js/commit/262a602e2452e946ad3c79212ac7412de5cdb704), [`d5d8d04`](https://github.com/livekit/agents-js/commit/d5d8d0487d2e99f49a1b56ab6b9e82b481491955), [`0daf8d6`](https://github.com/livekit/agents-js/commit/0daf8d61d92bfba5267d76a3871e7634a9111648), [`9d38c3e`](https://github.com/livekit/agents-js/commit/9d38c3ed8e6add6c8cfabb7c17a178e882db79b1), [`238a58c`](https://github.com/livekit/agents-js/commit/238a58c6bedbcea041676c2dfd6e72be1e3ac912), [`f7e9c0c`](https://github.com/livekit/agents-js/commit/f7e9c0c5295381051a7a50401383d975b3ce22b8), [`16c30ca`](https://github.com/livekit/agents-js/commit/16c30caec4a1d5b61ba8358fa69f81dea84915c1)]: + - @livekit/agents@1.6.1 + ## 1.6.0 ### Patch Changes diff --git a/plugins/cartesia/package.json b/plugins/cartesia/package.json index 6b0fc09e3..8a047c694 100644 --- a/plugins/cartesia/package.json +++ b/plugins/cartesia/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-cartesia", - "version": "1.6.0", + "version": "1.6.1", "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 f136c4858..7ab1b1305 100644 --- a/plugins/cerebras/CHANGELOG.md +++ b/plugins/cerebras/CHANGELOG.md @@ -1,5 +1,13 @@ # @livekit/agents-plugin-cerebras +## 1.6.1 + +### Patch Changes + +- Updated dependencies [[`5010952`](https://github.com/livekit/agents-js/commit/5010952de1bae7b66c72981966f79f450dc8fc8c), [`db3263b`](https://github.com/livekit/agents-js/commit/db3263b47e940760570548c8cae76f83bb1b621e), [`37eda82`](https://github.com/livekit/agents-js/commit/37eda821631e44e182dbc4331df68715d471c3f0), [`6b6ba2b`](https://github.com/livekit/agents-js/commit/6b6ba2b8a11bf96ab48950edbb633127620f7f5a), [`67620fb`](https://github.com/livekit/agents-js/commit/67620fb963310fb26cef0f2d862023c705fd93f0), [`fd46904`](https://github.com/livekit/agents-js/commit/fd46904eeb91817dce99680876c50162573028cb), [`d4edb58`](https://github.com/livekit/agents-js/commit/d4edb58c1f7dc1636f516ef7d379da3a473d97b4), [`2446c9e`](https://github.com/livekit/agents-js/commit/2446c9e2a38f4595dfb3c474be36294bb09cd3db), [`262a602`](https://github.com/livekit/agents-js/commit/262a602e2452e946ad3c79212ac7412de5cdb704), [`d5d8d04`](https://github.com/livekit/agents-js/commit/d5d8d0487d2e99f49a1b56ab6b9e82b481491955), [`0daf8d6`](https://github.com/livekit/agents-js/commit/0daf8d61d92bfba5267d76a3871e7634a9111648), [`9d38c3e`](https://github.com/livekit/agents-js/commit/9d38c3ed8e6add6c8cfabb7c17a178e882db79b1), [`238a58c`](https://github.com/livekit/agents-js/commit/238a58c6bedbcea041676c2dfd6e72be1e3ac912), [`f7e9c0c`](https://github.com/livekit/agents-js/commit/f7e9c0c5295381051a7a50401383d975b3ce22b8), [`16c30ca`](https://github.com/livekit/agents-js/commit/16c30caec4a1d5b61ba8358fa69f81dea84915c1)]: + - @livekit/agents@1.6.1 + - @livekit/agents-plugin-openai@1.6.1 + ## 1.6.0 ### Patch Changes diff --git a/plugins/cerebras/package.json b/plugins/cerebras/package.json index d001dcf65..a2bffb219 100644 --- a/plugins/cerebras/package.json +++ b/plugins/cerebras/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-cerebras", - "version": "1.6.0", + "version": "1.6.1", "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 08abae7d4..25e8c1e62 100644 --- a/plugins/deepgram/CHANGELOG.md +++ b/plugins/deepgram/CHANGELOG.md @@ -1,5 +1,14 @@ # @livekit/agents-plugin-deepgram +## 1.6.1 + +### Patch Changes + +- Send turn finalization messages when flushing streaming STT with no buffered audio. - [#2172](https://github.com/livekit/agents-js/pull/2172) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- Updated dependencies [[`5010952`](https://github.com/livekit/agents-js/commit/5010952de1bae7b66c72981966f79f450dc8fc8c), [`db3263b`](https://github.com/livekit/agents-js/commit/db3263b47e940760570548c8cae76f83bb1b621e), [`37eda82`](https://github.com/livekit/agents-js/commit/37eda821631e44e182dbc4331df68715d471c3f0), [`6b6ba2b`](https://github.com/livekit/agents-js/commit/6b6ba2b8a11bf96ab48950edbb633127620f7f5a), [`67620fb`](https://github.com/livekit/agents-js/commit/67620fb963310fb26cef0f2d862023c705fd93f0), [`fd46904`](https://github.com/livekit/agents-js/commit/fd46904eeb91817dce99680876c50162573028cb), [`d4edb58`](https://github.com/livekit/agents-js/commit/d4edb58c1f7dc1636f516ef7d379da3a473d97b4), [`2446c9e`](https://github.com/livekit/agents-js/commit/2446c9e2a38f4595dfb3c474be36294bb09cd3db), [`262a602`](https://github.com/livekit/agents-js/commit/262a602e2452e946ad3c79212ac7412de5cdb704), [`d5d8d04`](https://github.com/livekit/agents-js/commit/d5d8d0487d2e99f49a1b56ab6b9e82b481491955), [`0daf8d6`](https://github.com/livekit/agents-js/commit/0daf8d61d92bfba5267d76a3871e7634a9111648), [`9d38c3e`](https://github.com/livekit/agents-js/commit/9d38c3ed8e6add6c8cfabb7c17a178e882db79b1), [`238a58c`](https://github.com/livekit/agents-js/commit/238a58c6bedbcea041676c2dfd6e72be1e3ac912), [`f7e9c0c`](https://github.com/livekit/agents-js/commit/f7e9c0c5295381051a7a50401383d975b3ce22b8), [`16c30ca`](https://github.com/livekit/agents-js/commit/16c30caec4a1d5b61ba8358fa69f81dea84915c1)]: + - @livekit/agents@1.6.1 + ## 1.6.0 ### Patch Changes diff --git a/plugins/deepgram/package.json b/plugins/deepgram/package.json index ce1b01b08..46baf631b 100644 --- a/plugins/deepgram/package.json +++ b/plugins/deepgram/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-deepgram", - "version": "1.6.0", + "version": "1.6.1", "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 fa78a0e93..5cb4ceaa7 100644 --- a/plugins/did/CHANGELOG.md +++ b/plugins/did/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-did +## 1.6.1 + +### Patch Changes + +- Updated dependencies [[`5010952`](https://github.com/livekit/agents-js/commit/5010952de1bae7b66c72981966f79f450dc8fc8c), [`db3263b`](https://github.com/livekit/agents-js/commit/db3263b47e940760570548c8cae76f83bb1b621e), [`37eda82`](https://github.com/livekit/agents-js/commit/37eda821631e44e182dbc4331df68715d471c3f0), [`6b6ba2b`](https://github.com/livekit/agents-js/commit/6b6ba2b8a11bf96ab48950edbb633127620f7f5a), [`67620fb`](https://github.com/livekit/agents-js/commit/67620fb963310fb26cef0f2d862023c705fd93f0), [`fd46904`](https://github.com/livekit/agents-js/commit/fd46904eeb91817dce99680876c50162573028cb), [`d4edb58`](https://github.com/livekit/agents-js/commit/d4edb58c1f7dc1636f516ef7d379da3a473d97b4), [`2446c9e`](https://github.com/livekit/agents-js/commit/2446c9e2a38f4595dfb3c474be36294bb09cd3db), [`262a602`](https://github.com/livekit/agents-js/commit/262a602e2452e946ad3c79212ac7412de5cdb704), [`d5d8d04`](https://github.com/livekit/agents-js/commit/d5d8d0487d2e99f49a1b56ab6b9e82b481491955), [`0daf8d6`](https://github.com/livekit/agents-js/commit/0daf8d61d92bfba5267d76a3871e7634a9111648), [`9d38c3e`](https://github.com/livekit/agents-js/commit/9d38c3ed8e6add6c8cfabb7c17a178e882db79b1), [`238a58c`](https://github.com/livekit/agents-js/commit/238a58c6bedbcea041676c2dfd6e72be1e3ac912), [`f7e9c0c`](https://github.com/livekit/agents-js/commit/f7e9c0c5295381051a7a50401383d975b3ce22b8), [`16c30ca`](https://github.com/livekit/agents-js/commit/16c30caec4a1d5b61ba8358fa69f81dea84915c1)]: + - @livekit/agents@1.6.1 + ## 1.6.0 ### Patch Changes diff --git a/plugins/did/package.json b/plugins/did/package.json index 7a6159304..51d822e91 100644 --- a/plugins/did/package.json +++ b/plugins/did/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-did", - "version": "1.6.0", + "version": "1.6.1", "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 b87f54412..efa6480fe 100644 --- a/plugins/elevenlabs/CHANGELOG.md +++ b/plugins/elevenlabs/CHANGELOG.md @@ -1,5 +1,14 @@ # @livekit/agents-plugin-elevenlabs +## 1.6.1 + +### Patch Changes + +- Send turn finalization messages when flushing streaming STT with no buffered audio. - [#2172](https://github.com/livekit/agents-js/pull/2172) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- Updated dependencies [[`5010952`](https://github.com/livekit/agents-js/commit/5010952de1bae7b66c72981966f79f450dc8fc8c), [`db3263b`](https://github.com/livekit/agents-js/commit/db3263b47e940760570548c8cae76f83bb1b621e), [`37eda82`](https://github.com/livekit/agents-js/commit/37eda821631e44e182dbc4331df68715d471c3f0), [`6b6ba2b`](https://github.com/livekit/agents-js/commit/6b6ba2b8a11bf96ab48950edbb633127620f7f5a), [`67620fb`](https://github.com/livekit/agents-js/commit/67620fb963310fb26cef0f2d862023c705fd93f0), [`fd46904`](https://github.com/livekit/agents-js/commit/fd46904eeb91817dce99680876c50162573028cb), [`d4edb58`](https://github.com/livekit/agents-js/commit/d4edb58c1f7dc1636f516ef7d379da3a473d97b4), [`2446c9e`](https://github.com/livekit/agents-js/commit/2446c9e2a38f4595dfb3c474be36294bb09cd3db), [`262a602`](https://github.com/livekit/agents-js/commit/262a602e2452e946ad3c79212ac7412de5cdb704), [`d5d8d04`](https://github.com/livekit/agents-js/commit/d5d8d0487d2e99f49a1b56ab6b9e82b481491955), [`0daf8d6`](https://github.com/livekit/agents-js/commit/0daf8d61d92bfba5267d76a3871e7634a9111648), [`9d38c3e`](https://github.com/livekit/agents-js/commit/9d38c3ed8e6add6c8cfabb7c17a178e882db79b1), [`238a58c`](https://github.com/livekit/agents-js/commit/238a58c6bedbcea041676c2dfd6e72be1e3ac912), [`f7e9c0c`](https://github.com/livekit/agents-js/commit/f7e9c0c5295381051a7a50401383d975b3ce22b8), [`16c30ca`](https://github.com/livekit/agents-js/commit/16c30caec4a1d5b61ba8358fa69f81dea84915c1)]: + - @livekit/agents@1.6.1 + ## 1.6.0 ### Patch Changes diff --git a/plugins/elevenlabs/package.json b/plugins/elevenlabs/package.json index 2aef98ae1..4457cccb0 100644 --- a/plugins/elevenlabs/package.json +++ b/plugins/elevenlabs/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-elevenlabs", - "version": "1.6.0", + "version": "1.6.1", "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 e293c1a0c..a2c5c3969 100644 --- a/plugins/fishaudio/CHANGELOG.md +++ b/plugins/fishaudio/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-fishaudio +## 1.6.1 + +### Patch Changes + +- Updated dependencies [[`5010952`](https://github.com/livekit/agents-js/commit/5010952de1bae7b66c72981966f79f450dc8fc8c), [`db3263b`](https://github.com/livekit/agents-js/commit/db3263b47e940760570548c8cae76f83bb1b621e), [`37eda82`](https://github.com/livekit/agents-js/commit/37eda821631e44e182dbc4331df68715d471c3f0), [`6b6ba2b`](https://github.com/livekit/agents-js/commit/6b6ba2b8a11bf96ab48950edbb633127620f7f5a), [`67620fb`](https://github.com/livekit/agents-js/commit/67620fb963310fb26cef0f2d862023c705fd93f0), [`fd46904`](https://github.com/livekit/agents-js/commit/fd46904eeb91817dce99680876c50162573028cb), [`d4edb58`](https://github.com/livekit/agents-js/commit/d4edb58c1f7dc1636f516ef7d379da3a473d97b4), [`2446c9e`](https://github.com/livekit/agents-js/commit/2446c9e2a38f4595dfb3c474be36294bb09cd3db), [`262a602`](https://github.com/livekit/agents-js/commit/262a602e2452e946ad3c79212ac7412de5cdb704), [`d5d8d04`](https://github.com/livekit/agents-js/commit/d5d8d0487d2e99f49a1b56ab6b9e82b481491955), [`0daf8d6`](https://github.com/livekit/agents-js/commit/0daf8d61d92bfba5267d76a3871e7634a9111648), [`9d38c3e`](https://github.com/livekit/agents-js/commit/9d38c3ed8e6add6c8cfabb7c17a178e882db79b1), [`238a58c`](https://github.com/livekit/agents-js/commit/238a58c6bedbcea041676c2dfd6e72be1e3ac912), [`f7e9c0c`](https://github.com/livekit/agents-js/commit/f7e9c0c5295381051a7a50401383d975b3ce22b8), [`16c30ca`](https://github.com/livekit/agents-js/commit/16c30caec4a1d5b61ba8358fa69f81dea84915c1)]: + - @livekit/agents@1.6.1 + ## 1.6.0 ### Patch Changes diff --git a/plugins/fishaudio/package.json b/plugins/fishaudio/package.json index 2a77d9420..ef8311ecb 100644 --- a/plugins/fishaudio/package.json +++ b/plugins/fishaudio/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-fishaudio", - "version": "1.6.0", + "version": "1.6.1", "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 c968721c7..aaf132bd8 100644 --- a/plugins/google/CHANGELOG.md +++ b/plugins/google/CHANGELOG.md @@ -1,5 +1,20 @@ # @livekit/agents-plugin-google +## 1.6.1 + +### Patch Changes + +- Upgrade `@google/genai` to 2.x and seed the initial chat context of Gemini 3.x live sessions with its original roles. - [#2162](https://github.com/livekit/agents-js/pull/2162) ([@toubatbrian](https://github.com/toubatbrian)) + + Models whose chat context cannot be updated mid-session (the 3.x live models) close the socket on a prefill containing `model` turns, so an initial context had to be flattened into `user` turns to survive. Those sessions now send `historyConfig.initialHistoryInClientContent`, which tells the server the leading `clientContent` is history, and the prefill keeps its `user`/`assistant` roles. + + Per the [`HistoryConfig` reference](https://ai.google.dev/api/live#HistoryConfig) the seeded history never triggers a model call and the conversation then starts through `realtimeInput`, so a context ending on a user question is seeded as the completed exchanges followed by that question as realtime text. Left inside the history it would be filed away unanswered. + + Also report when a user turn began on the final input transcript. Gemini withholds that transcript until its reply has finished generating, which had every reply landing ahead of the question it answered in the Cloud transcript. + +- Updated dependencies [[`5010952`](https://github.com/livekit/agents-js/commit/5010952de1bae7b66c72981966f79f450dc8fc8c), [`db3263b`](https://github.com/livekit/agents-js/commit/db3263b47e940760570548c8cae76f83bb1b621e), [`37eda82`](https://github.com/livekit/agents-js/commit/37eda821631e44e182dbc4331df68715d471c3f0), [`6b6ba2b`](https://github.com/livekit/agents-js/commit/6b6ba2b8a11bf96ab48950edbb633127620f7f5a), [`67620fb`](https://github.com/livekit/agents-js/commit/67620fb963310fb26cef0f2d862023c705fd93f0), [`fd46904`](https://github.com/livekit/agents-js/commit/fd46904eeb91817dce99680876c50162573028cb), [`d4edb58`](https://github.com/livekit/agents-js/commit/d4edb58c1f7dc1636f516ef7d379da3a473d97b4), [`2446c9e`](https://github.com/livekit/agents-js/commit/2446c9e2a38f4595dfb3c474be36294bb09cd3db), [`262a602`](https://github.com/livekit/agents-js/commit/262a602e2452e946ad3c79212ac7412de5cdb704), [`d5d8d04`](https://github.com/livekit/agents-js/commit/d5d8d0487d2e99f49a1b56ab6b9e82b481491955), [`0daf8d6`](https://github.com/livekit/agents-js/commit/0daf8d61d92bfba5267d76a3871e7634a9111648), [`9d38c3e`](https://github.com/livekit/agents-js/commit/9d38c3ed8e6add6c8cfabb7c17a178e882db79b1), [`238a58c`](https://github.com/livekit/agents-js/commit/238a58c6bedbcea041676c2dfd6e72be1e3ac912), [`f7e9c0c`](https://github.com/livekit/agents-js/commit/f7e9c0c5295381051a7a50401383d975b3ce22b8), [`16c30ca`](https://github.com/livekit/agents-js/commit/16c30caec4a1d5b61ba8358fa69f81dea84915c1)]: + - @livekit/agents@1.6.1 + ## 1.6.0 ### Patch Changes diff --git a/plugins/google/package.json b/plugins/google/package.json index 6128b445f..d9cb1ad9a 100644 --- a/plugins/google/package.json +++ b/plugins/google/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-google", - "version": "1.6.0", + "version": "1.6.1", "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 751547357..0e5099267 100644 --- a/plugins/hedra/CHANGELOG.md +++ b/plugins/hedra/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-hedra +## 1.6.1 + +### Patch Changes + +- Updated dependencies [[`5010952`](https://github.com/livekit/agents-js/commit/5010952de1bae7b66c72981966f79f450dc8fc8c), [`db3263b`](https://github.com/livekit/agents-js/commit/db3263b47e940760570548c8cae76f83bb1b621e), [`37eda82`](https://github.com/livekit/agents-js/commit/37eda821631e44e182dbc4331df68715d471c3f0), [`6b6ba2b`](https://github.com/livekit/agents-js/commit/6b6ba2b8a11bf96ab48950edbb633127620f7f5a), [`67620fb`](https://github.com/livekit/agents-js/commit/67620fb963310fb26cef0f2d862023c705fd93f0), [`fd46904`](https://github.com/livekit/agents-js/commit/fd46904eeb91817dce99680876c50162573028cb), [`d4edb58`](https://github.com/livekit/agents-js/commit/d4edb58c1f7dc1636f516ef7d379da3a473d97b4), [`2446c9e`](https://github.com/livekit/agents-js/commit/2446c9e2a38f4595dfb3c474be36294bb09cd3db), [`262a602`](https://github.com/livekit/agents-js/commit/262a602e2452e946ad3c79212ac7412de5cdb704), [`d5d8d04`](https://github.com/livekit/agents-js/commit/d5d8d0487d2e99f49a1b56ab6b9e82b481491955), [`0daf8d6`](https://github.com/livekit/agents-js/commit/0daf8d61d92bfba5267d76a3871e7634a9111648), [`9d38c3e`](https://github.com/livekit/agents-js/commit/9d38c3ed8e6add6c8cfabb7c17a178e882db79b1), [`238a58c`](https://github.com/livekit/agents-js/commit/238a58c6bedbcea041676c2dfd6e72be1e3ac912), [`f7e9c0c`](https://github.com/livekit/agents-js/commit/f7e9c0c5295381051a7a50401383d975b3ce22b8), [`16c30ca`](https://github.com/livekit/agents-js/commit/16c30caec4a1d5b61ba8358fa69f81dea84915c1)]: + - @livekit/agents@1.6.1 + ## 1.6.0 ### Patch Changes diff --git a/plugins/hedra/package.json b/plugins/hedra/package.json index 9b9a39cf0..2fd9da103 100644 --- a/plugins/hedra/package.json +++ b/plugins/hedra/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-hedra", - "version": "1.6.0", + "version": "1.6.1", "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 c82e8f1f9..c17cf879f 100644 --- a/plugins/hume/CHANGELOG.md +++ b/plugins/hume/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-hume +## 1.6.1 + +### Patch Changes + +- Updated dependencies [[`5010952`](https://github.com/livekit/agents-js/commit/5010952de1bae7b66c72981966f79f450dc8fc8c), [`db3263b`](https://github.com/livekit/agents-js/commit/db3263b47e940760570548c8cae76f83bb1b621e), [`37eda82`](https://github.com/livekit/agents-js/commit/37eda821631e44e182dbc4331df68715d471c3f0), [`6b6ba2b`](https://github.com/livekit/agents-js/commit/6b6ba2b8a11bf96ab48950edbb633127620f7f5a), [`67620fb`](https://github.com/livekit/agents-js/commit/67620fb963310fb26cef0f2d862023c705fd93f0), [`fd46904`](https://github.com/livekit/agents-js/commit/fd46904eeb91817dce99680876c50162573028cb), [`d4edb58`](https://github.com/livekit/agents-js/commit/d4edb58c1f7dc1636f516ef7d379da3a473d97b4), [`2446c9e`](https://github.com/livekit/agents-js/commit/2446c9e2a38f4595dfb3c474be36294bb09cd3db), [`262a602`](https://github.com/livekit/agents-js/commit/262a602e2452e946ad3c79212ac7412de5cdb704), [`d5d8d04`](https://github.com/livekit/agents-js/commit/d5d8d0487d2e99f49a1b56ab6b9e82b481491955), [`0daf8d6`](https://github.com/livekit/agents-js/commit/0daf8d61d92bfba5267d76a3871e7634a9111648), [`9d38c3e`](https://github.com/livekit/agents-js/commit/9d38c3ed8e6add6c8cfabb7c17a178e882db79b1), [`238a58c`](https://github.com/livekit/agents-js/commit/238a58c6bedbcea041676c2dfd6e72be1e3ac912), [`f7e9c0c`](https://github.com/livekit/agents-js/commit/f7e9c0c5295381051a7a50401383d975b3ce22b8), [`16c30ca`](https://github.com/livekit/agents-js/commit/16c30caec4a1d5b61ba8358fa69f81dea84915c1)]: + - @livekit/agents@1.6.1 + ## 1.6.0 ### Patch Changes diff --git a/plugins/hume/package.json b/plugins/hume/package.json index f16294fca..fe17c0fe9 100644 --- a/plugins/hume/package.json +++ b/plugins/hume/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-hume", - "version": "1.6.0", + "version": "1.6.1", "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 0cc3428da..5d4794587 100644 --- a/plugins/inworld/CHANGELOG.md +++ b/plugins/inworld/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-inworld +## 1.6.1 + +### Patch Changes + +- Updated dependencies [[`5010952`](https://github.com/livekit/agents-js/commit/5010952de1bae7b66c72981966f79f450dc8fc8c), [`db3263b`](https://github.com/livekit/agents-js/commit/db3263b47e940760570548c8cae76f83bb1b621e), [`37eda82`](https://github.com/livekit/agents-js/commit/37eda821631e44e182dbc4331df68715d471c3f0), [`6b6ba2b`](https://github.com/livekit/agents-js/commit/6b6ba2b8a11bf96ab48950edbb633127620f7f5a), [`67620fb`](https://github.com/livekit/agents-js/commit/67620fb963310fb26cef0f2d862023c705fd93f0), [`fd46904`](https://github.com/livekit/agents-js/commit/fd46904eeb91817dce99680876c50162573028cb), [`d4edb58`](https://github.com/livekit/agents-js/commit/d4edb58c1f7dc1636f516ef7d379da3a473d97b4), [`2446c9e`](https://github.com/livekit/agents-js/commit/2446c9e2a38f4595dfb3c474be36294bb09cd3db), [`262a602`](https://github.com/livekit/agents-js/commit/262a602e2452e946ad3c79212ac7412de5cdb704), [`d5d8d04`](https://github.com/livekit/agents-js/commit/d5d8d0487d2e99f49a1b56ab6b9e82b481491955), [`0daf8d6`](https://github.com/livekit/agents-js/commit/0daf8d61d92bfba5267d76a3871e7634a9111648), [`9d38c3e`](https://github.com/livekit/agents-js/commit/9d38c3ed8e6add6c8cfabb7c17a178e882db79b1), [`238a58c`](https://github.com/livekit/agents-js/commit/238a58c6bedbcea041676c2dfd6e72be1e3ac912), [`f7e9c0c`](https://github.com/livekit/agents-js/commit/f7e9c0c5295381051a7a50401383d975b3ce22b8), [`16c30ca`](https://github.com/livekit/agents-js/commit/16c30caec4a1d5b61ba8358fa69f81dea84915c1)]: + - @livekit/agents@1.6.1 + ## 1.6.0 ### Patch Changes diff --git a/plugins/inworld/package.json b/plugins/inworld/package.json index 5694fe69f..315ad2370 100644 --- a/plugins/inworld/package.json +++ b/plugins/inworld/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-inworld", - "version": "1.6.0", + "version": "1.6.1", "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 7025e648b..ba9a9320a 100644 --- a/plugins/krisp/CHANGELOG.md +++ b/plugins/krisp/CHANGELOG.md @@ -1,5 +1,24 @@ # @livekit/agents-plugin-krisp +## 1.6.1 + +### Patch Changes + +- Fix Krisp-processed audio being invisible to the rest of the pipeline - [#2130](https://github.com/livekit/agents-js/pull/2130) ([@toubatbrian](https://github.com/toubatbrian)) + + The LiveKit Cloud backend is reached through `createRequire`, which resolves the internal + package's `require` condition and so loads the CJS build of `@livekit/rtc-node` next to the + ESM one the framework uses. Frames returned by that backend were instances of the CJS copy's + `AudioFrame`, so every `instanceof AudioFrame` downstream failed. Adaptive interruption saw + zero audio and classified every barge-in as a backchannel, making it impossible to interrupt + an agent that had noise cancellation enabled. Frames are now adopted into the local binding + before leaving the filter, sharing their samples rather than copying them. + +- Set default noiseSuppressionLevel to 75 - [#2185](https://github.com/livekit/agents-js/pull/2185) ([@lukasIO](https://github.com/lukasIO)) + +- Updated dependencies [[`5010952`](https://github.com/livekit/agents-js/commit/5010952de1bae7b66c72981966f79f450dc8fc8c), [`db3263b`](https://github.com/livekit/agents-js/commit/db3263b47e940760570548c8cae76f83bb1b621e), [`37eda82`](https://github.com/livekit/agents-js/commit/37eda821631e44e182dbc4331df68715d471c3f0), [`6b6ba2b`](https://github.com/livekit/agents-js/commit/6b6ba2b8a11bf96ab48950edbb633127620f7f5a), [`67620fb`](https://github.com/livekit/agents-js/commit/67620fb963310fb26cef0f2d862023c705fd93f0), [`fd46904`](https://github.com/livekit/agents-js/commit/fd46904eeb91817dce99680876c50162573028cb), [`d4edb58`](https://github.com/livekit/agents-js/commit/d4edb58c1f7dc1636f516ef7d379da3a473d97b4), [`2446c9e`](https://github.com/livekit/agents-js/commit/2446c9e2a38f4595dfb3c474be36294bb09cd3db), [`262a602`](https://github.com/livekit/agents-js/commit/262a602e2452e946ad3c79212ac7412de5cdb704), [`d5d8d04`](https://github.com/livekit/agents-js/commit/d5d8d0487d2e99f49a1b56ab6b9e82b481491955), [`0daf8d6`](https://github.com/livekit/agents-js/commit/0daf8d61d92bfba5267d76a3871e7634a9111648), [`9d38c3e`](https://github.com/livekit/agents-js/commit/9d38c3ed8e6add6c8cfabb7c17a178e882db79b1), [`238a58c`](https://github.com/livekit/agents-js/commit/238a58c6bedbcea041676c2dfd6e72be1e3ac912), [`f7e9c0c`](https://github.com/livekit/agents-js/commit/f7e9c0c5295381051a7a50401383d975b3ce22b8), [`16c30ca`](https://github.com/livekit/agents-js/commit/16c30caec4a1d5b61ba8358fa69f81dea84915c1)]: + - @livekit/agents@1.6.1 + ## 1.6.0 ### Patch Changes diff --git a/plugins/krisp/package.json b/plugins/krisp/package.json index e6f0c94cd..6eda79751 100644 --- a/plugins/krisp/package.json +++ b/plugins/krisp/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-krisp", - "version": "1.6.0", + "version": "1.6.1", "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 6d0d1ac8e..edddfa88f 100644 --- a/plugins/lemonslice/CHANGELOG.md +++ b/plugins/lemonslice/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-lemonslice +## 1.6.1 + +### Patch Changes + +- Updated dependencies [[`5010952`](https://github.com/livekit/agents-js/commit/5010952de1bae7b66c72981966f79f450dc8fc8c), [`db3263b`](https://github.com/livekit/agents-js/commit/db3263b47e940760570548c8cae76f83bb1b621e), [`37eda82`](https://github.com/livekit/agents-js/commit/37eda821631e44e182dbc4331df68715d471c3f0), [`6b6ba2b`](https://github.com/livekit/agents-js/commit/6b6ba2b8a11bf96ab48950edbb633127620f7f5a), [`67620fb`](https://github.com/livekit/agents-js/commit/67620fb963310fb26cef0f2d862023c705fd93f0), [`fd46904`](https://github.com/livekit/agents-js/commit/fd46904eeb91817dce99680876c50162573028cb), [`d4edb58`](https://github.com/livekit/agents-js/commit/d4edb58c1f7dc1636f516ef7d379da3a473d97b4), [`2446c9e`](https://github.com/livekit/agents-js/commit/2446c9e2a38f4595dfb3c474be36294bb09cd3db), [`262a602`](https://github.com/livekit/agents-js/commit/262a602e2452e946ad3c79212ac7412de5cdb704), [`d5d8d04`](https://github.com/livekit/agents-js/commit/d5d8d0487d2e99f49a1b56ab6b9e82b481491955), [`0daf8d6`](https://github.com/livekit/agents-js/commit/0daf8d61d92bfba5267d76a3871e7634a9111648), [`9d38c3e`](https://github.com/livekit/agents-js/commit/9d38c3ed8e6add6c8cfabb7c17a178e882db79b1), [`238a58c`](https://github.com/livekit/agents-js/commit/238a58c6bedbcea041676c2dfd6e72be1e3ac912), [`f7e9c0c`](https://github.com/livekit/agents-js/commit/f7e9c0c5295381051a7a50401383d975b3ce22b8), [`16c30ca`](https://github.com/livekit/agents-js/commit/16c30caec4a1d5b61ba8358fa69f81dea84915c1)]: + - @livekit/agents@1.6.1 + ## 1.6.0 ### Patch Changes diff --git a/plugins/lemonslice/package.json b/plugins/lemonslice/package.json index 8784efb67..5aa54bdd0 100644 --- a/plugins/lemonslice/package.json +++ b/plugins/lemonslice/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-lemonslice", - "version": "1.6.0", + "version": "1.6.1", "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 8e39b75d8..9885ce39e 100644 --- a/plugins/liveavatar/CHANGELOG.md +++ b/plugins/liveavatar/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-liveavatar +## 1.6.1 + +### Patch Changes + +- Updated dependencies [[`5010952`](https://github.com/livekit/agents-js/commit/5010952de1bae7b66c72981966f79f450dc8fc8c), [`db3263b`](https://github.com/livekit/agents-js/commit/db3263b47e940760570548c8cae76f83bb1b621e), [`37eda82`](https://github.com/livekit/agents-js/commit/37eda821631e44e182dbc4331df68715d471c3f0), [`6b6ba2b`](https://github.com/livekit/agents-js/commit/6b6ba2b8a11bf96ab48950edbb633127620f7f5a), [`67620fb`](https://github.com/livekit/agents-js/commit/67620fb963310fb26cef0f2d862023c705fd93f0), [`fd46904`](https://github.com/livekit/agents-js/commit/fd46904eeb91817dce99680876c50162573028cb), [`d4edb58`](https://github.com/livekit/agents-js/commit/d4edb58c1f7dc1636f516ef7d379da3a473d97b4), [`2446c9e`](https://github.com/livekit/agents-js/commit/2446c9e2a38f4595dfb3c474be36294bb09cd3db), [`262a602`](https://github.com/livekit/agents-js/commit/262a602e2452e946ad3c79212ac7412de5cdb704), [`d5d8d04`](https://github.com/livekit/agents-js/commit/d5d8d0487d2e99f49a1b56ab6b9e82b481491955), [`0daf8d6`](https://github.com/livekit/agents-js/commit/0daf8d61d92bfba5267d76a3871e7634a9111648), [`9d38c3e`](https://github.com/livekit/agents-js/commit/9d38c3ed8e6add6c8cfabb7c17a178e882db79b1), [`238a58c`](https://github.com/livekit/agents-js/commit/238a58c6bedbcea041676c2dfd6e72be1e3ac912), [`f7e9c0c`](https://github.com/livekit/agents-js/commit/f7e9c0c5295381051a7a50401383d975b3ce22b8), [`16c30ca`](https://github.com/livekit/agents-js/commit/16c30caec4a1d5b61ba8358fa69f81dea84915c1)]: + - @livekit/agents@1.6.1 + ## 1.6.0 ### Patch Changes diff --git a/plugins/liveavatar/package.json b/plugins/liveavatar/package.json index 34b00ee81..e0289c5ed 100644 --- a/plugins/liveavatar/package.json +++ b/plugins/liveavatar/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-liveavatar", - "version": "1.6.0", + "version": "1.6.1", "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 4bf938b6f..7df3cb4d4 100644 --- a/plugins/livekit/CHANGELOG.md +++ b/plugins/livekit/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-livekit +## 1.6.1 + +### Patch Changes + +- Updated dependencies [[`5010952`](https://github.com/livekit/agents-js/commit/5010952de1bae7b66c72981966f79f450dc8fc8c), [`db3263b`](https://github.com/livekit/agents-js/commit/db3263b47e940760570548c8cae76f83bb1b621e), [`37eda82`](https://github.com/livekit/agents-js/commit/37eda821631e44e182dbc4331df68715d471c3f0), [`6b6ba2b`](https://github.com/livekit/agents-js/commit/6b6ba2b8a11bf96ab48950edbb633127620f7f5a), [`67620fb`](https://github.com/livekit/agents-js/commit/67620fb963310fb26cef0f2d862023c705fd93f0), [`fd46904`](https://github.com/livekit/agents-js/commit/fd46904eeb91817dce99680876c50162573028cb), [`d4edb58`](https://github.com/livekit/agents-js/commit/d4edb58c1f7dc1636f516ef7d379da3a473d97b4), [`2446c9e`](https://github.com/livekit/agents-js/commit/2446c9e2a38f4595dfb3c474be36294bb09cd3db), [`262a602`](https://github.com/livekit/agents-js/commit/262a602e2452e946ad3c79212ac7412de5cdb704), [`d5d8d04`](https://github.com/livekit/agents-js/commit/d5d8d0487d2e99f49a1b56ab6b9e82b481491955), [`0daf8d6`](https://github.com/livekit/agents-js/commit/0daf8d61d92bfba5267d76a3871e7634a9111648), [`9d38c3e`](https://github.com/livekit/agents-js/commit/9d38c3ed8e6add6c8cfabb7c17a178e882db79b1), [`238a58c`](https://github.com/livekit/agents-js/commit/238a58c6bedbcea041676c2dfd6e72be1e3ac912), [`f7e9c0c`](https://github.com/livekit/agents-js/commit/f7e9c0c5295381051a7a50401383d975b3ce22b8), [`16c30ca`](https://github.com/livekit/agents-js/commit/16c30caec4a1d5b61ba8358fa69f81dea84915c1)]: + - @livekit/agents@1.6.1 + ## 1.6.0 ### Patch Changes diff --git a/plugins/livekit/package.json b/plugins/livekit/package.json index 975ef4732..76170a5bf 100644 --- a/plugins/livekit/package.json +++ b/plugins/livekit/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-livekit", - "version": "1.6.0", + "version": "1.6.1", "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 e65451e3d..093f03dbc 100644 --- a/plugins/minimax/CHANGELOG.md +++ b/plugins/minimax/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-minimax +## 1.6.1 + +### Patch Changes + +- Updated dependencies [[`5010952`](https://github.com/livekit/agents-js/commit/5010952de1bae7b66c72981966f79f450dc8fc8c), [`db3263b`](https://github.com/livekit/agents-js/commit/db3263b47e940760570548c8cae76f83bb1b621e), [`37eda82`](https://github.com/livekit/agents-js/commit/37eda821631e44e182dbc4331df68715d471c3f0), [`6b6ba2b`](https://github.com/livekit/agents-js/commit/6b6ba2b8a11bf96ab48950edbb633127620f7f5a), [`67620fb`](https://github.com/livekit/agents-js/commit/67620fb963310fb26cef0f2d862023c705fd93f0), [`fd46904`](https://github.com/livekit/agents-js/commit/fd46904eeb91817dce99680876c50162573028cb), [`d4edb58`](https://github.com/livekit/agents-js/commit/d4edb58c1f7dc1636f516ef7d379da3a473d97b4), [`2446c9e`](https://github.com/livekit/agents-js/commit/2446c9e2a38f4595dfb3c474be36294bb09cd3db), [`262a602`](https://github.com/livekit/agents-js/commit/262a602e2452e946ad3c79212ac7412de5cdb704), [`d5d8d04`](https://github.com/livekit/agents-js/commit/d5d8d0487d2e99f49a1b56ab6b9e82b481491955), [`0daf8d6`](https://github.com/livekit/agents-js/commit/0daf8d61d92bfba5267d76a3871e7634a9111648), [`9d38c3e`](https://github.com/livekit/agents-js/commit/9d38c3ed8e6add6c8cfabb7c17a178e882db79b1), [`238a58c`](https://github.com/livekit/agents-js/commit/238a58c6bedbcea041676c2dfd6e72be1e3ac912), [`f7e9c0c`](https://github.com/livekit/agents-js/commit/f7e9c0c5295381051a7a50401383d975b3ce22b8), [`16c30ca`](https://github.com/livekit/agents-js/commit/16c30caec4a1d5b61ba8358fa69f81dea84915c1)]: + - @livekit/agents@1.6.1 + ## 1.6.0 ### Patch Changes diff --git a/plugins/minimax/package.json b/plugins/minimax/package.json index 9823bb71c..e33e7bcd8 100644 --- a/plugins/minimax/package.json +++ b/plugins/minimax/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-minimax", - "version": "1.6.0", + "version": "1.6.1", "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 8175dfc80..befbed565 100644 --- a/plugins/mistral/CHANGELOG.md +++ b/plugins/mistral/CHANGELOG.md @@ -1,5 +1,13 @@ # @livekit/agents-plugin-mistral +## 1.6.1 + +### Patch Changes + +- Updated dependencies [[`5010952`](https://github.com/livekit/agents-js/commit/5010952de1bae7b66c72981966f79f450dc8fc8c), [`db3263b`](https://github.com/livekit/agents-js/commit/db3263b47e940760570548c8cae76f83bb1b621e), [`37eda82`](https://github.com/livekit/agents-js/commit/37eda821631e44e182dbc4331df68715d471c3f0), [`6b6ba2b`](https://github.com/livekit/agents-js/commit/6b6ba2b8a11bf96ab48950edbb633127620f7f5a), [`67620fb`](https://github.com/livekit/agents-js/commit/67620fb963310fb26cef0f2d862023c705fd93f0), [`fd46904`](https://github.com/livekit/agents-js/commit/fd46904eeb91817dce99680876c50162573028cb), [`d4edb58`](https://github.com/livekit/agents-js/commit/d4edb58c1f7dc1636f516ef7d379da3a473d97b4), [`2446c9e`](https://github.com/livekit/agents-js/commit/2446c9e2a38f4595dfb3c474be36294bb09cd3db), [`262a602`](https://github.com/livekit/agents-js/commit/262a602e2452e946ad3c79212ac7412de5cdb704), [`d5d8d04`](https://github.com/livekit/agents-js/commit/d5d8d0487d2e99f49a1b56ab6b9e82b481491955), [`0daf8d6`](https://github.com/livekit/agents-js/commit/0daf8d61d92bfba5267d76a3871e7634a9111648), [`9d38c3e`](https://github.com/livekit/agents-js/commit/9d38c3ed8e6add6c8cfabb7c17a178e882db79b1), [`238a58c`](https://github.com/livekit/agents-js/commit/238a58c6bedbcea041676c2dfd6e72be1e3ac912), [`f7e9c0c`](https://github.com/livekit/agents-js/commit/f7e9c0c5295381051a7a50401383d975b3ce22b8), [`16c30ca`](https://github.com/livekit/agents-js/commit/16c30caec4a1d5b61ba8358fa69f81dea84915c1)]: + - @livekit/agents@1.6.1 + - @livekit/agents-plugin-mistralai@1.6.1 + ## 1.6.0 ### Patch Changes diff --git a/plugins/mistral/package.json b/plugins/mistral/package.json index d032f3262..cab96ab83 100644 --- a/plugins/mistral/package.json +++ b/plugins/mistral/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-mistral", - "version": "1.6.0", + "version": "1.6.1", "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 d3a7ff64c..ce8dc756b 100644 --- a/plugins/mistralai/CHANGELOG.md +++ b/plugins/mistralai/CHANGELOG.md @@ -1,5 +1,13 @@ # @livekit/agents-plugin-mistralai +## 1.6.1 + +### Patch Changes + +- Updated dependencies [[`5010952`](https://github.com/livekit/agents-js/commit/5010952de1bae7b66c72981966f79f450dc8fc8c), [`db3263b`](https://github.com/livekit/agents-js/commit/db3263b47e940760570548c8cae76f83bb1b621e), [`37eda82`](https://github.com/livekit/agents-js/commit/37eda821631e44e182dbc4331df68715d471c3f0), [`6b6ba2b`](https://github.com/livekit/agents-js/commit/6b6ba2b8a11bf96ab48950edbb633127620f7f5a), [`67620fb`](https://github.com/livekit/agents-js/commit/67620fb963310fb26cef0f2d862023c705fd93f0), [`fd46904`](https://github.com/livekit/agents-js/commit/fd46904eeb91817dce99680876c50162573028cb), [`d4edb58`](https://github.com/livekit/agents-js/commit/d4edb58c1f7dc1636f516ef7d379da3a473d97b4), [`2446c9e`](https://github.com/livekit/agents-js/commit/2446c9e2a38f4595dfb3c474be36294bb09cd3db), [`262a602`](https://github.com/livekit/agents-js/commit/262a602e2452e946ad3c79212ac7412de5cdb704), [`d5d8d04`](https://github.com/livekit/agents-js/commit/d5d8d0487d2e99f49a1b56ab6b9e82b481491955), [`0daf8d6`](https://github.com/livekit/agents-js/commit/0daf8d61d92bfba5267d76a3871e7634a9111648), [`9d38c3e`](https://github.com/livekit/agents-js/commit/9d38c3ed8e6add6c8cfabb7c17a178e882db79b1), [`238a58c`](https://github.com/livekit/agents-js/commit/238a58c6bedbcea041676c2dfd6e72be1e3ac912), [`f7e9c0c`](https://github.com/livekit/agents-js/commit/f7e9c0c5295381051a7a50401383d975b3ce22b8), [`16c30ca`](https://github.com/livekit/agents-js/commit/16c30caec4a1d5b61ba8358fa69f81dea84915c1)]: + - @livekit/agents@1.6.1 + - @livekit/agents-plugin-silero@1.6.1 + ## 1.6.0 ### Patch Changes diff --git a/plugins/mistralai/package.json b/plugins/mistralai/package.json index 72fa14ffe..e14454882 100644 --- a/plugins/mistralai/package.json +++ b/plugins/mistralai/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-mistralai", - "version": "1.6.0", + "version": "1.6.1", "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 24c712bce..f6a56b173 100644 --- a/plugins/neuphonic/CHANGELOG.md +++ b/plugins/neuphonic/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-neuphonic +## 1.6.1 + +### Patch Changes + +- Updated dependencies [[`5010952`](https://github.com/livekit/agents-js/commit/5010952de1bae7b66c72981966f79f450dc8fc8c), [`db3263b`](https://github.com/livekit/agents-js/commit/db3263b47e940760570548c8cae76f83bb1b621e), [`37eda82`](https://github.com/livekit/agents-js/commit/37eda821631e44e182dbc4331df68715d471c3f0), [`6b6ba2b`](https://github.com/livekit/agents-js/commit/6b6ba2b8a11bf96ab48950edbb633127620f7f5a), [`67620fb`](https://github.com/livekit/agents-js/commit/67620fb963310fb26cef0f2d862023c705fd93f0), [`fd46904`](https://github.com/livekit/agents-js/commit/fd46904eeb91817dce99680876c50162573028cb), [`d4edb58`](https://github.com/livekit/agents-js/commit/d4edb58c1f7dc1636f516ef7d379da3a473d97b4), [`2446c9e`](https://github.com/livekit/agents-js/commit/2446c9e2a38f4595dfb3c474be36294bb09cd3db), [`262a602`](https://github.com/livekit/agents-js/commit/262a602e2452e946ad3c79212ac7412de5cdb704), [`d5d8d04`](https://github.com/livekit/agents-js/commit/d5d8d0487d2e99f49a1b56ab6b9e82b481491955), [`0daf8d6`](https://github.com/livekit/agents-js/commit/0daf8d61d92bfba5267d76a3871e7634a9111648), [`9d38c3e`](https://github.com/livekit/agents-js/commit/9d38c3ed8e6add6c8cfabb7c17a178e882db79b1), [`238a58c`](https://github.com/livekit/agents-js/commit/238a58c6bedbcea041676c2dfd6e72be1e3ac912), [`f7e9c0c`](https://github.com/livekit/agents-js/commit/f7e9c0c5295381051a7a50401383d975b3ce22b8), [`16c30ca`](https://github.com/livekit/agents-js/commit/16c30caec4a1d5b61ba8358fa69f81dea84915c1)]: + - @livekit/agents@1.6.1 + ## 1.6.0 ### Patch Changes diff --git a/plugins/neuphonic/package.json b/plugins/neuphonic/package.json index def012a86..5c3cfc23e 100644 --- a/plugins/neuphonic/package.json +++ b/plugins/neuphonic/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-neuphonic", - "version": "1.6.0", + "version": "1.6.1", "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 453438128..19d937c31 100644 --- a/plugins/openai/CHANGELOG.md +++ b/plugins/openai/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-openai +## 1.6.1 + +### Patch Changes + +- Updated dependencies [[`5010952`](https://github.com/livekit/agents-js/commit/5010952de1bae7b66c72981966f79f450dc8fc8c), [`db3263b`](https://github.com/livekit/agents-js/commit/db3263b47e940760570548c8cae76f83bb1b621e), [`37eda82`](https://github.com/livekit/agents-js/commit/37eda821631e44e182dbc4331df68715d471c3f0), [`6b6ba2b`](https://github.com/livekit/agents-js/commit/6b6ba2b8a11bf96ab48950edbb633127620f7f5a), [`67620fb`](https://github.com/livekit/agents-js/commit/67620fb963310fb26cef0f2d862023c705fd93f0), [`fd46904`](https://github.com/livekit/agents-js/commit/fd46904eeb91817dce99680876c50162573028cb), [`d4edb58`](https://github.com/livekit/agents-js/commit/d4edb58c1f7dc1636f516ef7d379da3a473d97b4), [`2446c9e`](https://github.com/livekit/agents-js/commit/2446c9e2a38f4595dfb3c474be36294bb09cd3db), [`262a602`](https://github.com/livekit/agents-js/commit/262a602e2452e946ad3c79212ac7412de5cdb704), [`d5d8d04`](https://github.com/livekit/agents-js/commit/d5d8d0487d2e99f49a1b56ab6b9e82b481491955), [`0daf8d6`](https://github.com/livekit/agents-js/commit/0daf8d61d92bfba5267d76a3871e7634a9111648), [`9d38c3e`](https://github.com/livekit/agents-js/commit/9d38c3ed8e6add6c8cfabb7c17a178e882db79b1), [`238a58c`](https://github.com/livekit/agents-js/commit/238a58c6bedbcea041676c2dfd6e72be1e3ac912), [`f7e9c0c`](https://github.com/livekit/agents-js/commit/f7e9c0c5295381051a7a50401383d975b3ce22b8), [`16c30ca`](https://github.com/livekit/agents-js/commit/16c30caec4a1d5b61ba8358fa69f81dea84915c1)]: + - @livekit/agents@1.6.1 + ## 1.6.0 ### Patch Changes diff --git a/plugins/openai/package.json b/plugins/openai/package.json index 172738a10..e6bc26719 100644 --- a/plugins/openai/package.json +++ b/plugins/openai/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-openai", - "version": "1.6.0", + "version": "1.6.1", "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 b135839ec..2845bd7ae 100644 --- a/plugins/perplexity/CHANGELOG.md +++ b/plugins/perplexity/CHANGELOG.md @@ -1,5 +1,13 @@ # @livekit/agents-plugin-perplexity +## 1.6.1 + +### Patch Changes + +- Updated dependencies [[`5010952`](https://github.com/livekit/agents-js/commit/5010952de1bae7b66c72981966f79f450dc8fc8c), [`db3263b`](https://github.com/livekit/agents-js/commit/db3263b47e940760570548c8cae76f83bb1b621e), [`37eda82`](https://github.com/livekit/agents-js/commit/37eda821631e44e182dbc4331df68715d471c3f0), [`6b6ba2b`](https://github.com/livekit/agents-js/commit/6b6ba2b8a11bf96ab48950edbb633127620f7f5a), [`67620fb`](https://github.com/livekit/agents-js/commit/67620fb963310fb26cef0f2d862023c705fd93f0), [`fd46904`](https://github.com/livekit/agents-js/commit/fd46904eeb91817dce99680876c50162573028cb), [`d4edb58`](https://github.com/livekit/agents-js/commit/d4edb58c1f7dc1636f516ef7d379da3a473d97b4), [`2446c9e`](https://github.com/livekit/agents-js/commit/2446c9e2a38f4595dfb3c474be36294bb09cd3db), [`262a602`](https://github.com/livekit/agents-js/commit/262a602e2452e946ad3c79212ac7412de5cdb704), [`d5d8d04`](https://github.com/livekit/agents-js/commit/d5d8d0487d2e99f49a1b56ab6b9e82b481491955), [`0daf8d6`](https://github.com/livekit/agents-js/commit/0daf8d61d92bfba5267d76a3871e7634a9111648), [`9d38c3e`](https://github.com/livekit/agents-js/commit/9d38c3ed8e6add6c8cfabb7c17a178e882db79b1), [`238a58c`](https://github.com/livekit/agents-js/commit/238a58c6bedbcea041676c2dfd6e72be1e3ac912), [`f7e9c0c`](https://github.com/livekit/agents-js/commit/f7e9c0c5295381051a7a50401383d975b3ce22b8), [`16c30ca`](https://github.com/livekit/agents-js/commit/16c30caec4a1d5b61ba8358fa69f81dea84915c1)]: + - @livekit/agents@1.6.1 + - @livekit/agents-plugin-openai@1.6.1 + ## 1.6.0 ### Patch Changes diff --git a/plugins/perplexity/package.json b/plugins/perplexity/package.json index 6200eb727..23a06e38d 100644 --- a/plugins/perplexity/package.json +++ b/plugins/perplexity/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-perplexity", - "version": "1.6.0", + "version": "1.6.1", "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 910d6c341..04f23d9c0 100644 --- a/plugins/phonic/CHANGELOG.md +++ b/plugins/phonic/CHANGELOG.md @@ -1,5 +1,14 @@ # @livekit/agents-plugin-phonic +## 1.6.1 + +### Patch Changes + +- Add `configsForTools` to the Phonic realtime model — per-tool behavior overrides (`[{ name, ... }]`) forwarded to Phonic's tool config. Each entry may set `require_speech_before_tool_call`, `forbid_speech_after_tool_call`, and `forbid_tool_call_after_speech`; omitted fields fall back to the plugin defaults. The existing `forbidSpeechAfterToolCall: string[]` option is deprecated but still supported — it folds into `configsForTools` and logs a warning. See the README for details. - [#2183](https://github.com/livekit/agents-js/pull/2183) ([@arunwpm-work](https://github.com/arunwpm-work)) + +- Updated dependencies [[`5010952`](https://github.com/livekit/agents-js/commit/5010952de1bae7b66c72981966f79f450dc8fc8c), [`db3263b`](https://github.com/livekit/agents-js/commit/db3263b47e940760570548c8cae76f83bb1b621e), [`37eda82`](https://github.com/livekit/agents-js/commit/37eda821631e44e182dbc4331df68715d471c3f0), [`6b6ba2b`](https://github.com/livekit/agents-js/commit/6b6ba2b8a11bf96ab48950edbb633127620f7f5a), [`67620fb`](https://github.com/livekit/agents-js/commit/67620fb963310fb26cef0f2d862023c705fd93f0), [`fd46904`](https://github.com/livekit/agents-js/commit/fd46904eeb91817dce99680876c50162573028cb), [`d4edb58`](https://github.com/livekit/agents-js/commit/d4edb58c1f7dc1636f516ef7d379da3a473d97b4), [`2446c9e`](https://github.com/livekit/agents-js/commit/2446c9e2a38f4595dfb3c474be36294bb09cd3db), [`262a602`](https://github.com/livekit/agents-js/commit/262a602e2452e946ad3c79212ac7412de5cdb704), [`d5d8d04`](https://github.com/livekit/agents-js/commit/d5d8d0487d2e99f49a1b56ab6b9e82b481491955), [`0daf8d6`](https://github.com/livekit/agents-js/commit/0daf8d61d92bfba5267d76a3871e7634a9111648), [`9d38c3e`](https://github.com/livekit/agents-js/commit/9d38c3ed8e6add6c8cfabb7c17a178e882db79b1), [`238a58c`](https://github.com/livekit/agents-js/commit/238a58c6bedbcea041676c2dfd6e72be1e3ac912), [`f7e9c0c`](https://github.com/livekit/agents-js/commit/f7e9c0c5295381051a7a50401383d975b3ce22b8), [`16c30ca`](https://github.com/livekit/agents-js/commit/16c30caec4a1d5b61ba8358fa69f81dea84915c1)]: + - @livekit/agents@1.6.1 + ## 1.6.0 ### Patch Changes diff --git a/plugins/phonic/package.json b/plugins/phonic/package.json index ddce1f350..06ac5a7dc 100644 --- a/plugins/phonic/package.json +++ b/plugins/phonic/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-phonic", - "version": "1.6.0", + "version": "1.6.1", "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 49cfe92c6..0d4a24e3d 100644 --- a/plugins/protoface/CHANGELOG.md +++ b/plugins/protoface/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-protoface +## 1.6.1 + +### Patch Changes + +- Updated dependencies [[`5010952`](https://github.com/livekit/agents-js/commit/5010952de1bae7b66c72981966f79f450dc8fc8c), [`db3263b`](https://github.com/livekit/agents-js/commit/db3263b47e940760570548c8cae76f83bb1b621e), [`37eda82`](https://github.com/livekit/agents-js/commit/37eda821631e44e182dbc4331df68715d471c3f0), [`6b6ba2b`](https://github.com/livekit/agents-js/commit/6b6ba2b8a11bf96ab48950edbb633127620f7f5a), [`67620fb`](https://github.com/livekit/agents-js/commit/67620fb963310fb26cef0f2d862023c705fd93f0), [`fd46904`](https://github.com/livekit/agents-js/commit/fd46904eeb91817dce99680876c50162573028cb), [`d4edb58`](https://github.com/livekit/agents-js/commit/d4edb58c1f7dc1636f516ef7d379da3a473d97b4), [`2446c9e`](https://github.com/livekit/agents-js/commit/2446c9e2a38f4595dfb3c474be36294bb09cd3db), [`262a602`](https://github.com/livekit/agents-js/commit/262a602e2452e946ad3c79212ac7412de5cdb704), [`d5d8d04`](https://github.com/livekit/agents-js/commit/d5d8d0487d2e99f49a1b56ab6b9e82b481491955), [`0daf8d6`](https://github.com/livekit/agents-js/commit/0daf8d61d92bfba5267d76a3871e7634a9111648), [`9d38c3e`](https://github.com/livekit/agents-js/commit/9d38c3ed8e6add6c8cfabb7c17a178e882db79b1), [`238a58c`](https://github.com/livekit/agents-js/commit/238a58c6bedbcea041676c2dfd6e72be1e3ac912), [`f7e9c0c`](https://github.com/livekit/agents-js/commit/f7e9c0c5295381051a7a50401383d975b3ce22b8), [`16c30ca`](https://github.com/livekit/agents-js/commit/16c30caec4a1d5b61ba8358fa69f81dea84915c1)]: + - @livekit/agents@1.6.1 + ## 1.6.0 ### Patch Changes diff --git a/plugins/protoface/package.json b/plugins/protoface/package.json index c99415b2f..cd404f613 100644 --- a/plugins/protoface/package.json +++ b/plugins/protoface/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-protoface", - "version": "1.6.0", + "version": "1.6.1", "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 f21621336..ffdb4d9ba 100644 --- a/plugins/resemble/CHANGELOG.md +++ b/plugins/resemble/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-resemble +## 1.6.1 + +### Patch Changes + +- Updated dependencies [[`5010952`](https://github.com/livekit/agents-js/commit/5010952de1bae7b66c72981966f79f450dc8fc8c), [`db3263b`](https://github.com/livekit/agents-js/commit/db3263b47e940760570548c8cae76f83bb1b621e), [`37eda82`](https://github.com/livekit/agents-js/commit/37eda821631e44e182dbc4331df68715d471c3f0), [`6b6ba2b`](https://github.com/livekit/agents-js/commit/6b6ba2b8a11bf96ab48950edbb633127620f7f5a), [`67620fb`](https://github.com/livekit/agents-js/commit/67620fb963310fb26cef0f2d862023c705fd93f0), [`fd46904`](https://github.com/livekit/agents-js/commit/fd46904eeb91817dce99680876c50162573028cb), [`d4edb58`](https://github.com/livekit/agents-js/commit/d4edb58c1f7dc1636f516ef7d379da3a473d97b4), [`2446c9e`](https://github.com/livekit/agents-js/commit/2446c9e2a38f4595dfb3c474be36294bb09cd3db), [`262a602`](https://github.com/livekit/agents-js/commit/262a602e2452e946ad3c79212ac7412de5cdb704), [`d5d8d04`](https://github.com/livekit/agents-js/commit/d5d8d0487d2e99f49a1b56ab6b9e82b481491955), [`0daf8d6`](https://github.com/livekit/agents-js/commit/0daf8d61d92bfba5267d76a3871e7634a9111648), [`9d38c3e`](https://github.com/livekit/agents-js/commit/9d38c3ed8e6add6c8cfabb7c17a178e882db79b1), [`238a58c`](https://github.com/livekit/agents-js/commit/238a58c6bedbcea041676c2dfd6e72be1e3ac912), [`f7e9c0c`](https://github.com/livekit/agents-js/commit/f7e9c0c5295381051a7a50401383d975b3ce22b8), [`16c30ca`](https://github.com/livekit/agents-js/commit/16c30caec4a1d5b61ba8358fa69f81dea84915c1)]: + - @livekit/agents@1.6.1 + ## 1.6.0 ### Patch Changes diff --git a/plugins/resemble/package.json b/plugins/resemble/package.json index 9a1be6a78..c5dffb11e 100644 --- a/plugins/resemble/package.json +++ b/plugins/resemble/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-resemble", - "version": "1.6.0", + "version": "1.6.1", "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 29809a7e9..8d1497f9e 100644 --- a/plugins/rime/CHANGELOG.md +++ b/plugins/rime/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-rime +## 1.6.1 + +### Patch Changes + +- Updated dependencies [[`5010952`](https://github.com/livekit/agents-js/commit/5010952de1bae7b66c72981966f79f450dc8fc8c), [`db3263b`](https://github.com/livekit/agents-js/commit/db3263b47e940760570548c8cae76f83bb1b621e), [`37eda82`](https://github.com/livekit/agents-js/commit/37eda821631e44e182dbc4331df68715d471c3f0), [`6b6ba2b`](https://github.com/livekit/agents-js/commit/6b6ba2b8a11bf96ab48950edbb633127620f7f5a), [`67620fb`](https://github.com/livekit/agents-js/commit/67620fb963310fb26cef0f2d862023c705fd93f0), [`fd46904`](https://github.com/livekit/agents-js/commit/fd46904eeb91817dce99680876c50162573028cb), [`d4edb58`](https://github.com/livekit/agents-js/commit/d4edb58c1f7dc1636f516ef7d379da3a473d97b4), [`2446c9e`](https://github.com/livekit/agents-js/commit/2446c9e2a38f4595dfb3c474be36294bb09cd3db), [`262a602`](https://github.com/livekit/agents-js/commit/262a602e2452e946ad3c79212ac7412de5cdb704), [`d5d8d04`](https://github.com/livekit/agents-js/commit/d5d8d0487d2e99f49a1b56ab6b9e82b481491955), [`0daf8d6`](https://github.com/livekit/agents-js/commit/0daf8d61d92bfba5267d76a3871e7634a9111648), [`9d38c3e`](https://github.com/livekit/agents-js/commit/9d38c3ed8e6add6c8cfabb7c17a178e882db79b1), [`238a58c`](https://github.com/livekit/agents-js/commit/238a58c6bedbcea041676c2dfd6e72be1e3ac912), [`f7e9c0c`](https://github.com/livekit/agents-js/commit/f7e9c0c5295381051a7a50401383d975b3ce22b8), [`16c30ca`](https://github.com/livekit/agents-js/commit/16c30caec4a1d5b61ba8358fa69f81dea84915c1)]: + - @livekit/agents@1.6.1 + ## 1.6.0 ### Patch Changes diff --git a/plugins/rime/package.json b/plugins/rime/package.json index a71482032..d5c1b953e 100644 --- a/plugins/rime/package.json +++ b/plugins/rime/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-rime", - "version": "1.6.0", + "version": "1.6.1", "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 02c5fb122..608abedbb 100644 --- a/plugins/runway/CHANGELOG.md +++ b/plugins/runway/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-runway +## 1.6.1 + +### Patch Changes + +- Updated dependencies [[`5010952`](https://github.com/livekit/agents-js/commit/5010952de1bae7b66c72981966f79f450dc8fc8c), [`db3263b`](https://github.com/livekit/agents-js/commit/db3263b47e940760570548c8cae76f83bb1b621e), [`37eda82`](https://github.com/livekit/agents-js/commit/37eda821631e44e182dbc4331df68715d471c3f0), [`6b6ba2b`](https://github.com/livekit/agents-js/commit/6b6ba2b8a11bf96ab48950edbb633127620f7f5a), [`67620fb`](https://github.com/livekit/agents-js/commit/67620fb963310fb26cef0f2d862023c705fd93f0), [`fd46904`](https://github.com/livekit/agents-js/commit/fd46904eeb91817dce99680876c50162573028cb), [`d4edb58`](https://github.com/livekit/agents-js/commit/d4edb58c1f7dc1636f516ef7d379da3a473d97b4), [`2446c9e`](https://github.com/livekit/agents-js/commit/2446c9e2a38f4595dfb3c474be36294bb09cd3db), [`262a602`](https://github.com/livekit/agents-js/commit/262a602e2452e946ad3c79212ac7412de5cdb704), [`d5d8d04`](https://github.com/livekit/agents-js/commit/d5d8d0487d2e99f49a1b56ab6b9e82b481491955), [`0daf8d6`](https://github.com/livekit/agents-js/commit/0daf8d61d92bfba5267d76a3871e7634a9111648), [`9d38c3e`](https://github.com/livekit/agents-js/commit/9d38c3ed8e6add6c8cfabb7c17a178e882db79b1), [`238a58c`](https://github.com/livekit/agents-js/commit/238a58c6bedbcea041676c2dfd6e72be1e3ac912), [`f7e9c0c`](https://github.com/livekit/agents-js/commit/f7e9c0c5295381051a7a50401383d975b3ce22b8), [`16c30ca`](https://github.com/livekit/agents-js/commit/16c30caec4a1d5b61ba8358fa69f81dea84915c1)]: + - @livekit/agents@1.6.1 + ## 1.6.0 ### Patch Changes diff --git a/plugins/runway/package.json b/plugins/runway/package.json index 11bff9b64..c8ed88bf7 100644 --- a/plugins/runway/package.json +++ b/plugins/runway/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-runway", - "version": "1.6.0", + "version": "1.6.1", "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 f7db08a78..7892fd1f5 100644 --- a/plugins/sarvam/CHANGELOG.md +++ b/plugins/sarvam/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-sarvam +## 1.6.1 + +### Patch Changes + +- Updated dependencies [[`5010952`](https://github.com/livekit/agents-js/commit/5010952de1bae7b66c72981966f79f450dc8fc8c), [`db3263b`](https://github.com/livekit/agents-js/commit/db3263b47e940760570548c8cae76f83bb1b621e), [`37eda82`](https://github.com/livekit/agents-js/commit/37eda821631e44e182dbc4331df68715d471c3f0), [`6b6ba2b`](https://github.com/livekit/agents-js/commit/6b6ba2b8a11bf96ab48950edbb633127620f7f5a), [`67620fb`](https://github.com/livekit/agents-js/commit/67620fb963310fb26cef0f2d862023c705fd93f0), [`fd46904`](https://github.com/livekit/agents-js/commit/fd46904eeb91817dce99680876c50162573028cb), [`d4edb58`](https://github.com/livekit/agents-js/commit/d4edb58c1f7dc1636f516ef7d379da3a473d97b4), [`2446c9e`](https://github.com/livekit/agents-js/commit/2446c9e2a38f4595dfb3c474be36294bb09cd3db), [`262a602`](https://github.com/livekit/agents-js/commit/262a602e2452e946ad3c79212ac7412de5cdb704), [`d5d8d04`](https://github.com/livekit/agents-js/commit/d5d8d0487d2e99f49a1b56ab6b9e82b481491955), [`0daf8d6`](https://github.com/livekit/agents-js/commit/0daf8d61d92bfba5267d76a3871e7634a9111648), [`9d38c3e`](https://github.com/livekit/agents-js/commit/9d38c3ed8e6add6c8cfabb7c17a178e882db79b1), [`238a58c`](https://github.com/livekit/agents-js/commit/238a58c6bedbcea041676c2dfd6e72be1e3ac912), [`f7e9c0c`](https://github.com/livekit/agents-js/commit/f7e9c0c5295381051a7a50401383d975b3ce22b8), [`16c30ca`](https://github.com/livekit/agents-js/commit/16c30caec4a1d5b61ba8358fa69f81dea84915c1)]: + - @livekit/agents@1.6.1 + ## 1.6.0 ### Patch Changes diff --git a/plugins/sarvam/package.json b/plugins/sarvam/package.json index e2e1a80bb..e393b9267 100644 --- a/plugins/sarvam/package.json +++ b/plugins/sarvam/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-sarvam", - "version": "1.6.0", + "version": "1.6.1", "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 ad63eaec3..ec3845c3f 100644 --- a/plugins/silero/CHANGELOG.md +++ b/plugins/silero/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-silero +## 1.6.1 + +### Patch Changes + +- Updated dependencies [[`5010952`](https://github.com/livekit/agents-js/commit/5010952de1bae7b66c72981966f79f450dc8fc8c), [`db3263b`](https://github.com/livekit/agents-js/commit/db3263b47e940760570548c8cae76f83bb1b621e), [`37eda82`](https://github.com/livekit/agents-js/commit/37eda821631e44e182dbc4331df68715d471c3f0), [`6b6ba2b`](https://github.com/livekit/agents-js/commit/6b6ba2b8a11bf96ab48950edbb633127620f7f5a), [`67620fb`](https://github.com/livekit/agents-js/commit/67620fb963310fb26cef0f2d862023c705fd93f0), [`fd46904`](https://github.com/livekit/agents-js/commit/fd46904eeb91817dce99680876c50162573028cb), [`d4edb58`](https://github.com/livekit/agents-js/commit/d4edb58c1f7dc1636f516ef7d379da3a473d97b4), [`2446c9e`](https://github.com/livekit/agents-js/commit/2446c9e2a38f4595dfb3c474be36294bb09cd3db), [`262a602`](https://github.com/livekit/agents-js/commit/262a602e2452e946ad3c79212ac7412de5cdb704), [`d5d8d04`](https://github.com/livekit/agents-js/commit/d5d8d0487d2e99f49a1b56ab6b9e82b481491955), [`0daf8d6`](https://github.com/livekit/agents-js/commit/0daf8d61d92bfba5267d76a3871e7634a9111648), [`9d38c3e`](https://github.com/livekit/agents-js/commit/9d38c3ed8e6add6c8cfabb7c17a178e882db79b1), [`238a58c`](https://github.com/livekit/agents-js/commit/238a58c6bedbcea041676c2dfd6e72be1e3ac912), [`f7e9c0c`](https://github.com/livekit/agents-js/commit/f7e9c0c5295381051a7a50401383d975b3ce22b8), [`16c30ca`](https://github.com/livekit/agents-js/commit/16c30caec4a1d5b61ba8358fa69f81dea84915c1)]: + - @livekit/agents@1.6.1 + ## 1.6.0 ### Patch Changes diff --git a/plugins/silero/package.json b/plugins/silero/package.json index 024be6a77..305b06059 100644 --- a/plugins/silero/package.json +++ b/plugins/silero/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-silero", - "version": "1.6.0", + "version": "1.6.1", "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 8b7d47c2a..d04005f84 100644 --- a/plugins/soniox/CHANGELOG.md +++ b/plugins/soniox/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-soniox +## 1.6.1 + +### Patch Changes + +- Updated dependencies [[`5010952`](https://github.com/livekit/agents-js/commit/5010952de1bae7b66c72981966f79f450dc8fc8c), [`db3263b`](https://github.com/livekit/agents-js/commit/db3263b47e940760570548c8cae76f83bb1b621e), [`37eda82`](https://github.com/livekit/agents-js/commit/37eda821631e44e182dbc4331df68715d471c3f0), [`6b6ba2b`](https://github.com/livekit/agents-js/commit/6b6ba2b8a11bf96ab48950edbb633127620f7f5a), [`67620fb`](https://github.com/livekit/agents-js/commit/67620fb963310fb26cef0f2d862023c705fd93f0), [`fd46904`](https://github.com/livekit/agents-js/commit/fd46904eeb91817dce99680876c50162573028cb), [`d4edb58`](https://github.com/livekit/agents-js/commit/d4edb58c1f7dc1636f516ef7d379da3a473d97b4), [`2446c9e`](https://github.com/livekit/agents-js/commit/2446c9e2a38f4595dfb3c474be36294bb09cd3db), [`262a602`](https://github.com/livekit/agents-js/commit/262a602e2452e946ad3c79212ac7412de5cdb704), [`d5d8d04`](https://github.com/livekit/agents-js/commit/d5d8d0487d2e99f49a1b56ab6b9e82b481491955), [`0daf8d6`](https://github.com/livekit/agents-js/commit/0daf8d61d92bfba5267d76a3871e7634a9111648), [`9d38c3e`](https://github.com/livekit/agents-js/commit/9d38c3ed8e6add6c8cfabb7c17a178e882db79b1), [`238a58c`](https://github.com/livekit/agents-js/commit/238a58c6bedbcea041676c2dfd6e72be1e3ac912), [`f7e9c0c`](https://github.com/livekit/agents-js/commit/f7e9c0c5295381051a7a50401383d975b3ce22b8), [`16c30ca`](https://github.com/livekit/agents-js/commit/16c30caec4a1d5b61ba8358fa69f81dea84915c1)]: + - @livekit/agents@1.6.1 + ## 1.6.0 ### Patch Changes diff --git a/plugins/soniox/package.json b/plugins/soniox/package.json index 66b735dc6..d05e0b755 100644 --- a/plugins/soniox/package.json +++ b/plugins/soniox/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-soniox", - "version": "1.6.0", + "version": "1.6.1", "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 81125fbd3..4020c8ecd 100644 --- a/plugins/tavus/CHANGELOG.md +++ b/plugins/tavus/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-tavus +## 1.6.1 + +### Patch Changes + +- Updated dependencies [[`5010952`](https://github.com/livekit/agents-js/commit/5010952de1bae7b66c72981966f79f450dc8fc8c), [`db3263b`](https://github.com/livekit/agents-js/commit/db3263b47e940760570548c8cae76f83bb1b621e), [`37eda82`](https://github.com/livekit/agents-js/commit/37eda821631e44e182dbc4331df68715d471c3f0), [`6b6ba2b`](https://github.com/livekit/agents-js/commit/6b6ba2b8a11bf96ab48950edbb633127620f7f5a), [`67620fb`](https://github.com/livekit/agents-js/commit/67620fb963310fb26cef0f2d862023c705fd93f0), [`fd46904`](https://github.com/livekit/agents-js/commit/fd46904eeb91817dce99680876c50162573028cb), [`d4edb58`](https://github.com/livekit/agents-js/commit/d4edb58c1f7dc1636f516ef7d379da3a473d97b4), [`2446c9e`](https://github.com/livekit/agents-js/commit/2446c9e2a38f4595dfb3c474be36294bb09cd3db), [`262a602`](https://github.com/livekit/agents-js/commit/262a602e2452e946ad3c79212ac7412de5cdb704), [`d5d8d04`](https://github.com/livekit/agents-js/commit/d5d8d0487d2e99f49a1b56ab6b9e82b481491955), [`0daf8d6`](https://github.com/livekit/agents-js/commit/0daf8d61d92bfba5267d76a3871e7634a9111648), [`9d38c3e`](https://github.com/livekit/agents-js/commit/9d38c3ed8e6add6c8cfabb7c17a178e882db79b1), [`238a58c`](https://github.com/livekit/agents-js/commit/238a58c6bedbcea041676c2dfd6e72be1e3ac912), [`f7e9c0c`](https://github.com/livekit/agents-js/commit/f7e9c0c5295381051a7a50401383d975b3ce22b8), [`16c30ca`](https://github.com/livekit/agents-js/commit/16c30caec4a1d5b61ba8358fa69f81dea84915c1)]: + - @livekit/agents@1.6.1 + ## 1.6.0 ### Patch Changes diff --git a/plugins/tavus/package.json b/plugins/tavus/package.json index 0cc08e812..2aca4ef20 100644 --- a/plugins/tavus/package.json +++ b/plugins/tavus/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-tavus", - "version": "1.6.0", + "version": "1.6.1", "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 fca798663..8bb4b8ee0 100644 --- a/plugins/test/CHANGELOG.md +++ b/plugins/test/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugins-test +## 1.6.1 + +### Patch Changes + +- Updated dependencies [[`5010952`](https://github.com/livekit/agents-js/commit/5010952de1bae7b66c72981966f79f450dc8fc8c), [`db3263b`](https://github.com/livekit/agents-js/commit/db3263b47e940760570548c8cae76f83bb1b621e), [`37eda82`](https://github.com/livekit/agents-js/commit/37eda821631e44e182dbc4331df68715d471c3f0), [`6b6ba2b`](https://github.com/livekit/agents-js/commit/6b6ba2b8a11bf96ab48950edbb633127620f7f5a), [`67620fb`](https://github.com/livekit/agents-js/commit/67620fb963310fb26cef0f2d862023c705fd93f0), [`fd46904`](https://github.com/livekit/agents-js/commit/fd46904eeb91817dce99680876c50162573028cb), [`d4edb58`](https://github.com/livekit/agents-js/commit/d4edb58c1f7dc1636f516ef7d379da3a473d97b4), [`2446c9e`](https://github.com/livekit/agents-js/commit/2446c9e2a38f4595dfb3c474be36294bb09cd3db), [`262a602`](https://github.com/livekit/agents-js/commit/262a602e2452e946ad3c79212ac7412de5cdb704), [`d5d8d04`](https://github.com/livekit/agents-js/commit/d5d8d0487d2e99f49a1b56ab6b9e82b481491955), [`0daf8d6`](https://github.com/livekit/agents-js/commit/0daf8d61d92bfba5267d76a3871e7634a9111648), [`9d38c3e`](https://github.com/livekit/agents-js/commit/9d38c3ed8e6add6c8cfabb7c17a178e882db79b1), [`238a58c`](https://github.com/livekit/agents-js/commit/238a58c6bedbcea041676c2dfd6e72be1e3ac912), [`f7e9c0c`](https://github.com/livekit/agents-js/commit/f7e9c0c5295381051a7a50401383d975b3ce22b8), [`16c30ca`](https://github.com/livekit/agents-js/commit/16c30caec4a1d5b61ba8358fa69f81dea84915c1)]: + - @livekit/agents@1.6.1 + ## 1.6.0 ### Patch Changes diff --git a/plugins/test/package.json b/plugins/test/package.json index 89c227291..18d0afb50 100644 --- a/plugins/test/package.json +++ b/plugins/test/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugins-test", - "version": "1.6.0", + "version": "1.6.1", "description": "Testing suite for LiveKit Agents plugins", "author": "LiveKit", "type": "module", diff --git a/plugins/trugen/CHANGELOG.md b/plugins/trugen/CHANGELOG.md index eca9b8e1d..c0694d8f1 100644 --- a/plugins/trugen/CHANGELOG.md +++ b/plugins/trugen/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-trugen +## 1.6.1 + +### Patch Changes + +- Updated dependencies [[`5010952`](https://github.com/livekit/agents-js/commit/5010952de1bae7b66c72981966f79f450dc8fc8c), [`db3263b`](https://github.com/livekit/agents-js/commit/db3263b47e940760570548c8cae76f83bb1b621e), [`37eda82`](https://github.com/livekit/agents-js/commit/37eda821631e44e182dbc4331df68715d471c3f0), [`6b6ba2b`](https://github.com/livekit/agents-js/commit/6b6ba2b8a11bf96ab48950edbb633127620f7f5a), [`67620fb`](https://github.com/livekit/agents-js/commit/67620fb963310fb26cef0f2d862023c705fd93f0), [`fd46904`](https://github.com/livekit/agents-js/commit/fd46904eeb91817dce99680876c50162573028cb), [`d4edb58`](https://github.com/livekit/agents-js/commit/d4edb58c1f7dc1636f516ef7d379da3a473d97b4), [`2446c9e`](https://github.com/livekit/agents-js/commit/2446c9e2a38f4595dfb3c474be36294bb09cd3db), [`262a602`](https://github.com/livekit/agents-js/commit/262a602e2452e946ad3c79212ac7412de5cdb704), [`d5d8d04`](https://github.com/livekit/agents-js/commit/d5d8d0487d2e99f49a1b56ab6b9e82b481491955), [`0daf8d6`](https://github.com/livekit/agents-js/commit/0daf8d61d92bfba5267d76a3871e7634a9111648), [`9d38c3e`](https://github.com/livekit/agents-js/commit/9d38c3ed8e6add6c8cfabb7c17a178e882db79b1), [`238a58c`](https://github.com/livekit/agents-js/commit/238a58c6bedbcea041676c2dfd6e72be1e3ac912), [`f7e9c0c`](https://github.com/livekit/agents-js/commit/f7e9c0c5295381051a7a50401383d975b3ce22b8), [`16c30ca`](https://github.com/livekit/agents-js/commit/16c30caec4a1d5b61ba8358fa69f81dea84915c1)]: + - @livekit/agents@1.6.1 + ## 1.6.0 ### Patch Changes diff --git a/plugins/trugen/package.json b/plugins/trugen/package.json index 5fb879e9d..6ee695bff 100644 --- a/plugins/trugen/package.json +++ b/plugins/trugen/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-trugen", - "version": "1.6.0", + "version": "1.6.1", "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 fb5c13f3c..6f420d5de 100644 --- a/plugins/xai/CHANGELOG.md +++ b/plugins/xai/CHANGELOG.md @@ -1,5 +1,15 @@ # @livekit/agents-plugin-xai +## 1.6.1 + +### Patch Changes + +- Expose xAI STT VAD threshold, Smart Turn, Smart Turn timeout, and keyterm options. - [#2155](https://github.com/livekit/agents-js/pull/2155) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- Updated dependencies [[`5010952`](https://github.com/livekit/agents-js/commit/5010952de1bae7b66c72981966f79f450dc8fc8c), [`db3263b`](https://github.com/livekit/agents-js/commit/db3263b47e940760570548c8cae76f83bb1b621e), [`37eda82`](https://github.com/livekit/agents-js/commit/37eda821631e44e182dbc4331df68715d471c3f0), [`6b6ba2b`](https://github.com/livekit/agents-js/commit/6b6ba2b8a11bf96ab48950edbb633127620f7f5a), [`67620fb`](https://github.com/livekit/agents-js/commit/67620fb963310fb26cef0f2d862023c705fd93f0), [`fd46904`](https://github.com/livekit/agents-js/commit/fd46904eeb91817dce99680876c50162573028cb), [`d4edb58`](https://github.com/livekit/agents-js/commit/d4edb58c1f7dc1636f516ef7d379da3a473d97b4), [`2446c9e`](https://github.com/livekit/agents-js/commit/2446c9e2a38f4595dfb3c474be36294bb09cd3db), [`262a602`](https://github.com/livekit/agents-js/commit/262a602e2452e946ad3c79212ac7412de5cdb704), [`d5d8d04`](https://github.com/livekit/agents-js/commit/d5d8d0487d2e99f49a1b56ab6b9e82b481491955), [`0daf8d6`](https://github.com/livekit/agents-js/commit/0daf8d61d92bfba5267d76a3871e7634a9111648), [`9d38c3e`](https://github.com/livekit/agents-js/commit/9d38c3ed8e6add6c8cfabb7c17a178e882db79b1), [`238a58c`](https://github.com/livekit/agents-js/commit/238a58c6bedbcea041676c2dfd6e72be1e3ac912), [`f7e9c0c`](https://github.com/livekit/agents-js/commit/f7e9c0c5295381051a7a50401383d975b3ce22b8), [`16c30ca`](https://github.com/livekit/agents-js/commit/16c30caec4a1d5b61ba8358fa69f81dea84915c1)]: + - @livekit/agents@1.6.1 + - @livekit/agents-plugin-openai@1.6.1 + ## 1.6.0 ### Patch Changes diff --git a/plugins/xai/package.json b/plugins/xai/package.json index 700d19e76..7b35c9ccc 100644 --- a/plugins/xai/package.json +++ b/plugins/xai/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-xai", - "version": "1.6.0", + "version": "1.6.1", "description": "xAI plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs",