diff --git a/.changeset/agent-identity-resource-attrs.md b/.changeset/agent-identity-resource-attrs.md deleted file mode 100644 index ddb2abc4e3..0000000000 --- a/.changeset/agent-identity-resource-attrs.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': patch ---- - -Include agent identity in telemetry resource attributes: stamp `lk.agent_name` when the job carries an agent name, and honor `OTEL_RESOURCE_ATTRIBUTES` (via the standard env detector) so environment-provided resource attributes reach cloud tracing. diff --git a/.changeset/agent-simulation-support.md b/.changeset/agent-simulation-support.md deleted file mode 100644 index 267969c1e1..0000000000 --- a/.changeset/agent-simulation-support.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': patch ---- - -Add agent-simulation support: resolve the scenario dispatch from the job's `lk.simulator.dispatch` attribute into a `SimulationContext`, end the job when the simulator participant leaves, run the new `defineAgent` `onSimulationEnd` callback on `finalizeSimulation`, and disable STT/TTS/VAD and audio I/O under text simulations. diff --git a/.changeset/cartesia-persistent-tts-websocket.md b/.changeset/cartesia-persistent-tts-websocket.md deleted file mode 100644 index 34e60bf8cb..0000000000 --- a/.changeset/cartesia-persistent-tts-websocket.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents-plugin-cartesia': patch ---- - -Reuse a single Cartesia TTS WebSocket across generations instead of opening and closing one per synthesis. The plugin now holds a `ConnectionPool` on the `TTS` instance (matching the Python plugin and the fishaudio/inworld/xai plugins), so only the first turn pays the connect and later turns skip the TCP/TLS and WebSocket handshake. Adds `TTS.prewarm()` to open the socket before the first turn and a `TTS.close()` that drains the pool. diff --git a/.changeset/dependabot-security-updates.md b/.changeset/dependabot-security-updates.md deleted file mode 100644 index 2ff59a4d07..0000000000 --- a/.changeset/dependabot-security-updates.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@livekit/agents': minor ---- - -Require OpenTelemetry JS SDK 2.x and experimental packages 0.2xx. Migrate resources to -`resourceFromAttributes`, configure processors with `spanProcessors`, and pass -`registerSpanProcessor` when using a custom tracer provider. diff --git a/.changeset/expose-realtime-request-ids.md b/.changeset/expose-realtime-request-ids.md deleted file mode 100644 index 1b74e2532c..0000000000 --- a/.changeset/expose-realtime-request-ids.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': patch ---- - -Expose realtime provider response IDs on assistant message metrics as `providerRequestIds`. diff --git a/.changeset/fishaudio-generation-options.md b/.changeset/fishaudio-generation-options.md deleted file mode 100644 index b4b26a09dc..0000000000 --- a/.changeset/fishaudio-generation-options.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents-plugin-fishaudio': patch ---- - -Add Fish Audio TTS options for loudness normalization and generation tuning. diff --git a/.changeset/fix-recorder-capture-finish-race.md b/.changeset/fix-recorder-capture-finish-race.md deleted file mode 100644 index 0d7c1e5b60..0000000000 --- a/.changeset/fix-recorder-capture-finish-race.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -'@livekit/agents': patch ---- - -Fix a deadlock where a recorder-wrapped audio output could leave `waitForPlayout` stranded when -an interrupt arrived before the recorder had registered its segment. `RecorderAudioOutput` now -registers its own segment before forwarding a frame downstream, and attributes each playback -finish to the segment it belongs to instead of relying on a global counter. - -A recorded segment is also timestamped when it opens rather than when the wrapped output accepts -its first frame, so a finish that lands while that frame is parked no longer clamps the segment's -playback position to zero and drop the audio the sink reported as played. And a segment whose -downstream capture throws now releases the capture latch on both the recorder and the wrapped -output, so a caller that retries after a transient rejection is no longer rejected forever with -`recorder capture has no active segment`. - -A finish reported by the wrapped output settles its segment whether or not the recorder has been -flushed. The `AudioOutput` contract lets a sink report a finish as soon as its playout ends, and -`TranscriptionSynchronizer` does exactly that when it reconciles a dropped segment from -`waitForPlayout`, so requiring a flush first would strand the caller. - -`waitForPlayout` no longer depends on a flush either. A segment the wrapped output never counted -is settled once that output reports its own playout complete, since at that point no finish can -ever arrive for it. Waiting for a flush instead only worked because `performAudioForwarding` — the -one thing that captures frames — happens to flush in a `finally`; a caller that waited without -flushing hung forever. - -Behavior change: `waitForPlayout` now blocks while a frame is still in flight inside the wrapped -output. Previously it could return immediately with a fabricated -`{ playbackPosition: 0, interrupted: false }`, reporting a turn as completed while its audio had -not been handed to the sink yet. Callers that relied on the early return will now wait for the -real playback result. diff --git a/.changeset/fresh-fish-inference.md b/.changeset/fresh-fish-inference.md deleted file mode 100644 index e35d2ff809..0000000000 --- a/.changeset/fresh-fish-inference.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': patch ---- - -Add Fish Audio model and option types to inference TTS. diff --git a/.changeset/fuzzy-birds-barge.md b/.changeset/fuzzy-birds-barge.md deleted file mode 100644 index 92cafd1703..0000000000 --- a/.changeset/fuzzy-birds-barge.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': patch ---- - -Support adaptive interruption gating for realtime models without server-side turn detection. diff --git a/.changeset/gentle-trains-hide.md b/.changeset/gentle-trains-hide.md deleted file mode 100644 index 5766435b62..0000000000 --- a/.changeset/gentle-trains-hide.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@livekit/agents-plugin-krisp": patch ---- - -Add krisp viva plugin diff --git a/.changeset/inference-avatar-session.md b/.changeset/inference-avatar-session.md deleted file mode 100644 index 2fab2d1565..0000000000 --- a/.changeset/inference-avatar-session.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': patch ---- - -Add `inference.AvatarSession` for provisioning avatar sessions through the LiveKit Inference gateway. diff --git a/.changeset/new-xai-tts-voices.md b/.changeset/new-xai-tts-voices.md deleted file mode 100644 index 8f8ef4b4aa..0000000000 --- a/.changeset/new-xai-tts-voices.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@livekit/agents-plugin-xai': patch ---- - -Expand `GrokVoices` with the canonical lowercase xAI TTS voice list while preserving the existing -uppercase aliases. diff --git a/.changeset/required-judge-tool-choice.md b/.changeset/required-judge-tool-choice.md deleted file mode 100644 index f16afc13b3..0000000000 --- a/.changeset/required-judge-tool-choice.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': patch ---- - -Use required tool choice for message judge LLM calls. diff --git a/.changeset/safe-avatar-retries.md b/.changeset/safe-avatar-retries.md deleted file mode 100644 index bca8a553b3..0000000000 --- a/.changeset/safe-avatar-retries.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': patch ---- - -Allow failed inference avatar provisioning to be retried safely without duplicate provider sessions or cleanup callbacks, fall back to the connected room SID when dispatch metadata omits it, refresh gateway authentication across retries, and preserve the avatar audio output in RoomIO so synchronized transcription and avatar playback share the same output. diff --git a/.changeset/soft-realtime-turns.md b/.changeset/soft-realtime-turns.md deleted file mode 100644 index def92bb8c2..0000000000 --- a/.changeset/soft-realtime-turns.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@livekit/agents": patch -"@livekit/agents-plugin-openai": patch ---- - -Do not drop realtime replies when the pre-reply chat context update times out. diff --git a/.changeset/update-agent-on-enter.md b/.changeset/update-agent-on-enter.md deleted file mode 100644 index 30485380e8..0000000000 --- a/.changeset/update-agent-on-enter.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': patch ---- - -Fix updateAgent handoffs so run() captures onEnter output without waiting indefinitely on long-lived onEnter flows. diff --git a/agents/CHANGELOG.md b/agents/CHANGELOG.md index bbeb3379c5..946a4abf77 100644 --- a/agents/CHANGELOG.md +++ b/agents/CHANGELOG.md @@ -1,5 +1,64 @@ # @livekit/agents +## 1.6.0 + +### Minor Changes + +- Require OpenTelemetry JS SDK 2.x and experimental packages 0.2xx. Migrate resources to - [#2105](https://github.com/livekit/agents-js/pull/2105) ([@davidzhao](https://github.com/davidzhao)) + `resourceFromAttributes`, configure processors with `spanProcessors`, and pass + `registerSpanProcessor` when using a custom tracer provider. + +### Patch Changes + +- Include agent identity in telemetry resource attributes: stamp `lk.agent_name` when the job carries an agent name, and honor `OTEL_RESOURCE_ATTRIBUTES` (via the standard env detector) so environment-provided resource attributes reach cloud tracing. - [#2110](https://github.com/livekit/agents-js/pull/2110) ([@jmcclanahan](https://github.com/jmcclanahan)) + +- Add agent-simulation support: resolve the scenario dispatch from the job's `lk.simulator.dispatch` attribute into a `SimulationContext`, end the job when the simulator participant leaves, run the new `defineAgent` `onSimulationEnd` callback on `finalizeSimulation`, and disable STT/TTS/VAD and audio I/O under text simulations. - [#2075](https://github.com/livekit/agents-js/pull/2075) ([@u9g](https://github.com/u9g)) + +- Expose realtime provider response IDs on assistant message metrics as `providerRequestIds`. - [#2084](https://github.com/livekit/agents-js/pull/2084) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- Fix a deadlock where a recorder-wrapped audio output could leave `waitForPlayout` stranded when - [#2114](https://github.com/livekit/agents-js/pull/2114) ([@toubatbrian](https://github.com/toubatbrian)) + an interrupt arrived before the recorder had registered its segment. `RecorderAudioOutput` now + registers its own segment before forwarding a frame downstream, and attributes each playback + finish to the segment it belongs to instead of relying on a global counter. + + A recorded segment is also timestamped when it opens rather than when the wrapped output accepts + its first frame, so a finish that lands while that frame is parked no longer clamps the segment's + playback position to zero and drop the audio the sink reported as played. And a segment whose + downstream capture throws now releases the capture latch on both the recorder and the wrapped + output, so a caller that retries after a transient rejection is no longer rejected forever with + `recorder capture has no active segment`. + + A finish reported by the wrapped output settles its segment whether or not the recorder has been + flushed. The `AudioOutput` contract lets a sink report a finish as soon as its playout ends, and + `TranscriptionSynchronizer` does exactly that when it reconciles a dropped segment from + `waitForPlayout`, so requiring a flush first would strand the caller. + + `waitForPlayout` no longer depends on a flush either. A segment the wrapped output never counted + is settled once that output reports its own playout complete, since at that point no finish can + ever arrive for it. Waiting for a flush instead only worked because `performAudioForwarding` — the + one thing that captures frames — happens to flush in a `finally`; a caller that waited without + flushing hung forever. + + Behavior change: `waitForPlayout` now blocks while a frame is still in flight inside the wrapped + output. Previously it could return immediately with a fabricated + `{ playbackPosition: 0, interrupted: false }`, reporting a turn as completed while its audio had + not been handed to the sink yet. Callers that relied on the early return will now wait for the + real playback result. + +- Add Fish Audio model and option types to inference TTS. - [#2102](https://github.com/livekit/agents-js/pull/2102) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- Support adaptive interruption gating for realtime models without server-side turn detection. - [#2099](https://github.com/livekit/agents-js/pull/2099) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- Add `inference.AvatarSession` for provisioning avatar sessions through the LiveKit Inference gateway. - [#2101](https://github.com/livekit/agents-js/pull/2101) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- Use required tool choice for message judge LLM calls. - [#2128](https://github.com/livekit/agents-js/pull/2128) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- Allow failed inference avatar provisioning to be retried safely without duplicate provider sessions or cleanup callbacks, fall back to the connected room SID when dispatch metadata omits it, refresh gateway authentication across retries, and preserve the avatar audio output in RoomIO so synchronized transcription and avatar playback share the same output. - [#2103](https://github.com/livekit/agents-js/pull/2103) ([@toubatbrian](https://github.com/toubatbrian)) + +- Do not drop realtime replies when the pre-reply chat context update times out. - [#2083](https://github.com/livekit/agents-js/pull/2083) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- Fix updateAgent handoffs so run() captures onEnter output without waiting indefinitely on long-lived onEnter flows. - [#2098](https://github.com/livekit/agents-js/pull/2098) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + ## 1.5.5 ### Patch Changes diff --git a/agents/package.json b/agents/package.json index a346d4758b..e6902ab0d8 100644 --- a/agents/package.json +++ b/agents/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents", - "version": "1.5.5", + "version": "1.6.0", "description": "LiveKit Agents - Node.js", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/anam/CHANGELOG.md b/plugins/anam/CHANGELOG.md index f0d0a9a11a..8d7ead2678 100644 --- a/plugins/anam/CHANGELOG.md +++ b/plugins/anam/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-anam +## 1.6.0 + +### Patch Changes + +- Updated dependencies [[`83d75e3`](https://github.com/livekit/agents-js/commit/83d75e34d8837029afdbef12e0c4fda5b8b2c3a0), [`818db99`](https://github.com/livekit/agents-js/commit/818db99b394cecd50dc8cffd1dd25a899eff9eb9), [`c4705a7`](https://github.com/livekit/agents-js/commit/c4705a7579f40573a3460976616ba5b0a66e5108), [`54ee51c`](https://github.com/livekit/agents-js/commit/54ee51c99ba5d2c4a9ad9d6389fe34de2c47d92f), [`1be8bef`](https://github.com/livekit/agents-js/commit/1be8bef5f01874d4f880ab01ee21a1171477bb5e), [`a30c5c3`](https://github.com/livekit/agents-js/commit/a30c5c3f421566f4a784696ac5c682c9521033c8), [`7d5a572`](https://github.com/livekit/agents-js/commit/7d5a572393623b9bfd9e472069c6d69fdbf6a017), [`6eca049`](https://github.com/livekit/agents-js/commit/6eca0499fe637ae33078508ad9f0c03bccf1cddb), [`7b6c9f7`](https://github.com/livekit/agents-js/commit/7b6c9f7172097adae850fd436980e5aa6e41ec70), [`03f381c`](https://github.com/livekit/agents-js/commit/03f381c6e4f408ebdb696de3622c88a90b9b56d6), [`78af6b6`](https://github.com/livekit/agents-js/commit/78af6b647e012aa895b2b85bbf50e1703dd50832), [`38490e5`](https://github.com/livekit/agents-js/commit/38490e587edbd92241c2000275f5a0b02fd8f600)]: + - @livekit/agents@1.6.0 + ## 1.5.5 ### Patch Changes diff --git a/plugins/anam/package.json b/plugins/anam/package.json index c9045c5adf..ea6fc76cf2 100644 --- a/plugins/anam/package.json +++ b/plugins/anam/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-anam", - "version": "1.5.5", + "version": "1.6.0", "description": "Anam plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/anthropic/CHANGELOG.md b/plugins/anthropic/CHANGELOG.md index fb4daade68..826b229322 100644 --- a/plugins/anthropic/CHANGELOG.md +++ b/plugins/anthropic/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-anthropic +## 1.6.0 + +### Patch Changes + +- Updated dependencies [[`83d75e3`](https://github.com/livekit/agents-js/commit/83d75e34d8837029afdbef12e0c4fda5b8b2c3a0), [`818db99`](https://github.com/livekit/agents-js/commit/818db99b394cecd50dc8cffd1dd25a899eff9eb9), [`c4705a7`](https://github.com/livekit/agents-js/commit/c4705a7579f40573a3460976616ba5b0a66e5108), [`54ee51c`](https://github.com/livekit/agents-js/commit/54ee51c99ba5d2c4a9ad9d6389fe34de2c47d92f), [`1be8bef`](https://github.com/livekit/agents-js/commit/1be8bef5f01874d4f880ab01ee21a1171477bb5e), [`a30c5c3`](https://github.com/livekit/agents-js/commit/a30c5c3f421566f4a784696ac5c682c9521033c8), [`7d5a572`](https://github.com/livekit/agents-js/commit/7d5a572393623b9bfd9e472069c6d69fdbf6a017), [`6eca049`](https://github.com/livekit/agents-js/commit/6eca0499fe637ae33078508ad9f0c03bccf1cddb), [`7b6c9f7`](https://github.com/livekit/agents-js/commit/7b6c9f7172097adae850fd436980e5aa6e41ec70), [`03f381c`](https://github.com/livekit/agents-js/commit/03f381c6e4f408ebdb696de3622c88a90b9b56d6), [`78af6b6`](https://github.com/livekit/agents-js/commit/78af6b647e012aa895b2b85bbf50e1703dd50832), [`38490e5`](https://github.com/livekit/agents-js/commit/38490e587edbd92241c2000275f5a0b02fd8f600)]: + - @livekit/agents@1.6.0 + ## 1.5.5 ### Patch Changes diff --git a/plugins/anthropic/package.json b/plugins/anthropic/package.json index e48508542b..0d2ad1646f 100644 --- a/plugins/anthropic/package.json +++ b/plugins/anthropic/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-anthropic", - "version": "1.5.5", + "version": "1.6.0", "description": "Anthropic plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/assemblyai/CHANGELOG.md b/plugins/assemblyai/CHANGELOG.md index 48f66970b9..d0f7e0e168 100644 --- a/plugins/assemblyai/CHANGELOG.md +++ b/plugins/assemblyai/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-assemblyai +## 1.6.0 + +### Patch Changes + +- Updated dependencies [[`83d75e3`](https://github.com/livekit/agents-js/commit/83d75e34d8837029afdbef12e0c4fda5b8b2c3a0), [`818db99`](https://github.com/livekit/agents-js/commit/818db99b394cecd50dc8cffd1dd25a899eff9eb9), [`c4705a7`](https://github.com/livekit/agents-js/commit/c4705a7579f40573a3460976616ba5b0a66e5108), [`54ee51c`](https://github.com/livekit/agents-js/commit/54ee51c99ba5d2c4a9ad9d6389fe34de2c47d92f), [`1be8bef`](https://github.com/livekit/agents-js/commit/1be8bef5f01874d4f880ab01ee21a1171477bb5e), [`a30c5c3`](https://github.com/livekit/agents-js/commit/a30c5c3f421566f4a784696ac5c682c9521033c8), [`7d5a572`](https://github.com/livekit/agents-js/commit/7d5a572393623b9bfd9e472069c6d69fdbf6a017), [`6eca049`](https://github.com/livekit/agents-js/commit/6eca0499fe637ae33078508ad9f0c03bccf1cddb), [`7b6c9f7`](https://github.com/livekit/agents-js/commit/7b6c9f7172097adae850fd436980e5aa6e41ec70), [`03f381c`](https://github.com/livekit/agents-js/commit/03f381c6e4f408ebdb696de3622c88a90b9b56d6), [`78af6b6`](https://github.com/livekit/agents-js/commit/78af6b647e012aa895b2b85bbf50e1703dd50832), [`38490e5`](https://github.com/livekit/agents-js/commit/38490e587edbd92241c2000275f5a0b02fd8f600)]: + - @livekit/agents@1.6.0 + ## 1.5.5 ### Patch Changes diff --git a/plugins/assemblyai/package.json b/plugins/assemblyai/package.json index 62816371ee..93ea319c95 100644 --- a/plugins/assemblyai/package.json +++ b/plugins/assemblyai/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-assemblyai", - "version": "1.5.5", + "version": "1.6.0", "description": "AssemblyAI plugin for LiveKit Agents for Node.js", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/azure/CHANGELOG.md b/plugins/azure/CHANGELOG.md index e5d9b6060d..f20cd4fb10 100644 --- a/plugins/azure/CHANGELOG.md +++ b/plugins/azure/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-azure +## 1.6.0 + +### Patch Changes + +- Updated dependencies [[`83d75e3`](https://github.com/livekit/agents-js/commit/83d75e34d8837029afdbef12e0c4fda5b8b2c3a0), [`818db99`](https://github.com/livekit/agents-js/commit/818db99b394cecd50dc8cffd1dd25a899eff9eb9), [`c4705a7`](https://github.com/livekit/agents-js/commit/c4705a7579f40573a3460976616ba5b0a66e5108), [`54ee51c`](https://github.com/livekit/agents-js/commit/54ee51c99ba5d2c4a9ad9d6389fe34de2c47d92f), [`1be8bef`](https://github.com/livekit/agents-js/commit/1be8bef5f01874d4f880ab01ee21a1171477bb5e), [`a30c5c3`](https://github.com/livekit/agents-js/commit/a30c5c3f421566f4a784696ac5c682c9521033c8), [`7d5a572`](https://github.com/livekit/agents-js/commit/7d5a572393623b9bfd9e472069c6d69fdbf6a017), [`6eca049`](https://github.com/livekit/agents-js/commit/6eca0499fe637ae33078508ad9f0c03bccf1cddb), [`7b6c9f7`](https://github.com/livekit/agents-js/commit/7b6c9f7172097adae850fd436980e5aa6e41ec70), [`03f381c`](https://github.com/livekit/agents-js/commit/03f381c6e4f408ebdb696de3622c88a90b9b56d6), [`78af6b6`](https://github.com/livekit/agents-js/commit/78af6b647e012aa895b2b85bbf50e1703dd50832), [`38490e5`](https://github.com/livekit/agents-js/commit/38490e587edbd92241c2000275f5a0b02fd8f600)]: + - @livekit/agents@1.6.0 + ## 1.5.5 ### Patch Changes diff --git a/plugins/azure/package.json b/plugins/azure/package.json index f3bec46f81..1bad9a117c 100644 --- a/plugins/azure/package.json +++ b/plugins/azure/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-azure", - "version": "1.5.5", + "version": "1.6.0", "description": "Azure plugin for LiveKit Agents for Node.js", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/baseten/CHANGELOG.md b/plugins/baseten/CHANGELOG.md index c8c4f9d925..3f59bfacd6 100644 --- a/plugins/baseten/CHANGELOG.md +++ b/plugins/baseten/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-baseten +## 1.6.0 + +### Patch Changes + +- Updated dependencies [[`83d75e3`](https://github.com/livekit/agents-js/commit/83d75e34d8837029afdbef12e0c4fda5b8b2c3a0), [`818db99`](https://github.com/livekit/agents-js/commit/818db99b394cecd50dc8cffd1dd25a899eff9eb9), [`c4705a7`](https://github.com/livekit/agents-js/commit/c4705a7579f40573a3460976616ba5b0a66e5108), [`54ee51c`](https://github.com/livekit/agents-js/commit/54ee51c99ba5d2c4a9ad9d6389fe34de2c47d92f), [`1be8bef`](https://github.com/livekit/agents-js/commit/1be8bef5f01874d4f880ab01ee21a1171477bb5e), [`a30c5c3`](https://github.com/livekit/agents-js/commit/a30c5c3f421566f4a784696ac5c682c9521033c8), [`7d5a572`](https://github.com/livekit/agents-js/commit/7d5a572393623b9bfd9e472069c6d69fdbf6a017), [`6eca049`](https://github.com/livekit/agents-js/commit/6eca0499fe637ae33078508ad9f0c03bccf1cddb), [`7b6c9f7`](https://github.com/livekit/agents-js/commit/7b6c9f7172097adae850fd436980e5aa6e41ec70), [`03f381c`](https://github.com/livekit/agents-js/commit/03f381c6e4f408ebdb696de3622c88a90b9b56d6), [`78af6b6`](https://github.com/livekit/agents-js/commit/78af6b647e012aa895b2b85bbf50e1703dd50832), [`38490e5`](https://github.com/livekit/agents-js/commit/38490e587edbd92241c2000275f5a0b02fd8f600)]: + - @livekit/agents@1.6.0 + ## 1.5.5 ### Patch Changes diff --git a/plugins/baseten/package.json b/plugins/baseten/package.json index ebc81eec55..d7f48ac274 100644 --- a/plugins/baseten/package.json +++ b/plugins/baseten/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-baseten", - "version": "1.5.5", + "version": "1.6.0", "description": "Baseten plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/bey/CHANGELOG.md b/plugins/bey/CHANGELOG.md index 247e18d809..2d7d14641e 100644 --- a/plugins/bey/CHANGELOG.md +++ b/plugins/bey/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-bey +## 1.6.0 + +### Patch Changes + +- Updated dependencies [[`83d75e3`](https://github.com/livekit/agents-js/commit/83d75e34d8837029afdbef12e0c4fda5b8b2c3a0), [`818db99`](https://github.com/livekit/agents-js/commit/818db99b394cecd50dc8cffd1dd25a899eff9eb9), [`c4705a7`](https://github.com/livekit/agents-js/commit/c4705a7579f40573a3460976616ba5b0a66e5108), [`54ee51c`](https://github.com/livekit/agents-js/commit/54ee51c99ba5d2c4a9ad9d6389fe34de2c47d92f), [`1be8bef`](https://github.com/livekit/agents-js/commit/1be8bef5f01874d4f880ab01ee21a1171477bb5e), [`a30c5c3`](https://github.com/livekit/agents-js/commit/a30c5c3f421566f4a784696ac5c682c9521033c8), [`7d5a572`](https://github.com/livekit/agents-js/commit/7d5a572393623b9bfd9e472069c6d69fdbf6a017), [`6eca049`](https://github.com/livekit/agents-js/commit/6eca0499fe637ae33078508ad9f0c03bccf1cddb), [`7b6c9f7`](https://github.com/livekit/agents-js/commit/7b6c9f7172097adae850fd436980e5aa6e41ec70), [`03f381c`](https://github.com/livekit/agents-js/commit/03f381c6e4f408ebdb696de3622c88a90b9b56d6), [`78af6b6`](https://github.com/livekit/agents-js/commit/78af6b647e012aa895b2b85bbf50e1703dd50832), [`38490e5`](https://github.com/livekit/agents-js/commit/38490e587edbd92241c2000275f5a0b02fd8f600)]: + - @livekit/agents@1.6.0 + ## 1.5.5 ### Patch Changes diff --git a/plugins/bey/package.json b/plugins/bey/package.json index 42c0fe3b86..c252bae171 100644 --- a/plugins/bey/package.json +++ b/plugins/bey/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-bey", - "version": "1.5.5", + "version": "1.6.0", "description": "Beyond Presence plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/cartesia/CHANGELOG.md b/plugins/cartesia/CHANGELOG.md index e168caaa1f..9a6fb94dd5 100644 --- a/plugins/cartesia/CHANGELOG.md +++ b/plugins/cartesia/CHANGELOG.md @@ -1,5 +1,14 @@ # @livekit/agents-plugin-cartesia +## 1.6.0 + +### Patch Changes + +- Reuse a single Cartesia TTS WebSocket across generations instead of opening and closing one per synthesis. The plugin now holds a `ConnectionPool` on the `TTS` instance (matching the Python plugin and the fishaudio/inworld/xai plugins), so only the first turn pays the connect and later turns skip the TCP/TLS and WebSocket handshake. Adds `TTS.prewarm()` to open the socket before the first turn and a `TTS.close()` that drains the pool. - [#2085](https://github.com/livekit/agents-js/pull/2085) ([@sunnyysetia](https://github.com/sunnyysetia)) + +- Updated dependencies [[`83d75e3`](https://github.com/livekit/agents-js/commit/83d75e34d8837029afdbef12e0c4fda5b8b2c3a0), [`818db99`](https://github.com/livekit/agents-js/commit/818db99b394cecd50dc8cffd1dd25a899eff9eb9), [`c4705a7`](https://github.com/livekit/agents-js/commit/c4705a7579f40573a3460976616ba5b0a66e5108), [`54ee51c`](https://github.com/livekit/agents-js/commit/54ee51c99ba5d2c4a9ad9d6389fe34de2c47d92f), [`1be8bef`](https://github.com/livekit/agents-js/commit/1be8bef5f01874d4f880ab01ee21a1171477bb5e), [`a30c5c3`](https://github.com/livekit/agents-js/commit/a30c5c3f421566f4a784696ac5c682c9521033c8), [`7d5a572`](https://github.com/livekit/agents-js/commit/7d5a572393623b9bfd9e472069c6d69fdbf6a017), [`6eca049`](https://github.com/livekit/agents-js/commit/6eca0499fe637ae33078508ad9f0c03bccf1cddb), [`7b6c9f7`](https://github.com/livekit/agents-js/commit/7b6c9f7172097adae850fd436980e5aa6e41ec70), [`03f381c`](https://github.com/livekit/agents-js/commit/03f381c6e4f408ebdb696de3622c88a90b9b56d6), [`78af6b6`](https://github.com/livekit/agents-js/commit/78af6b647e012aa895b2b85bbf50e1703dd50832), [`38490e5`](https://github.com/livekit/agents-js/commit/38490e587edbd92241c2000275f5a0b02fd8f600)]: + - @livekit/agents@1.6.0 + ## 1.5.5 ### Patch Changes diff --git a/plugins/cartesia/package.json b/plugins/cartesia/package.json index d9367f302d..6b0fc09e3a 100644 --- a/plugins/cartesia/package.json +++ b/plugins/cartesia/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-cartesia", - "version": "1.5.5", + "version": "1.6.0", "description": "Cartesia plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/cerebras/CHANGELOG.md b/plugins/cerebras/CHANGELOG.md index 8cfb7a4ac1..f136c48584 100644 --- a/plugins/cerebras/CHANGELOG.md +++ b/plugins/cerebras/CHANGELOG.md @@ -1,5 +1,13 @@ # @livekit/agents-plugin-cerebras +## 1.6.0 + +### Patch Changes + +- Updated dependencies [[`83d75e3`](https://github.com/livekit/agents-js/commit/83d75e34d8837029afdbef12e0c4fda5b8b2c3a0), [`818db99`](https://github.com/livekit/agents-js/commit/818db99b394cecd50dc8cffd1dd25a899eff9eb9), [`c4705a7`](https://github.com/livekit/agents-js/commit/c4705a7579f40573a3460976616ba5b0a66e5108), [`54ee51c`](https://github.com/livekit/agents-js/commit/54ee51c99ba5d2c4a9ad9d6389fe34de2c47d92f), [`1be8bef`](https://github.com/livekit/agents-js/commit/1be8bef5f01874d4f880ab01ee21a1171477bb5e), [`a30c5c3`](https://github.com/livekit/agents-js/commit/a30c5c3f421566f4a784696ac5c682c9521033c8), [`7d5a572`](https://github.com/livekit/agents-js/commit/7d5a572393623b9bfd9e472069c6d69fdbf6a017), [`6eca049`](https://github.com/livekit/agents-js/commit/6eca0499fe637ae33078508ad9f0c03bccf1cddb), [`7b6c9f7`](https://github.com/livekit/agents-js/commit/7b6c9f7172097adae850fd436980e5aa6e41ec70), [`03f381c`](https://github.com/livekit/agents-js/commit/03f381c6e4f408ebdb696de3622c88a90b9b56d6), [`78af6b6`](https://github.com/livekit/agents-js/commit/78af6b647e012aa895b2b85bbf50e1703dd50832), [`38490e5`](https://github.com/livekit/agents-js/commit/38490e587edbd92241c2000275f5a0b02fd8f600)]: + - @livekit/agents@1.6.0 + - @livekit/agents-plugin-openai@1.6.0 + ## 1.5.5 ### Patch Changes diff --git a/plugins/cerebras/package.json b/plugins/cerebras/package.json index 257b0c41fa..d001dcf659 100644 --- a/plugins/cerebras/package.json +++ b/plugins/cerebras/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-cerebras", - "version": "1.5.5", + "version": "1.6.0", "description": "Cerebras plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/deepgram/CHANGELOG.md b/plugins/deepgram/CHANGELOG.md index 72bcb99da4..08abae7d45 100644 --- a/plugins/deepgram/CHANGELOG.md +++ b/plugins/deepgram/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-deepgram +## 1.6.0 + +### Patch Changes + +- Updated dependencies [[`83d75e3`](https://github.com/livekit/agents-js/commit/83d75e34d8837029afdbef12e0c4fda5b8b2c3a0), [`818db99`](https://github.com/livekit/agents-js/commit/818db99b394cecd50dc8cffd1dd25a899eff9eb9), [`c4705a7`](https://github.com/livekit/agents-js/commit/c4705a7579f40573a3460976616ba5b0a66e5108), [`54ee51c`](https://github.com/livekit/agents-js/commit/54ee51c99ba5d2c4a9ad9d6389fe34de2c47d92f), [`1be8bef`](https://github.com/livekit/agents-js/commit/1be8bef5f01874d4f880ab01ee21a1171477bb5e), [`a30c5c3`](https://github.com/livekit/agents-js/commit/a30c5c3f421566f4a784696ac5c682c9521033c8), [`7d5a572`](https://github.com/livekit/agents-js/commit/7d5a572393623b9bfd9e472069c6d69fdbf6a017), [`6eca049`](https://github.com/livekit/agents-js/commit/6eca0499fe637ae33078508ad9f0c03bccf1cddb), [`7b6c9f7`](https://github.com/livekit/agents-js/commit/7b6c9f7172097adae850fd436980e5aa6e41ec70), [`03f381c`](https://github.com/livekit/agents-js/commit/03f381c6e4f408ebdb696de3622c88a90b9b56d6), [`78af6b6`](https://github.com/livekit/agents-js/commit/78af6b647e012aa895b2b85bbf50e1703dd50832), [`38490e5`](https://github.com/livekit/agents-js/commit/38490e587edbd92241c2000275f5a0b02fd8f600)]: + - @livekit/agents@1.6.0 + ## 1.5.5 ### Patch Changes diff --git a/plugins/deepgram/package.json b/plugins/deepgram/package.json index f5f19e5585..ce1b01b085 100644 --- a/plugins/deepgram/package.json +++ b/plugins/deepgram/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-deepgram", - "version": "1.5.5", + "version": "1.6.0", "description": "Deepgram plugin for LiveKit Agents for Node.js", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/did/CHANGELOG.md b/plugins/did/CHANGELOG.md index b49ae69bbe..fa78a0e930 100644 --- a/plugins/did/CHANGELOG.md +++ b/plugins/did/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-did +## 1.6.0 + +### Patch Changes + +- Updated dependencies [[`83d75e3`](https://github.com/livekit/agents-js/commit/83d75e34d8837029afdbef12e0c4fda5b8b2c3a0), [`818db99`](https://github.com/livekit/agents-js/commit/818db99b394cecd50dc8cffd1dd25a899eff9eb9), [`c4705a7`](https://github.com/livekit/agents-js/commit/c4705a7579f40573a3460976616ba5b0a66e5108), [`54ee51c`](https://github.com/livekit/agents-js/commit/54ee51c99ba5d2c4a9ad9d6389fe34de2c47d92f), [`1be8bef`](https://github.com/livekit/agents-js/commit/1be8bef5f01874d4f880ab01ee21a1171477bb5e), [`a30c5c3`](https://github.com/livekit/agents-js/commit/a30c5c3f421566f4a784696ac5c682c9521033c8), [`7d5a572`](https://github.com/livekit/agents-js/commit/7d5a572393623b9bfd9e472069c6d69fdbf6a017), [`6eca049`](https://github.com/livekit/agents-js/commit/6eca0499fe637ae33078508ad9f0c03bccf1cddb), [`7b6c9f7`](https://github.com/livekit/agents-js/commit/7b6c9f7172097adae850fd436980e5aa6e41ec70), [`03f381c`](https://github.com/livekit/agents-js/commit/03f381c6e4f408ebdb696de3622c88a90b9b56d6), [`78af6b6`](https://github.com/livekit/agents-js/commit/78af6b647e012aa895b2b85bbf50e1703dd50832), [`38490e5`](https://github.com/livekit/agents-js/commit/38490e587edbd92241c2000275f5a0b02fd8f600)]: + - @livekit/agents@1.6.0 + ## 1.5.5 ### Patch Changes diff --git a/plugins/did/package.json b/plugins/did/package.json index c8b19bbd95..7a61593042 100644 --- a/plugins/did/package.json +++ b/plugins/did/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-did", - "version": "1.5.5", + "version": "1.6.0", "description": "D-ID avatar plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/elevenlabs/CHANGELOG.md b/plugins/elevenlabs/CHANGELOG.md index 15512dd7b1..b87f544121 100644 --- a/plugins/elevenlabs/CHANGELOG.md +++ b/plugins/elevenlabs/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-elevenlabs +## 1.6.0 + +### Patch Changes + +- Updated dependencies [[`83d75e3`](https://github.com/livekit/agents-js/commit/83d75e34d8837029afdbef12e0c4fda5b8b2c3a0), [`818db99`](https://github.com/livekit/agents-js/commit/818db99b394cecd50dc8cffd1dd25a899eff9eb9), [`c4705a7`](https://github.com/livekit/agents-js/commit/c4705a7579f40573a3460976616ba5b0a66e5108), [`54ee51c`](https://github.com/livekit/agents-js/commit/54ee51c99ba5d2c4a9ad9d6389fe34de2c47d92f), [`1be8bef`](https://github.com/livekit/agents-js/commit/1be8bef5f01874d4f880ab01ee21a1171477bb5e), [`a30c5c3`](https://github.com/livekit/agents-js/commit/a30c5c3f421566f4a784696ac5c682c9521033c8), [`7d5a572`](https://github.com/livekit/agents-js/commit/7d5a572393623b9bfd9e472069c6d69fdbf6a017), [`6eca049`](https://github.com/livekit/agents-js/commit/6eca0499fe637ae33078508ad9f0c03bccf1cddb), [`7b6c9f7`](https://github.com/livekit/agents-js/commit/7b6c9f7172097adae850fd436980e5aa6e41ec70), [`03f381c`](https://github.com/livekit/agents-js/commit/03f381c6e4f408ebdb696de3622c88a90b9b56d6), [`78af6b6`](https://github.com/livekit/agents-js/commit/78af6b647e012aa895b2b85bbf50e1703dd50832), [`38490e5`](https://github.com/livekit/agents-js/commit/38490e587edbd92241c2000275f5a0b02fd8f600)]: + - @livekit/agents@1.6.0 + ## 1.5.5 ### Patch Changes diff --git a/plugins/elevenlabs/package.json b/plugins/elevenlabs/package.json index fb59fa39ec..2aef98ae11 100644 --- a/plugins/elevenlabs/package.json +++ b/plugins/elevenlabs/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-elevenlabs", - "version": "1.5.5", + "version": "1.6.0", "description": "ElevenLabs plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/fishaudio/CHANGELOG.md b/plugins/fishaudio/CHANGELOG.md index 35469942ce..e293c1a0ce 100644 --- a/plugins/fishaudio/CHANGELOG.md +++ b/plugins/fishaudio/CHANGELOG.md @@ -1,5 +1,14 @@ # @livekit/agents-plugin-fishaudio +## 1.6.0 + +### Patch Changes + +- Add Fish Audio TTS options for loudness normalization and generation tuning. - [#2094](https://github.com/livekit/agents-js/pull/2094) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- Updated dependencies [[`83d75e3`](https://github.com/livekit/agents-js/commit/83d75e34d8837029afdbef12e0c4fda5b8b2c3a0), [`818db99`](https://github.com/livekit/agents-js/commit/818db99b394cecd50dc8cffd1dd25a899eff9eb9), [`c4705a7`](https://github.com/livekit/agents-js/commit/c4705a7579f40573a3460976616ba5b0a66e5108), [`54ee51c`](https://github.com/livekit/agents-js/commit/54ee51c99ba5d2c4a9ad9d6389fe34de2c47d92f), [`1be8bef`](https://github.com/livekit/agents-js/commit/1be8bef5f01874d4f880ab01ee21a1171477bb5e), [`a30c5c3`](https://github.com/livekit/agents-js/commit/a30c5c3f421566f4a784696ac5c682c9521033c8), [`7d5a572`](https://github.com/livekit/agents-js/commit/7d5a572393623b9bfd9e472069c6d69fdbf6a017), [`6eca049`](https://github.com/livekit/agents-js/commit/6eca0499fe637ae33078508ad9f0c03bccf1cddb), [`7b6c9f7`](https://github.com/livekit/agents-js/commit/7b6c9f7172097adae850fd436980e5aa6e41ec70), [`03f381c`](https://github.com/livekit/agents-js/commit/03f381c6e4f408ebdb696de3622c88a90b9b56d6), [`78af6b6`](https://github.com/livekit/agents-js/commit/78af6b647e012aa895b2b85bbf50e1703dd50832), [`38490e5`](https://github.com/livekit/agents-js/commit/38490e587edbd92241c2000275f5a0b02fd8f600)]: + - @livekit/agents@1.6.0 + ## 1.5.5 ### Patch Changes diff --git a/plugins/fishaudio/package.json b/plugins/fishaudio/package.json index 2d9e58a36a..2a77d94206 100644 --- a/plugins/fishaudio/package.json +++ b/plugins/fishaudio/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-fishaudio", - "version": "1.5.5", + "version": "1.6.0", "description": "Fish Audio plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/google/CHANGELOG.md b/plugins/google/CHANGELOG.md index 6a8fb9ebb3..c968721c7d 100644 --- a/plugins/google/CHANGELOG.md +++ b/plugins/google/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-google +## 1.6.0 + +### Patch Changes + +- Updated dependencies [[`83d75e3`](https://github.com/livekit/agents-js/commit/83d75e34d8837029afdbef12e0c4fda5b8b2c3a0), [`818db99`](https://github.com/livekit/agents-js/commit/818db99b394cecd50dc8cffd1dd25a899eff9eb9), [`c4705a7`](https://github.com/livekit/agents-js/commit/c4705a7579f40573a3460976616ba5b0a66e5108), [`54ee51c`](https://github.com/livekit/agents-js/commit/54ee51c99ba5d2c4a9ad9d6389fe34de2c47d92f), [`1be8bef`](https://github.com/livekit/agents-js/commit/1be8bef5f01874d4f880ab01ee21a1171477bb5e), [`a30c5c3`](https://github.com/livekit/agents-js/commit/a30c5c3f421566f4a784696ac5c682c9521033c8), [`7d5a572`](https://github.com/livekit/agents-js/commit/7d5a572393623b9bfd9e472069c6d69fdbf6a017), [`6eca049`](https://github.com/livekit/agents-js/commit/6eca0499fe637ae33078508ad9f0c03bccf1cddb), [`7b6c9f7`](https://github.com/livekit/agents-js/commit/7b6c9f7172097adae850fd436980e5aa6e41ec70), [`03f381c`](https://github.com/livekit/agents-js/commit/03f381c6e4f408ebdb696de3622c88a90b9b56d6), [`78af6b6`](https://github.com/livekit/agents-js/commit/78af6b647e012aa895b2b85bbf50e1703dd50832), [`38490e5`](https://github.com/livekit/agents-js/commit/38490e587edbd92241c2000275f5a0b02fd8f600)]: + - @livekit/agents@1.6.0 + ## 1.5.5 ### Patch Changes diff --git a/plugins/google/package.json b/plugins/google/package.json index 12ddb13b9d..302501f83b 100644 --- a/plugins/google/package.json +++ b/plugins/google/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-google", - "version": "1.5.5", + "version": "1.6.0", "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 184a5aee66..751547357b 100644 --- a/plugins/hedra/CHANGELOG.md +++ b/plugins/hedra/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-hedra +## 1.6.0 + +### Patch Changes + +- Updated dependencies [[`83d75e3`](https://github.com/livekit/agents-js/commit/83d75e34d8837029afdbef12e0c4fda5b8b2c3a0), [`818db99`](https://github.com/livekit/agents-js/commit/818db99b394cecd50dc8cffd1dd25a899eff9eb9), [`c4705a7`](https://github.com/livekit/agents-js/commit/c4705a7579f40573a3460976616ba5b0a66e5108), [`54ee51c`](https://github.com/livekit/agents-js/commit/54ee51c99ba5d2c4a9ad9d6389fe34de2c47d92f), [`1be8bef`](https://github.com/livekit/agents-js/commit/1be8bef5f01874d4f880ab01ee21a1171477bb5e), [`a30c5c3`](https://github.com/livekit/agents-js/commit/a30c5c3f421566f4a784696ac5c682c9521033c8), [`7d5a572`](https://github.com/livekit/agents-js/commit/7d5a572393623b9bfd9e472069c6d69fdbf6a017), [`6eca049`](https://github.com/livekit/agents-js/commit/6eca0499fe637ae33078508ad9f0c03bccf1cddb), [`7b6c9f7`](https://github.com/livekit/agents-js/commit/7b6c9f7172097adae850fd436980e5aa6e41ec70), [`03f381c`](https://github.com/livekit/agents-js/commit/03f381c6e4f408ebdb696de3622c88a90b9b56d6), [`78af6b6`](https://github.com/livekit/agents-js/commit/78af6b647e012aa895b2b85bbf50e1703dd50832), [`38490e5`](https://github.com/livekit/agents-js/commit/38490e587edbd92241c2000275f5a0b02fd8f600)]: + - @livekit/agents@1.6.0 + ## 1.5.5 ### Patch Changes diff --git a/plugins/hedra/package.json b/plugins/hedra/package.json index f3553237d1..9b9a39cf0e 100644 --- a/plugins/hedra/package.json +++ b/plugins/hedra/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-hedra", - "version": "1.5.5", + "version": "1.6.0", "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 b94a77f016..c82e8f1f91 100644 --- a/plugins/hume/CHANGELOG.md +++ b/plugins/hume/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-hume +## 1.6.0 + +### Patch Changes + +- Updated dependencies [[`83d75e3`](https://github.com/livekit/agents-js/commit/83d75e34d8837029afdbef12e0c4fda5b8b2c3a0), [`818db99`](https://github.com/livekit/agents-js/commit/818db99b394cecd50dc8cffd1dd25a899eff9eb9), [`c4705a7`](https://github.com/livekit/agents-js/commit/c4705a7579f40573a3460976616ba5b0a66e5108), [`54ee51c`](https://github.com/livekit/agents-js/commit/54ee51c99ba5d2c4a9ad9d6389fe34de2c47d92f), [`1be8bef`](https://github.com/livekit/agents-js/commit/1be8bef5f01874d4f880ab01ee21a1171477bb5e), [`a30c5c3`](https://github.com/livekit/agents-js/commit/a30c5c3f421566f4a784696ac5c682c9521033c8), [`7d5a572`](https://github.com/livekit/agents-js/commit/7d5a572393623b9bfd9e472069c6d69fdbf6a017), [`6eca049`](https://github.com/livekit/agents-js/commit/6eca0499fe637ae33078508ad9f0c03bccf1cddb), [`7b6c9f7`](https://github.com/livekit/agents-js/commit/7b6c9f7172097adae850fd436980e5aa6e41ec70), [`03f381c`](https://github.com/livekit/agents-js/commit/03f381c6e4f408ebdb696de3622c88a90b9b56d6), [`78af6b6`](https://github.com/livekit/agents-js/commit/78af6b647e012aa895b2b85bbf50e1703dd50832), [`38490e5`](https://github.com/livekit/agents-js/commit/38490e587edbd92241c2000275f5a0b02fd8f600)]: + - @livekit/agents@1.6.0 + ## 1.5.5 ### Patch Changes diff --git a/plugins/hume/package.json b/plugins/hume/package.json index cb6624c841..f16294fca7 100644 --- a/plugins/hume/package.json +++ b/plugins/hume/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-hume", - "version": "1.5.5", + "version": "1.6.0", "description": "Hume AI plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/inworld/CHANGELOG.md b/plugins/inworld/CHANGELOG.md index 50f3c7a07d..0cc3428da5 100644 --- a/plugins/inworld/CHANGELOG.md +++ b/plugins/inworld/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-inworld +## 1.6.0 + +### Patch Changes + +- Updated dependencies [[`83d75e3`](https://github.com/livekit/agents-js/commit/83d75e34d8837029afdbef12e0c4fda5b8b2c3a0), [`818db99`](https://github.com/livekit/agents-js/commit/818db99b394cecd50dc8cffd1dd25a899eff9eb9), [`c4705a7`](https://github.com/livekit/agents-js/commit/c4705a7579f40573a3460976616ba5b0a66e5108), [`54ee51c`](https://github.com/livekit/agents-js/commit/54ee51c99ba5d2c4a9ad9d6389fe34de2c47d92f), [`1be8bef`](https://github.com/livekit/agents-js/commit/1be8bef5f01874d4f880ab01ee21a1171477bb5e), [`a30c5c3`](https://github.com/livekit/agents-js/commit/a30c5c3f421566f4a784696ac5c682c9521033c8), [`7d5a572`](https://github.com/livekit/agents-js/commit/7d5a572393623b9bfd9e472069c6d69fdbf6a017), [`6eca049`](https://github.com/livekit/agents-js/commit/6eca0499fe637ae33078508ad9f0c03bccf1cddb), [`7b6c9f7`](https://github.com/livekit/agents-js/commit/7b6c9f7172097adae850fd436980e5aa6e41ec70), [`03f381c`](https://github.com/livekit/agents-js/commit/03f381c6e4f408ebdb696de3622c88a90b9b56d6), [`78af6b6`](https://github.com/livekit/agents-js/commit/78af6b647e012aa895b2b85bbf50e1703dd50832), [`38490e5`](https://github.com/livekit/agents-js/commit/38490e587edbd92241c2000275f5a0b02fd8f600)]: + - @livekit/agents@1.6.0 + ## 1.5.5 ### Patch Changes diff --git a/plugins/inworld/package.json b/plugins/inworld/package.json index 0541646673..5694fe69f6 100644 --- a/plugins/inworld/package.json +++ b/plugins/inworld/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-inworld", - "version": "1.5.5", + "version": "1.6.0", "description": "Inworld plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/krisp/CHANGELOG.md b/plugins/krisp/CHANGELOG.md new file mode 100644 index 0000000000..7025e648be --- /dev/null +++ b/plugins/krisp/CHANGELOG.md @@ -0,0 +1,10 @@ +# @livekit/agents-plugin-krisp + +## 1.6.0 + +### Patch Changes + +- Add krisp viva plugin - [#1904](https://github.com/livekit/agents-js/pull/1904) ([@lukasIO](https://github.com/lukasIO)) + +- Updated dependencies [[`83d75e3`](https://github.com/livekit/agents-js/commit/83d75e34d8837029afdbef12e0c4fda5b8b2c3a0), [`818db99`](https://github.com/livekit/agents-js/commit/818db99b394cecd50dc8cffd1dd25a899eff9eb9), [`c4705a7`](https://github.com/livekit/agents-js/commit/c4705a7579f40573a3460976616ba5b0a66e5108), [`54ee51c`](https://github.com/livekit/agents-js/commit/54ee51c99ba5d2c4a9ad9d6389fe34de2c47d92f), [`1be8bef`](https://github.com/livekit/agents-js/commit/1be8bef5f01874d4f880ab01ee21a1171477bb5e), [`a30c5c3`](https://github.com/livekit/agents-js/commit/a30c5c3f421566f4a784696ac5c682c9521033c8), [`7d5a572`](https://github.com/livekit/agents-js/commit/7d5a572393623b9bfd9e472069c6d69fdbf6a017), [`6eca049`](https://github.com/livekit/agents-js/commit/6eca0499fe637ae33078508ad9f0c03bccf1cddb), [`7b6c9f7`](https://github.com/livekit/agents-js/commit/7b6c9f7172097adae850fd436980e5aa6e41ec70), [`03f381c`](https://github.com/livekit/agents-js/commit/03f381c6e4f408ebdb696de3622c88a90b9b56d6), [`78af6b6`](https://github.com/livekit/agents-js/commit/78af6b647e012aa895b2b85bbf50e1703dd50832), [`38490e5`](https://github.com/livekit/agents-js/commit/38490e587edbd92241c2000275f5a0b02fd8f600)]: + - @livekit/agents@1.6.0 diff --git a/plugins/krisp/package.json b/plugins/krisp/package.json index a89a6320c9..e6f0c94cdb 100644 --- a/plugins/krisp/package.json +++ b/plugins/krisp/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-krisp", - "version": "1.4.9", + "version": "1.6.0", "description": "Krisp Audio plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/lemonslice/CHANGELOG.md b/plugins/lemonslice/CHANGELOG.md index 74c21a2d3f..6d0d1ac8e7 100644 --- a/plugins/lemonslice/CHANGELOG.md +++ b/plugins/lemonslice/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-lemonslice +## 1.6.0 + +### Patch Changes + +- Updated dependencies [[`83d75e3`](https://github.com/livekit/agents-js/commit/83d75e34d8837029afdbef12e0c4fda5b8b2c3a0), [`818db99`](https://github.com/livekit/agents-js/commit/818db99b394cecd50dc8cffd1dd25a899eff9eb9), [`c4705a7`](https://github.com/livekit/agents-js/commit/c4705a7579f40573a3460976616ba5b0a66e5108), [`54ee51c`](https://github.com/livekit/agents-js/commit/54ee51c99ba5d2c4a9ad9d6389fe34de2c47d92f), [`1be8bef`](https://github.com/livekit/agents-js/commit/1be8bef5f01874d4f880ab01ee21a1171477bb5e), [`a30c5c3`](https://github.com/livekit/agents-js/commit/a30c5c3f421566f4a784696ac5c682c9521033c8), [`7d5a572`](https://github.com/livekit/agents-js/commit/7d5a572393623b9bfd9e472069c6d69fdbf6a017), [`6eca049`](https://github.com/livekit/agents-js/commit/6eca0499fe637ae33078508ad9f0c03bccf1cddb), [`7b6c9f7`](https://github.com/livekit/agents-js/commit/7b6c9f7172097adae850fd436980e5aa6e41ec70), [`03f381c`](https://github.com/livekit/agents-js/commit/03f381c6e4f408ebdb696de3622c88a90b9b56d6), [`78af6b6`](https://github.com/livekit/agents-js/commit/78af6b647e012aa895b2b85bbf50e1703dd50832), [`38490e5`](https://github.com/livekit/agents-js/commit/38490e587edbd92241c2000275f5a0b02fd8f600)]: + - @livekit/agents@1.6.0 + ## 1.5.5 ### Patch Changes diff --git a/plugins/lemonslice/package.json b/plugins/lemonslice/package.json index 490b022aa0..8784efb675 100644 --- a/plugins/lemonslice/package.json +++ b/plugins/lemonslice/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-lemonslice", - "version": "1.5.5", + "version": "1.6.0", "description": "LemonSlice avatar plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/liveavatar/CHANGELOG.md b/plugins/liveavatar/CHANGELOG.md index 9a84d69dd3..8e39b75d87 100644 --- a/plugins/liveavatar/CHANGELOG.md +++ b/plugins/liveavatar/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-liveavatar +## 1.6.0 + +### Patch Changes + +- Updated dependencies [[`83d75e3`](https://github.com/livekit/agents-js/commit/83d75e34d8837029afdbef12e0c4fda5b8b2c3a0), [`818db99`](https://github.com/livekit/agents-js/commit/818db99b394cecd50dc8cffd1dd25a899eff9eb9), [`c4705a7`](https://github.com/livekit/agents-js/commit/c4705a7579f40573a3460976616ba5b0a66e5108), [`54ee51c`](https://github.com/livekit/agents-js/commit/54ee51c99ba5d2c4a9ad9d6389fe34de2c47d92f), [`1be8bef`](https://github.com/livekit/agents-js/commit/1be8bef5f01874d4f880ab01ee21a1171477bb5e), [`a30c5c3`](https://github.com/livekit/agents-js/commit/a30c5c3f421566f4a784696ac5c682c9521033c8), [`7d5a572`](https://github.com/livekit/agents-js/commit/7d5a572393623b9bfd9e472069c6d69fdbf6a017), [`6eca049`](https://github.com/livekit/agents-js/commit/6eca0499fe637ae33078508ad9f0c03bccf1cddb), [`7b6c9f7`](https://github.com/livekit/agents-js/commit/7b6c9f7172097adae850fd436980e5aa6e41ec70), [`03f381c`](https://github.com/livekit/agents-js/commit/03f381c6e4f408ebdb696de3622c88a90b9b56d6), [`78af6b6`](https://github.com/livekit/agents-js/commit/78af6b647e012aa895b2b85bbf50e1703dd50832), [`38490e5`](https://github.com/livekit/agents-js/commit/38490e587edbd92241c2000275f5a0b02fd8f600)]: + - @livekit/agents@1.6.0 + ## 1.5.5 ### Patch Changes diff --git a/plugins/liveavatar/package.json b/plugins/liveavatar/package.json index 61478c030a..34b00ee813 100644 --- a/plugins/liveavatar/package.json +++ b/plugins/liveavatar/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-liveavatar", - "version": "1.5.5", + "version": "1.6.0", "description": "LiveAvatar avatar plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/livekit/CHANGELOG.md b/plugins/livekit/CHANGELOG.md index dc62b9c029..4bf938b6f4 100644 --- a/plugins/livekit/CHANGELOG.md +++ b/plugins/livekit/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-livekit +## 1.6.0 + +### Patch Changes + +- Updated dependencies [[`83d75e3`](https://github.com/livekit/agents-js/commit/83d75e34d8837029afdbef12e0c4fda5b8b2c3a0), [`818db99`](https://github.com/livekit/agents-js/commit/818db99b394cecd50dc8cffd1dd25a899eff9eb9), [`c4705a7`](https://github.com/livekit/agents-js/commit/c4705a7579f40573a3460976616ba5b0a66e5108), [`54ee51c`](https://github.com/livekit/agents-js/commit/54ee51c99ba5d2c4a9ad9d6389fe34de2c47d92f), [`1be8bef`](https://github.com/livekit/agents-js/commit/1be8bef5f01874d4f880ab01ee21a1171477bb5e), [`a30c5c3`](https://github.com/livekit/agents-js/commit/a30c5c3f421566f4a784696ac5c682c9521033c8), [`7d5a572`](https://github.com/livekit/agents-js/commit/7d5a572393623b9bfd9e472069c6d69fdbf6a017), [`6eca049`](https://github.com/livekit/agents-js/commit/6eca0499fe637ae33078508ad9f0c03bccf1cddb), [`7b6c9f7`](https://github.com/livekit/agents-js/commit/7b6c9f7172097adae850fd436980e5aa6e41ec70), [`03f381c`](https://github.com/livekit/agents-js/commit/03f381c6e4f408ebdb696de3622c88a90b9b56d6), [`78af6b6`](https://github.com/livekit/agents-js/commit/78af6b647e012aa895b2b85bbf50e1703dd50832), [`38490e5`](https://github.com/livekit/agents-js/commit/38490e587edbd92241c2000275f5a0b02fd8f600)]: + - @livekit/agents@1.6.0 + ## 1.5.5 ### Patch Changes diff --git a/plugins/livekit/package.json b/plugins/livekit/package.json index d599159ac3..975ef4732e 100644 --- a/plugins/livekit/package.json +++ b/plugins/livekit/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-livekit", - "version": "1.5.5", + "version": "1.6.0", "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 7dd72a198f..e65451e3da 100644 --- a/plugins/minimax/CHANGELOG.md +++ b/plugins/minimax/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-minimax +## 1.6.0 + +### Patch Changes + +- Updated dependencies [[`83d75e3`](https://github.com/livekit/agents-js/commit/83d75e34d8837029afdbef12e0c4fda5b8b2c3a0), [`818db99`](https://github.com/livekit/agents-js/commit/818db99b394cecd50dc8cffd1dd25a899eff9eb9), [`c4705a7`](https://github.com/livekit/agents-js/commit/c4705a7579f40573a3460976616ba5b0a66e5108), [`54ee51c`](https://github.com/livekit/agents-js/commit/54ee51c99ba5d2c4a9ad9d6389fe34de2c47d92f), [`1be8bef`](https://github.com/livekit/agents-js/commit/1be8bef5f01874d4f880ab01ee21a1171477bb5e), [`a30c5c3`](https://github.com/livekit/agents-js/commit/a30c5c3f421566f4a784696ac5c682c9521033c8), [`7d5a572`](https://github.com/livekit/agents-js/commit/7d5a572393623b9bfd9e472069c6d69fdbf6a017), [`6eca049`](https://github.com/livekit/agents-js/commit/6eca0499fe637ae33078508ad9f0c03bccf1cddb), [`7b6c9f7`](https://github.com/livekit/agents-js/commit/7b6c9f7172097adae850fd436980e5aa6e41ec70), [`03f381c`](https://github.com/livekit/agents-js/commit/03f381c6e4f408ebdb696de3622c88a90b9b56d6), [`78af6b6`](https://github.com/livekit/agents-js/commit/78af6b647e012aa895b2b85bbf50e1703dd50832), [`38490e5`](https://github.com/livekit/agents-js/commit/38490e587edbd92241c2000275f5a0b02fd8f600)]: + - @livekit/agents@1.6.0 + ## 1.5.5 ### Patch Changes diff --git a/plugins/minimax/package.json b/plugins/minimax/package.json index 0aedf83a64..9823bb71c0 100644 --- a/plugins/minimax/package.json +++ b/plugins/minimax/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-minimax", - "version": "1.5.5", + "version": "1.6.0", "description": "MiniMax plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/mistral/CHANGELOG.md b/plugins/mistral/CHANGELOG.md index 1066f5f1e4..8175dfc808 100644 --- a/plugins/mistral/CHANGELOG.md +++ b/plugins/mistral/CHANGELOG.md @@ -1,5 +1,13 @@ # @livekit/agents-plugin-mistral +## 1.6.0 + +### Patch Changes + +- Updated dependencies [[`83d75e3`](https://github.com/livekit/agents-js/commit/83d75e34d8837029afdbef12e0c4fda5b8b2c3a0), [`818db99`](https://github.com/livekit/agents-js/commit/818db99b394cecd50dc8cffd1dd25a899eff9eb9), [`c4705a7`](https://github.com/livekit/agents-js/commit/c4705a7579f40573a3460976616ba5b0a66e5108), [`54ee51c`](https://github.com/livekit/agents-js/commit/54ee51c99ba5d2c4a9ad9d6389fe34de2c47d92f), [`1be8bef`](https://github.com/livekit/agents-js/commit/1be8bef5f01874d4f880ab01ee21a1171477bb5e), [`a30c5c3`](https://github.com/livekit/agents-js/commit/a30c5c3f421566f4a784696ac5c682c9521033c8), [`7d5a572`](https://github.com/livekit/agents-js/commit/7d5a572393623b9bfd9e472069c6d69fdbf6a017), [`6eca049`](https://github.com/livekit/agents-js/commit/6eca0499fe637ae33078508ad9f0c03bccf1cddb), [`7b6c9f7`](https://github.com/livekit/agents-js/commit/7b6c9f7172097adae850fd436980e5aa6e41ec70), [`03f381c`](https://github.com/livekit/agents-js/commit/03f381c6e4f408ebdb696de3622c88a90b9b56d6), [`78af6b6`](https://github.com/livekit/agents-js/commit/78af6b647e012aa895b2b85bbf50e1703dd50832), [`38490e5`](https://github.com/livekit/agents-js/commit/38490e587edbd92241c2000275f5a0b02fd8f600)]: + - @livekit/agents@1.6.0 + - @livekit/agents-plugin-mistralai@1.6.0 + ## 1.5.5 ### Patch Changes diff --git a/plugins/mistral/package.json b/plugins/mistral/package.json index 893d5ba440..d032f3262e 100644 --- a/plugins/mistral/package.json +++ b/plugins/mistral/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-mistral", - "version": "1.5.5", + "version": "1.6.0", "description": "Mistral AI plugin for LiveKit Node Agents (deprecated, use @livekit/agents-plugin-mistralai)", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/mistralai/CHANGELOG.md b/plugins/mistralai/CHANGELOG.md index b07313fd8d..d3a7ff64c2 100644 --- a/plugins/mistralai/CHANGELOG.md +++ b/plugins/mistralai/CHANGELOG.md @@ -1,5 +1,13 @@ # @livekit/agents-plugin-mistralai +## 1.6.0 + +### Patch Changes + +- Updated dependencies [[`83d75e3`](https://github.com/livekit/agents-js/commit/83d75e34d8837029afdbef12e0c4fda5b8b2c3a0), [`818db99`](https://github.com/livekit/agents-js/commit/818db99b394cecd50dc8cffd1dd25a899eff9eb9), [`c4705a7`](https://github.com/livekit/agents-js/commit/c4705a7579f40573a3460976616ba5b0a66e5108), [`54ee51c`](https://github.com/livekit/agents-js/commit/54ee51c99ba5d2c4a9ad9d6389fe34de2c47d92f), [`1be8bef`](https://github.com/livekit/agents-js/commit/1be8bef5f01874d4f880ab01ee21a1171477bb5e), [`a30c5c3`](https://github.com/livekit/agents-js/commit/a30c5c3f421566f4a784696ac5c682c9521033c8), [`7d5a572`](https://github.com/livekit/agents-js/commit/7d5a572393623b9bfd9e472069c6d69fdbf6a017), [`6eca049`](https://github.com/livekit/agents-js/commit/6eca0499fe637ae33078508ad9f0c03bccf1cddb), [`7b6c9f7`](https://github.com/livekit/agents-js/commit/7b6c9f7172097adae850fd436980e5aa6e41ec70), [`03f381c`](https://github.com/livekit/agents-js/commit/03f381c6e4f408ebdb696de3622c88a90b9b56d6), [`78af6b6`](https://github.com/livekit/agents-js/commit/78af6b647e012aa895b2b85bbf50e1703dd50832), [`38490e5`](https://github.com/livekit/agents-js/commit/38490e587edbd92241c2000275f5a0b02fd8f600)]: + - @livekit/agents@1.6.0 + - @livekit/agents-plugin-silero@1.6.0 + ## 1.5.5 ### Patch Changes diff --git a/plugins/mistralai/package.json b/plugins/mistralai/package.json index a049140e3a..72fa14ffeb 100644 --- a/plugins/mistralai/package.json +++ b/plugins/mistralai/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-mistralai", - "version": "1.5.5", + "version": "1.6.0", "description": "Mistral AI plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/neuphonic/CHANGELOG.md b/plugins/neuphonic/CHANGELOG.md index f572858e77..24c712bce6 100644 --- a/plugins/neuphonic/CHANGELOG.md +++ b/plugins/neuphonic/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-neuphonic +## 1.6.0 + +### Patch Changes + +- Updated dependencies [[`83d75e3`](https://github.com/livekit/agents-js/commit/83d75e34d8837029afdbef12e0c4fda5b8b2c3a0), [`818db99`](https://github.com/livekit/agents-js/commit/818db99b394cecd50dc8cffd1dd25a899eff9eb9), [`c4705a7`](https://github.com/livekit/agents-js/commit/c4705a7579f40573a3460976616ba5b0a66e5108), [`54ee51c`](https://github.com/livekit/agents-js/commit/54ee51c99ba5d2c4a9ad9d6389fe34de2c47d92f), [`1be8bef`](https://github.com/livekit/agents-js/commit/1be8bef5f01874d4f880ab01ee21a1171477bb5e), [`a30c5c3`](https://github.com/livekit/agents-js/commit/a30c5c3f421566f4a784696ac5c682c9521033c8), [`7d5a572`](https://github.com/livekit/agents-js/commit/7d5a572393623b9bfd9e472069c6d69fdbf6a017), [`6eca049`](https://github.com/livekit/agents-js/commit/6eca0499fe637ae33078508ad9f0c03bccf1cddb), [`7b6c9f7`](https://github.com/livekit/agents-js/commit/7b6c9f7172097adae850fd436980e5aa6e41ec70), [`03f381c`](https://github.com/livekit/agents-js/commit/03f381c6e4f408ebdb696de3622c88a90b9b56d6), [`78af6b6`](https://github.com/livekit/agents-js/commit/78af6b647e012aa895b2b85bbf50e1703dd50832), [`38490e5`](https://github.com/livekit/agents-js/commit/38490e587edbd92241c2000275f5a0b02fd8f600)]: + - @livekit/agents@1.6.0 + ## 1.5.5 ### Patch Changes diff --git a/plugins/neuphonic/package.json b/plugins/neuphonic/package.json index 3d3b6a80f3..def012a868 100644 --- a/plugins/neuphonic/package.json +++ b/plugins/neuphonic/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-neuphonic", - "version": "1.5.5", + "version": "1.6.0", "description": "Neuphonic plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/openai/CHANGELOG.md b/plugins/openai/CHANGELOG.md index 7e6aa414f3..4534381285 100644 --- a/plugins/openai/CHANGELOG.md +++ b/plugins/openai/CHANGELOG.md @@ -1,5 +1,14 @@ # @livekit/agents-plugin-openai +## 1.6.0 + +### Patch Changes + +- Do not drop realtime replies when the pre-reply chat context update times out. - [#2083](https://github.com/livekit/agents-js/pull/2083) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- Updated dependencies [[`83d75e3`](https://github.com/livekit/agents-js/commit/83d75e34d8837029afdbef12e0c4fda5b8b2c3a0), [`818db99`](https://github.com/livekit/agents-js/commit/818db99b394cecd50dc8cffd1dd25a899eff9eb9), [`c4705a7`](https://github.com/livekit/agents-js/commit/c4705a7579f40573a3460976616ba5b0a66e5108), [`54ee51c`](https://github.com/livekit/agents-js/commit/54ee51c99ba5d2c4a9ad9d6389fe34de2c47d92f), [`1be8bef`](https://github.com/livekit/agents-js/commit/1be8bef5f01874d4f880ab01ee21a1171477bb5e), [`a30c5c3`](https://github.com/livekit/agents-js/commit/a30c5c3f421566f4a784696ac5c682c9521033c8), [`7d5a572`](https://github.com/livekit/agents-js/commit/7d5a572393623b9bfd9e472069c6d69fdbf6a017), [`6eca049`](https://github.com/livekit/agents-js/commit/6eca0499fe637ae33078508ad9f0c03bccf1cddb), [`7b6c9f7`](https://github.com/livekit/agents-js/commit/7b6c9f7172097adae850fd436980e5aa6e41ec70), [`03f381c`](https://github.com/livekit/agents-js/commit/03f381c6e4f408ebdb696de3622c88a90b9b56d6), [`78af6b6`](https://github.com/livekit/agents-js/commit/78af6b647e012aa895b2b85bbf50e1703dd50832), [`38490e5`](https://github.com/livekit/agents-js/commit/38490e587edbd92241c2000275f5a0b02fd8f600)]: + - @livekit/agents@1.6.0 + ## 1.5.5 ### Patch Changes diff --git a/plugins/openai/package.json b/plugins/openai/package.json index 6058e6456b..172738a100 100644 --- a/plugins/openai/package.json +++ b/plugins/openai/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-openai", - "version": "1.5.5", + "version": "1.6.0", "description": "OpenAI plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/perplexity/CHANGELOG.md b/plugins/perplexity/CHANGELOG.md index 394825b9bd..b135839ecc 100644 --- a/plugins/perplexity/CHANGELOG.md +++ b/plugins/perplexity/CHANGELOG.md @@ -1,5 +1,13 @@ # @livekit/agents-plugin-perplexity +## 1.6.0 + +### Patch Changes + +- Updated dependencies [[`83d75e3`](https://github.com/livekit/agents-js/commit/83d75e34d8837029afdbef12e0c4fda5b8b2c3a0), [`818db99`](https://github.com/livekit/agents-js/commit/818db99b394cecd50dc8cffd1dd25a899eff9eb9), [`c4705a7`](https://github.com/livekit/agents-js/commit/c4705a7579f40573a3460976616ba5b0a66e5108), [`54ee51c`](https://github.com/livekit/agents-js/commit/54ee51c99ba5d2c4a9ad9d6389fe34de2c47d92f), [`1be8bef`](https://github.com/livekit/agents-js/commit/1be8bef5f01874d4f880ab01ee21a1171477bb5e), [`a30c5c3`](https://github.com/livekit/agents-js/commit/a30c5c3f421566f4a784696ac5c682c9521033c8), [`7d5a572`](https://github.com/livekit/agents-js/commit/7d5a572393623b9bfd9e472069c6d69fdbf6a017), [`6eca049`](https://github.com/livekit/agents-js/commit/6eca0499fe637ae33078508ad9f0c03bccf1cddb), [`7b6c9f7`](https://github.com/livekit/agents-js/commit/7b6c9f7172097adae850fd436980e5aa6e41ec70), [`03f381c`](https://github.com/livekit/agents-js/commit/03f381c6e4f408ebdb696de3622c88a90b9b56d6), [`78af6b6`](https://github.com/livekit/agents-js/commit/78af6b647e012aa895b2b85bbf50e1703dd50832), [`38490e5`](https://github.com/livekit/agents-js/commit/38490e587edbd92241c2000275f5a0b02fd8f600)]: + - @livekit/agents@1.6.0 + - @livekit/agents-plugin-openai@1.6.0 + ## 1.5.5 ### Patch Changes diff --git a/plugins/perplexity/package.json b/plugins/perplexity/package.json index 8ca843c06a..6200eb7276 100644 --- a/plugins/perplexity/package.json +++ b/plugins/perplexity/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-perplexity", - "version": "1.5.5", + "version": "1.6.0", "description": "Perplexity plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/phonic/CHANGELOG.md b/plugins/phonic/CHANGELOG.md index 977ed7087e..910d6c3418 100644 --- a/plugins/phonic/CHANGELOG.md +++ b/plugins/phonic/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-phonic +## 1.6.0 + +### Patch Changes + +- Updated dependencies [[`83d75e3`](https://github.com/livekit/agents-js/commit/83d75e34d8837029afdbef12e0c4fda5b8b2c3a0), [`818db99`](https://github.com/livekit/agents-js/commit/818db99b394cecd50dc8cffd1dd25a899eff9eb9), [`c4705a7`](https://github.com/livekit/agents-js/commit/c4705a7579f40573a3460976616ba5b0a66e5108), [`54ee51c`](https://github.com/livekit/agents-js/commit/54ee51c99ba5d2c4a9ad9d6389fe34de2c47d92f), [`1be8bef`](https://github.com/livekit/agents-js/commit/1be8bef5f01874d4f880ab01ee21a1171477bb5e), [`a30c5c3`](https://github.com/livekit/agents-js/commit/a30c5c3f421566f4a784696ac5c682c9521033c8), [`7d5a572`](https://github.com/livekit/agents-js/commit/7d5a572393623b9bfd9e472069c6d69fdbf6a017), [`6eca049`](https://github.com/livekit/agents-js/commit/6eca0499fe637ae33078508ad9f0c03bccf1cddb), [`7b6c9f7`](https://github.com/livekit/agents-js/commit/7b6c9f7172097adae850fd436980e5aa6e41ec70), [`03f381c`](https://github.com/livekit/agents-js/commit/03f381c6e4f408ebdb696de3622c88a90b9b56d6), [`78af6b6`](https://github.com/livekit/agents-js/commit/78af6b647e012aa895b2b85bbf50e1703dd50832), [`38490e5`](https://github.com/livekit/agents-js/commit/38490e587edbd92241c2000275f5a0b02fd8f600)]: + - @livekit/agents@1.6.0 + ## 1.5.5 ### Patch Changes diff --git a/plugins/phonic/package.json b/plugins/phonic/package.json index 21adc99826..ddce1f3505 100644 --- a/plugins/phonic/package.json +++ b/plugins/phonic/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-phonic", - "version": "1.5.5", + "version": "1.6.0", "description": "Phonic STS plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/protoface/CHANGELOG.md b/plugins/protoface/CHANGELOG.md index 6a0edae8ad..49cfe92c6f 100644 --- a/plugins/protoface/CHANGELOG.md +++ b/plugins/protoface/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-protoface +## 1.6.0 + +### Patch Changes + +- Updated dependencies [[`83d75e3`](https://github.com/livekit/agents-js/commit/83d75e34d8837029afdbef12e0c4fda5b8b2c3a0), [`818db99`](https://github.com/livekit/agents-js/commit/818db99b394cecd50dc8cffd1dd25a899eff9eb9), [`c4705a7`](https://github.com/livekit/agents-js/commit/c4705a7579f40573a3460976616ba5b0a66e5108), [`54ee51c`](https://github.com/livekit/agents-js/commit/54ee51c99ba5d2c4a9ad9d6389fe34de2c47d92f), [`1be8bef`](https://github.com/livekit/agents-js/commit/1be8bef5f01874d4f880ab01ee21a1171477bb5e), [`a30c5c3`](https://github.com/livekit/agents-js/commit/a30c5c3f421566f4a784696ac5c682c9521033c8), [`7d5a572`](https://github.com/livekit/agents-js/commit/7d5a572393623b9bfd9e472069c6d69fdbf6a017), [`6eca049`](https://github.com/livekit/agents-js/commit/6eca0499fe637ae33078508ad9f0c03bccf1cddb), [`7b6c9f7`](https://github.com/livekit/agents-js/commit/7b6c9f7172097adae850fd436980e5aa6e41ec70), [`03f381c`](https://github.com/livekit/agents-js/commit/03f381c6e4f408ebdb696de3622c88a90b9b56d6), [`78af6b6`](https://github.com/livekit/agents-js/commit/78af6b647e012aa895b2b85bbf50e1703dd50832), [`38490e5`](https://github.com/livekit/agents-js/commit/38490e587edbd92241c2000275f5a0b02fd8f600)]: + - @livekit/agents@1.6.0 + ## 1.5.5 ### Patch Changes diff --git a/plugins/protoface/package.json b/plugins/protoface/package.json index 03f1688b02..c99415b2f9 100644 --- a/plugins/protoface/package.json +++ b/plugins/protoface/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-protoface", - "version": "1.5.5", + "version": "1.6.0", "description": "Protoface avatar plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/resemble/CHANGELOG.md b/plugins/resemble/CHANGELOG.md index b3fbf8d443..f21621336d 100644 --- a/plugins/resemble/CHANGELOG.md +++ b/plugins/resemble/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-resemble +## 1.6.0 + +### Patch Changes + +- Updated dependencies [[`83d75e3`](https://github.com/livekit/agents-js/commit/83d75e34d8837029afdbef12e0c4fda5b8b2c3a0), [`818db99`](https://github.com/livekit/agents-js/commit/818db99b394cecd50dc8cffd1dd25a899eff9eb9), [`c4705a7`](https://github.com/livekit/agents-js/commit/c4705a7579f40573a3460976616ba5b0a66e5108), [`54ee51c`](https://github.com/livekit/agents-js/commit/54ee51c99ba5d2c4a9ad9d6389fe34de2c47d92f), [`1be8bef`](https://github.com/livekit/agents-js/commit/1be8bef5f01874d4f880ab01ee21a1171477bb5e), [`a30c5c3`](https://github.com/livekit/agents-js/commit/a30c5c3f421566f4a784696ac5c682c9521033c8), [`7d5a572`](https://github.com/livekit/agents-js/commit/7d5a572393623b9bfd9e472069c6d69fdbf6a017), [`6eca049`](https://github.com/livekit/agents-js/commit/6eca0499fe637ae33078508ad9f0c03bccf1cddb), [`7b6c9f7`](https://github.com/livekit/agents-js/commit/7b6c9f7172097adae850fd436980e5aa6e41ec70), [`03f381c`](https://github.com/livekit/agents-js/commit/03f381c6e4f408ebdb696de3622c88a90b9b56d6), [`78af6b6`](https://github.com/livekit/agents-js/commit/78af6b647e012aa895b2b85bbf50e1703dd50832), [`38490e5`](https://github.com/livekit/agents-js/commit/38490e587edbd92241c2000275f5a0b02fd8f600)]: + - @livekit/agents@1.6.0 + ## 1.5.5 ### Patch Changes diff --git a/plugins/resemble/package.json b/plugins/resemble/package.json index 924ab9891a..9a1be6a78c 100644 --- a/plugins/resemble/package.json +++ b/plugins/resemble/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-resemble", - "version": "1.5.5", + "version": "1.6.0", "description": "Resemble plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/rime/CHANGELOG.md b/plugins/rime/CHANGELOG.md index 9cf0566a69..29809a7e9d 100644 --- a/plugins/rime/CHANGELOG.md +++ b/plugins/rime/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-rime +## 1.6.0 + +### Patch Changes + +- Updated dependencies [[`83d75e3`](https://github.com/livekit/agents-js/commit/83d75e34d8837029afdbef12e0c4fda5b8b2c3a0), [`818db99`](https://github.com/livekit/agents-js/commit/818db99b394cecd50dc8cffd1dd25a899eff9eb9), [`c4705a7`](https://github.com/livekit/agents-js/commit/c4705a7579f40573a3460976616ba5b0a66e5108), [`54ee51c`](https://github.com/livekit/agents-js/commit/54ee51c99ba5d2c4a9ad9d6389fe34de2c47d92f), [`1be8bef`](https://github.com/livekit/agents-js/commit/1be8bef5f01874d4f880ab01ee21a1171477bb5e), [`a30c5c3`](https://github.com/livekit/agents-js/commit/a30c5c3f421566f4a784696ac5c682c9521033c8), [`7d5a572`](https://github.com/livekit/agents-js/commit/7d5a572393623b9bfd9e472069c6d69fdbf6a017), [`6eca049`](https://github.com/livekit/agents-js/commit/6eca0499fe637ae33078508ad9f0c03bccf1cddb), [`7b6c9f7`](https://github.com/livekit/agents-js/commit/7b6c9f7172097adae850fd436980e5aa6e41ec70), [`03f381c`](https://github.com/livekit/agents-js/commit/03f381c6e4f408ebdb696de3622c88a90b9b56d6), [`78af6b6`](https://github.com/livekit/agents-js/commit/78af6b647e012aa895b2b85bbf50e1703dd50832), [`38490e5`](https://github.com/livekit/agents-js/commit/38490e587edbd92241c2000275f5a0b02fd8f600)]: + - @livekit/agents@1.6.0 + ## 1.5.5 ### Patch Changes diff --git a/plugins/rime/package.json b/plugins/rime/package.json index 5dbd17eeec..a71482032d 100644 --- a/plugins/rime/package.json +++ b/plugins/rime/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-rime", - "version": "1.5.5", + "version": "1.6.0", "description": "Rime plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/runway/CHANGELOG.md b/plugins/runway/CHANGELOG.md index 6b5a8119f4..02c5fb1226 100644 --- a/plugins/runway/CHANGELOG.md +++ b/plugins/runway/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-runway +## 1.6.0 + +### Patch Changes + +- Updated dependencies [[`83d75e3`](https://github.com/livekit/agents-js/commit/83d75e34d8837029afdbef12e0c4fda5b8b2c3a0), [`818db99`](https://github.com/livekit/agents-js/commit/818db99b394cecd50dc8cffd1dd25a899eff9eb9), [`c4705a7`](https://github.com/livekit/agents-js/commit/c4705a7579f40573a3460976616ba5b0a66e5108), [`54ee51c`](https://github.com/livekit/agents-js/commit/54ee51c99ba5d2c4a9ad9d6389fe34de2c47d92f), [`1be8bef`](https://github.com/livekit/agents-js/commit/1be8bef5f01874d4f880ab01ee21a1171477bb5e), [`a30c5c3`](https://github.com/livekit/agents-js/commit/a30c5c3f421566f4a784696ac5c682c9521033c8), [`7d5a572`](https://github.com/livekit/agents-js/commit/7d5a572393623b9bfd9e472069c6d69fdbf6a017), [`6eca049`](https://github.com/livekit/agents-js/commit/6eca0499fe637ae33078508ad9f0c03bccf1cddb), [`7b6c9f7`](https://github.com/livekit/agents-js/commit/7b6c9f7172097adae850fd436980e5aa6e41ec70), [`03f381c`](https://github.com/livekit/agents-js/commit/03f381c6e4f408ebdb696de3622c88a90b9b56d6), [`78af6b6`](https://github.com/livekit/agents-js/commit/78af6b647e012aa895b2b85bbf50e1703dd50832), [`38490e5`](https://github.com/livekit/agents-js/commit/38490e587edbd92241c2000275f5a0b02fd8f600)]: + - @livekit/agents@1.6.0 + ## 1.5.5 ### Patch Changes diff --git a/plugins/runway/package.json b/plugins/runway/package.json index 753430ef4a..11bff9b640 100644 --- a/plugins/runway/package.json +++ b/plugins/runway/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-runway", - "version": "1.5.5", + "version": "1.6.0", "description": "Runway plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/sarvam/CHANGELOG.md b/plugins/sarvam/CHANGELOG.md index a433f86c08..f7db08a78d 100644 --- a/plugins/sarvam/CHANGELOG.md +++ b/plugins/sarvam/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-sarvam +## 1.6.0 + +### Patch Changes + +- Updated dependencies [[`83d75e3`](https://github.com/livekit/agents-js/commit/83d75e34d8837029afdbef12e0c4fda5b8b2c3a0), [`818db99`](https://github.com/livekit/agents-js/commit/818db99b394cecd50dc8cffd1dd25a899eff9eb9), [`c4705a7`](https://github.com/livekit/agents-js/commit/c4705a7579f40573a3460976616ba5b0a66e5108), [`54ee51c`](https://github.com/livekit/agents-js/commit/54ee51c99ba5d2c4a9ad9d6389fe34de2c47d92f), [`1be8bef`](https://github.com/livekit/agents-js/commit/1be8bef5f01874d4f880ab01ee21a1171477bb5e), [`a30c5c3`](https://github.com/livekit/agents-js/commit/a30c5c3f421566f4a784696ac5c682c9521033c8), [`7d5a572`](https://github.com/livekit/agents-js/commit/7d5a572393623b9bfd9e472069c6d69fdbf6a017), [`6eca049`](https://github.com/livekit/agents-js/commit/6eca0499fe637ae33078508ad9f0c03bccf1cddb), [`7b6c9f7`](https://github.com/livekit/agents-js/commit/7b6c9f7172097adae850fd436980e5aa6e41ec70), [`03f381c`](https://github.com/livekit/agents-js/commit/03f381c6e4f408ebdb696de3622c88a90b9b56d6), [`78af6b6`](https://github.com/livekit/agents-js/commit/78af6b647e012aa895b2b85bbf50e1703dd50832), [`38490e5`](https://github.com/livekit/agents-js/commit/38490e587edbd92241c2000275f5a0b02fd8f600)]: + - @livekit/agents@1.6.0 + ## 1.5.5 ### Patch Changes diff --git a/plugins/sarvam/package.json b/plugins/sarvam/package.json index 7c6a8ba2b5..e2e1a80bb9 100644 --- a/plugins/sarvam/package.json +++ b/plugins/sarvam/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-sarvam", - "version": "1.5.5", + "version": "1.6.0", "description": "Sarvam AI plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/silero/CHANGELOG.md b/plugins/silero/CHANGELOG.md index 3d2a59307a..ad63eaec32 100644 --- a/plugins/silero/CHANGELOG.md +++ b/plugins/silero/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-silero +## 1.6.0 + +### Patch Changes + +- Updated dependencies [[`83d75e3`](https://github.com/livekit/agents-js/commit/83d75e34d8837029afdbef12e0c4fda5b8b2c3a0), [`818db99`](https://github.com/livekit/agents-js/commit/818db99b394cecd50dc8cffd1dd25a899eff9eb9), [`c4705a7`](https://github.com/livekit/agents-js/commit/c4705a7579f40573a3460976616ba5b0a66e5108), [`54ee51c`](https://github.com/livekit/agents-js/commit/54ee51c99ba5d2c4a9ad9d6389fe34de2c47d92f), [`1be8bef`](https://github.com/livekit/agents-js/commit/1be8bef5f01874d4f880ab01ee21a1171477bb5e), [`a30c5c3`](https://github.com/livekit/agents-js/commit/a30c5c3f421566f4a784696ac5c682c9521033c8), [`7d5a572`](https://github.com/livekit/agents-js/commit/7d5a572393623b9bfd9e472069c6d69fdbf6a017), [`6eca049`](https://github.com/livekit/agents-js/commit/6eca0499fe637ae33078508ad9f0c03bccf1cddb), [`7b6c9f7`](https://github.com/livekit/agents-js/commit/7b6c9f7172097adae850fd436980e5aa6e41ec70), [`03f381c`](https://github.com/livekit/agents-js/commit/03f381c6e4f408ebdb696de3622c88a90b9b56d6), [`78af6b6`](https://github.com/livekit/agents-js/commit/78af6b647e012aa895b2b85bbf50e1703dd50832), [`38490e5`](https://github.com/livekit/agents-js/commit/38490e587edbd92241c2000275f5a0b02fd8f600)]: + - @livekit/agents@1.6.0 + ## 1.5.5 ### Patch Changes diff --git a/plugins/silero/package.json b/plugins/silero/package.json index 387aaa053e..024be6a770 100644 --- a/plugins/silero/package.json +++ b/plugins/silero/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-silero", - "version": "1.5.5", + "version": "1.6.0", "description": "Silero voice activity detection LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/soniox/CHANGELOG.md b/plugins/soniox/CHANGELOG.md index 96930719df..8b7d47c2a0 100644 --- a/plugins/soniox/CHANGELOG.md +++ b/plugins/soniox/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-soniox +## 1.6.0 + +### Patch Changes + +- Updated dependencies [[`83d75e3`](https://github.com/livekit/agents-js/commit/83d75e34d8837029afdbef12e0c4fda5b8b2c3a0), [`818db99`](https://github.com/livekit/agents-js/commit/818db99b394cecd50dc8cffd1dd25a899eff9eb9), [`c4705a7`](https://github.com/livekit/agents-js/commit/c4705a7579f40573a3460976616ba5b0a66e5108), [`54ee51c`](https://github.com/livekit/agents-js/commit/54ee51c99ba5d2c4a9ad9d6389fe34de2c47d92f), [`1be8bef`](https://github.com/livekit/agents-js/commit/1be8bef5f01874d4f880ab01ee21a1171477bb5e), [`a30c5c3`](https://github.com/livekit/agents-js/commit/a30c5c3f421566f4a784696ac5c682c9521033c8), [`7d5a572`](https://github.com/livekit/agents-js/commit/7d5a572393623b9bfd9e472069c6d69fdbf6a017), [`6eca049`](https://github.com/livekit/agents-js/commit/6eca0499fe637ae33078508ad9f0c03bccf1cddb), [`7b6c9f7`](https://github.com/livekit/agents-js/commit/7b6c9f7172097adae850fd436980e5aa6e41ec70), [`03f381c`](https://github.com/livekit/agents-js/commit/03f381c6e4f408ebdb696de3622c88a90b9b56d6), [`78af6b6`](https://github.com/livekit/agents-js/commit/78af6b647e012aa895b2b85bbf50e1703dd50832), [`38490e5`](https://github.com/livekit/agents-js/commit/38490e587edbd92241c2000275f5a0b02fd8f600)]: + - @livekit/agents@1.6.0 + ## 1.5.5 ### Patch Changes diff --git a/plugins/soniox/package.json b/plugins/soniox/package.json index e5cf6b0d23..66b735dc6e 100644 --- a/plugins/soniox/package.json +++ b/plugins/soniox/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-soniox", - "version": "1.5.5", + "version": "1.6.0", "description": "Soniox plugin for LiveKit Agents for Node.js", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/tavus/CHANGELOG.md b/plugins/tavus/CHANGELOG.md index 288bacb02f..81125fbd3f 100644 --- a/plugins/tavus/CHANGELOG.md +++ b/plugins/tavus/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-tavus +## 1.6.0 + +### Patch Changes + +- Updated dependencies [[`83d75e3`](https://github.com/livekit/agents-js/commit/83d75e34d8837029afdbef12e0c4fda5b8b2c3a0), [`818db99`](https://github.com/livekit/agents-js/commit/818db99b394cecd50dc8cffd1dd25a899eff9eb9), [`c4705a7`](https://github.com/livekit/agents-js/commit/c4705a7579f40573a3460976616ba5b0a66e5108), [`54ee51c`](https://github.com/livekit/agents-js/commit/54ee51c99ba5d2c4a9ad9d6389fe34de2c47d92f), [`1be8bef`](https://github.com/livekit/agents-js/commit/1be8bef5f01874d4f880ab01ee21a1171477bb5e), [`a30c5c3`](https://github.com/livekit/agents-js/commit/a30c5c3f421566f4a784696ac5c682c9521033c8), [`7d5a572`](https://github.com/livekit/agents-js/commit/7d5a572393623b9bfd9e472069c6d69fdbf6a017), [`6eca049`](https://github.com/livekit/agents-js/commit/6eca0499fe637ae33078508ad9f0c03bccf1cddb), [`7b6c9f7`](https://github.com/livekit/agents-js/commit/7b6c9f7172097adae850fd436980e5aa6e41ec70), [`03f381c`](https://github.com/livekit/agents-js/commit/03f381c6e4f408ebdb696de3622c88a90b9b56d6), [`78af6b6`](https://github.com/livekit/agents-js/commit/78af6b647e012aa895b2b85bbf50e1703dd50832), [`38490e5`](https://github.com/livekit/agents-js/commit/38490e587edbd92241c2000275f5a0b02fd8f600)]: + - @livekit/agents@1.6.0 + ## 1.5.5 ### Patch Changes diff --git a/plugins/tavus/package.json b/plugins/tavus/package.json index bbf618757e..0cc08e812b 100644 --- a/plugins/tavus/package.json +++ b/plugins/tavus/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-tavus", - "version": "1.5.5", + "version": "1.6.0", "description": "Tavus avatar plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/test/CHANGELOG.md b/plugins/test/CHANGELOG.md index f8908c9974..fca798663b 100644 --- a/plugins/test/CHANGELOG.md +++ b/plugins/test/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugins-test +## 1.6.0 + +### Patch Changes + +- Updated dependencies [[`83d75e3`](https://github.com/livekit/agents-js/commit/83d75e34d8837029afdbef12e0c4fda5b8b2c3a0), [`818db99`](https://github.com/livekit/agents-js/commit/818db99b394cecd50dc8cffd1dd25a899eff9eb9), [`c4705a7`](https://github.com/livekit/agents-js/commit/c4705a7579f40573a3460976616ba5b0a66e5108), [`54ee51c`](https://github.com/livekit/agents-js/commit/54ee51c99ba5d2c4a9ad9d6389fe34de2c47d92f), [`1be8bef`](https://github.com/livekit/agents-js/commit/1be8bef5f01874d4f880ab01ee21a1171477bb5e), [`a30c5c3`](https://github.com/livekit/agents-js/commit/a30c5c3f421566f4a784696ac5c682c9521033c8), [`7d5a572`](https://github.com/livekit/agents-js/commit/7d5a572393623b9bfd9e472069c6d69fdbf6a017), [`6eca049`](https://github.com/livekit/agents-js/commit/6eca0499fe637ae33078508ad9f0c03bccf1cddb), [`7b6c9f7`](https://github.com/livekit/agents-js/commit/7b6c9f7172097adae850fd436980e5aa6e41ec70), [`03f381c`](https://github.com/livekit/agents-js/commit/03f381c6e4f408ebdb696de3622c88a90b9b56d6), [`78af6b6`](https://github.com/livekit/agents-js/commit/78af6b647e012aa895b2b85bbf50e1703dd50832), [`38490e5`](https://github.com/livekit/agents-js/commit/38490e587edbd92241c2000275f5a0b02fd8f600)]: + - @livekit/agents@1.6.0 + ## 1.5.5 ### Patch Changes diff --git a/plugins/test/package.json b/plugins/test/package.json index 61e6c6065d..89c227291c 100644 --- a/plugins/test/package.json +++ b/plugins/test/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugins-test", - "version": "1.5.5", + "version": "1.6.0", "description": "Testing suite for LiveKit Agents plugins", "author": "LiveKit", "type": "module", diff --git a/plugins/trugen/CHANGELOG.md b/plugins/trugen/CHANGELOG.md index 6ae909210a..eca9b8e1db 100644 --- a/plugins/trugen/CHANGELOG.md +++ b/plugins/trugen/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-trugen +## 1.6.0 + +### Patch Changes + +- Updated dependencies [[`83d75e3`](https://github.com/livekit/agents-js/commit/83d75e34d8837029afdbef12e0c4fda5b8b2c3a0), [`818db99`](https://github.com/livekit/agents-js/commit/818db99b394cecd50dc8cffd1dd25a899eff9eb9), [`c4705a7`](https://github.com/livekit/agents-js/commit/c4705a7579f40573a3460976616ba5b0a66e5108), [`54ee51c`](https://github.com/livekit/agents-js/commit/54ee51c99ba5d2c4a9ad9d6389fe34de2c47d92f), [`1be8bef`](https://github.com/livekit/agents-js/commit/1be8bef5f01874d4f880ab01ee21a1171477bb5e), [`a30c5c3`](https://github.com/livekit/agents-js/commit/a30c5c3f421566f4a784696ac5c682c9521033c8), [`7d5a572`](https://github.com/livekit/agents-js/commit/7d5a572393623b9bfd9e472069c6d69fdbf6a017), [`6eca049`](https://github.com/livekit/agents-js/commit/6eca0499fe637ae33078508ad9f0c03bccf1cddb), [`7b6c9f7`](https://github.com/livekit/agents-js/commit/7b6c9f7172097adae850fd436980e5aa6e41ec70), [`03f381c`](https://github.com/livekit/agents-js/commit/03f381c6e4f408ebdb696de3622c88a90b9b56d6), [`78af6b6`](https://github.com/livekit/agents-js/commit/78af6b647e012aa895b2b85bbf50e1703dd50832), [`38490e5`](https://github.com/livekit/agents-js/commit/38490e587edbd92241c2000275f5a0b02fd8f600)]: + - @livekit/agents@1.6.0 + ## 1.5.5 ### Patch Changes diff --git a/plugins/trugen/package.json b/plugins/trugen/package.json index 871971d487..5fb879e9de 100644 --- a/plugins/trugen/package.json +++ b/plugins/trugen/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-trugen", - "version": "1.5.5", + "version": "1.6.0", "description": "Trugen avatar plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/xai/CHANGELOG.md b/plugins/xai/CHANGELOG.md index e59cf955ab..fb5c13f3c8 100644 --- a/plugins/xai/CHANGELOG.md +++ b/plugins/xai/CHANGELOG.md @@ -1,5 +1,15 @@ # @livekit/agents-plugin-xai +## 1.6.0 + +### Patch Changes + +- Expand `GrokVoices` with the canonical lowercase xAI TTS voice list while preserving the existing - [#2111](https://github.com/livekit/agents-js/pull/2111) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + uppercase aliases. +- Updated dependencies [[`83d75e3`](https://github.com/livekit/agents-js/commit/83d75e34d8837029afdbef12e0c4fda5b8b2c3a0), [`818db99`](https://github.com/livekit/agents-js/commit/818db99b394cecd50dc8cffd1dd25a899eff9eb9), [`c4705a7`](https://github.com/livekit/agents-js/commit/c4705a7579f40573a3460976616ba5b0a66e5108), [`54ee51c`](https://github.com/livekit/agents-js/commit/54ee51c99ba5d2c4a9ad9d6389fe34de2c47d92f), [`1be8bef`](https://github.com/livekit/agents-js/commit/1be8bef5f01874d4f880ab01ee21a1171477bb5e), [`a30c5c3`](https://github.com/livekit/agents-js/commit/a30c5c3f421566f4a784696ac5c682c9521033c8), [`7d5a572`](https://github.com/livekit/agents-js/commit/7d5a572393623b9bfd9e472069c6d69fdbf6a017), [`6eca049`](https://github.com/livekit/agents-js/commit/6eca0499fe637ae33078508ad9f0c03bccf1cddb), [`7b6c9f7`](https://github.com/livekit/agents-js/commit/7b6c9f7172097adae850fd436980e5aa6e41ec70), [`03f381c`](https://github.com/livekit/agents-js/commit/03f381c6e4f408ebdb696de3622c88a90b9b56d6), [`78af6b6`](https://github.com/livekit/agents-js/commit/78af6b647e012aa895b2b85bbf50e1703dd50832), [`38490e5`](https://github.com/livekit/agents-js/commit/38490e587edbd92241c2000275f5a0b02fd8f600)]: + - @livekit/agents@1.6.0 + - @livekit/agents-plugin-openai@1.6.0 + ## 1.5.5 ### Patch Changes diff --git a/plugins/xai/package.json b/plugins/xai/package.json index 135c27bce9..700d19e767 100644 --- a/plugins/xai/package.json +++ b/plugins/xai/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-xai", - "version": "1.5.5", + "version": "1.6.0", "description": "xAI plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs",