diff --git a/.changeset/bright-reports-record.md b/.changeset/bright-reports-record.md deleted file mode 100644 index 336823309..000000000 --- a/.changeset/bright-reports-record.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': patch ---- - -Include resolved recording options under session report options instead of as a top-level field. diff --git a/.changeset/calm-replies-wait.md b/.changeset/calm-replies-wait.md deleted file mode 100644 index 4aa6af33f..000000000 --- a/.changeset/calm-replies-wait.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': patch ---- - -Use the active agent endpointing delay while holding pending replies during user speech. diff --git a/.changeset/calm-tokens-rest.md b/.changeset/calm-tokens-rest.md deleted file mode 100644 index 81750d1f0..000000000 --- a/.changeset/calm-tokens-rest.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': patch ---- - -Default null token counts in OpenAI-compatible streaming usage payloads to zero. diff --git a/.changeset/chat-context-remove.md b/.changeset/chat-context-remove.md deleted file mode 100644 index 2ebb07451..000000000 --- a/.changeset/chat-context-remove.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': patch ---- - -Add `ChatContext.remove()` for removing chat items by item or ID. diff --git a/.changeset/first-retry-interval-milliseconds.md b/.changeset/first-retry-interval-milliseconds.md deleted file mode 100644 index ba6320f03..000000000 --- a/.changeset/first-retry-interval-milliseconds.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -'@livekit/agents': patch ---- - -fix: wait 100ms before the first retry, not 0.1ms - -`intervalForRetry` returned `0.1` for the first retry — Python's 0.1 _seconds_, carried over -without converting to the milliseconds every caller passes to `setTimeout`/`delay`. Its other -branch returns `retryIntervalMs`, so the two return paths were in different units. Measured, -the first retry waited ~3ms (scheduling overhead alone) against Python's 100ms. - -This affects every retrying component — LLM, STT, TTS, avatars, and the turn-detector -transport — where a first retry reattempted essentially instantly. diff --git a/.changeset/fuzzy-taxis-listen.md b/.changeset/fuzzy-taxis-listen.md deleted file mode 100644 index 385ee7252..000000000 --- a/.changeset/fuzzy-taxis-listen.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents-plugin-openai': patch ---- - -Support context hints and code-switched language lists in OpenAI STT. diff --git a/.changeset/fuzzy-tools-write.md b/.changeset/fuzzy-tools-write.md deleted file mode 100644 index 9d91c930c..000000000 --- a/.changeset/fuzzy-tools-write.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@livekit/agents': patch -'@livekit/agents-plugin-anthropic': patch ---- - -Expose prompt-cache creation token counts in LLM metrics and model usage. diff --git a/.changeset/llm-retryable-content-only.md b/.changeset/llm-retryable-content-only.md deleted file mode 100644 index aad6a7fa5..000000000 --- a/.changeset/llm-retryable-content-only.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -'@livekit/agents': patch ---- - -fix(inference): keep a stream retryable until it emits generation - -`retryable` was cleared by any chunk reaching the caller, including ones that carry no -output: a usage block, or provider metadata such as the LiveKit inference gateway's -deployment/tier stamp or a Gemini thought signature. The gateway stamps its leading -(contentless) delta, so every streamed response went unretryable from its first chunk — a -mid-stream stall then failed the turn outright rather than retrying, with nothing generated -and nothing for a retry to duplicate. Only failures landing before the very first chunk -still recovered. - -`retryable` is now cleared on text or a tool call, the output a retry would actually repeat. diff --git a/.changeset/llm-ttft-measures-generation.md b/.changeset/llm-ttft-measures-generation.md deleted file mode 100644 index e8bebbb4f..000000000 --- a/.changeset/llm-ttft-measures-generation.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -'@livekit/agents': patch ---- - -fix(llm): measure ttft against generation, not the first chunk to arrive - -The time-to-first-token clock started on whatever chunk arrived first. That was harmless -while a stream went unretryable at its first chunk, because a retry then implied nothing had -arrived. Now that a contentless chunk keeps a stream retryable, the metadata chunk of a -_failed_ attempt starts the clock, and the turn reports a near-zero ttft for a wait that -spanned a stall and a retry — so retried turns read as faster than a normal one rather than -slower. - -The clock now starts on generation, in both the metrics monitor and the voice pipeline's -span. A response that generates nothing continues to report `ttftMs` as -1. diff --git a/.changeset/low-inference-priority.md b/.changeset/low-inference-priority.md deleted file mode 100644 index 2c3f1f9a7..000000000 --- a/.changeset/low-inference-priority.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': patch ---- - -Support low-priority LiveKit inference requests. diff --git a/.changeset/lucky-moons-sing.md b/.changeset/lucky-moons-sing.md deleted file mode 100644 index 51e6bdf17..000000000 --- a/.changeset/lucky-moons-sing.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': patch ---- - -Add expressive mode: `AgentSession({ expressive: true })` injects the TTS provider's markup guide into the LLM prompt so the model emits inline `` delivery markers (emotion, pacing, non-verbal sounds). The markers are lowered to each provider's native syntax before synthesis (Cartesia, Inworld TTS 2, xAI, Fish Audio) and stripped from transcripts, with the segment's leading expression surfaced as the `lk.expression` transcription attribute. Steer delivery with `ExpressiveOptions.speechSteering` or override the injected prompt entirely. diff --git a/.changeset/metal-workers-exit.md b/.changeset/metal-workers-exit.md deleted file mode 100644 index b628ffa23..000000000 --- a/.changeset/metal-workers-exit.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@livekit/agents": patch ---- - -Fix worker cleanup after LiveKit connection retries are exhausted. diff --git a/.changeset/openai-realtime-truncate-delete.md b/.changeset/openai-realtime-truncate-delete.md deleted file mode 100644 index e98ede192..000000000 --- a/.changeset/openai-realtime-truncate-delete.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents-plugin-openai': patch ---- - -fix(openai): delete the realtime item instead of truncating it when no audio played diff --git a/.changeset/quiet-speeches-rest.md b/.changeset/quiet-speeches-rest.md deleted file mode 100644 index 3371aaafa..000000000 --- a/.changeset/quiet-speeches-rest.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': patch ---- - -Avoid throwing when interrupting protected speech that was already interrupted or completed. diff --git a/.changeset/responses-retryable-content-only.md b/.changeset/responses-retryable-content-only.md deleted file mode 100644 index c369d2568..000000000 --- a/.changeset/responses-retryable-content-only.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -'@livekit/agents-plugin-openai': patch ---- - -fix(openai): keep a Responses stream retryable until it emits generation - -`retryable` was cleared by every event the HTTP stream processed, including events that -emit no chunk at all. `response.created` opens every stream, so a Responses request went -unretryable from its first event regardless of provider — a mid-stream stall then failed -the turn outright with nothing generated and nothing for a retry to duplicate. The -WebSocket path had the mirror defect: it never cleared `retryable`, so a socket dropping -after text had already streamed retried and regenerated it. - -Both paths now clear `retryable` on text or a tool call, the output a retry would actually -repeat. The phase marker and the usage-bearing completion event are not. diff --git a/.changeset/soft-plays-wait.md b/.changeset/soft-plays-wait.md deleted file mode 100644 index 2dfab9c1d..000000000 --- a/.changeset/soft-plays-wait.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': patch ---- - -Hold pending agent replies when user speech overlaps their playout launch. diff --git a/.changeset/soniox-usage-cadence.md b/.changeset/soniox-usage-cadence.md deleted file mode 100644 index 35681bb75..000000000 --- a/.changeset/soniox-usage-cadence.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents-plugin-soniox': patch ---- - -Report recognition usage on every Soniox response frame so processed audio is not dropped when no endpoint is emitted. diff --git a/.changeset/stream-terminal-failure-rejection.md b/.changeset/stream-terminal-failure-rejection.md deleted file mode 100644 index 5cf171390..000000000 --- a/.changeset/stream-terminal-failure-rejection.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -'@livekit/agents': patch ---- - -fix(agents): stop a terminally failed stream leaving an unhandled rejection - -`LLMStream` and `STTStream` dropped the promise from their fire-and-forget main task, so a -stream that exhausted its retries rejected with no handler attached — reaching the job -process's `unhandledRejection` hook as a spurious crash report for a failure already -delivered through the `error` event, and failing any test run that exercises the path. - -The task is now awaited inside a `try`/`finally` that closes the queue either way, matching -what `TTSStream` already does. diff --git a/.changeset/tidy-bears-resume.md b/.changeset/tidy-bears-resume.md deleted file mode 100644 index a4fcc0bbe..000000000 --- a/.changeset/tidy-bears-resume.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -'@livekit/agents': patch ---- - -Avoid dropping realtime turns or resuming agent speech before a paused turn decision settles. - -A turn decision that is cancelled no longer resumes the paused speech, and one that fails no -longer leaves the agent's audio output paused indefinitely. diff --git a/.changeset/tidy-consts-rest.md b/.changeset/tidy-consts-rest.md deleted file mode 100644 index 8f7c178d5..000000000 --- a/.changeset/tidy-consts-rest.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': patch ---- - -Keep defaulted const fields non-nullable in strict tool schemas. diff --git a/.changeset/tidy-speeches-wait.md b/.changeset/tidy-speeches-wait.md deleted file mode 100644 index ffc57db59..000000000 --- a/.changeset/tidy-speeches-wait.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@livekit/agents': patch ---- - -Stop interrupting queued speech at the first live speech that disallows interruptions, preserving -it and the queued speech behind it. diff --git a/.changeset/tidy-stars-speak.md b/.changeset/tidy-stars-speak.md deleted file mode 100644 index 6cede117d..000000000 --- a/.changeset/tidy-stars-speak.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': patch ---- - -Strip markdown emphasis from CJK, kana, Thai, and Korean text before TTS. diff --git a/.changeset/tough-years-smile.md b/.changeset/tough-years-smile.md deleted file mode 100644 index 112c6c62b..000000000 --- a/.changeset/tough-years-smile.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents-plugin-silero': patch ---- - -Update the bundled Silero VAD checkpoint to v6.2. diff --git a/.changeset/two-rivers-open.md b/.changeset/two-rivers-open.md deleted file mode 100644 index 51f3ba2de..000000000 --- a/.changeset/two-rivers-open.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@livekit/agents": patch ---- - -fix: omit interruption telemetry from normal user turns diff --git a/.changeset/update-cerebras-models.md b/.changeset/update-cerebras-models.md deleted file mode 100644 index 3c760f82b..000000000 --- a/.changeset/update-cerebras-models.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@livekit/agents-plugin-cerebras': patch -'@livekit/agents-plugin-openai': patch ---- - -Update the Cerebras model catalog and default to currently available models. diff --git a/.changeset/xai-final-transcript.md b/.changeset/xai-final-transcript.md deleted file mode 100644 index 5389d876e..000000000 --- a/.changeset/xai-final-transcript.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@livekit/agents-plugin-openai': patch -'@livekit/agents-plugin-xai': patch ---- - -Emit one final xAI user transcript per turn and settle rejected realtime chat context updates. diff --git a/.changeset/xai-interim-transcripts.md b/.changeset/xai-interim-transcripts.md deleted file mode 100644 index ec285bc03..000000000 --- a/.changeset/xai-interim-transcripts.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents-plugin-xai': patch ---- - -Emit interim input audio transcripts for xAI realtime in-progress transcription events. diff --git a/.changeset/yummy-cows-return.md b/.changeset/yummy-cows-return.md deleted file mode 100644 index 5ae20f1f6..000000000 --- a/.changeset/yummy-cows-return.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents-plugin-elevenlabs': patch ---- - -add enableLogging diff --git a/agents/CHANGELOG.md b/agents/CHANGELOG.md index 23368651d..cdf97ae30 100644 --- a/agents/CHANGELOG.md +++ b/agents/CHANGELOG.md @@ -1,5 +1,87 @@ # @livekit/agents +## 1.6.3 + +### Patch Changes + +- Include resolved recording options under session report options instead of as a top-level field. - [#2274](https://github.com/livekit/agents-js/pull/2274) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- Use the active agent endpointing delay while holding pending replies during user speech. - [#2276](https://github.com/livekit/agents-js/pull/2276) ([@chenghao-mou](https://github.com/chenghao-mou)) + +- Default null token counts in OpenAI-compatible streaming usage payloads to zero. - [#2250](https://github.com/livekit/agents-js/pull/2250) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- Add `ChatContext.remove()` for removing chat items by item or ID. - [#1963](https://github.com/livekit/agents-js/pull/1963) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- fix: wait 100ms before the first retry, not 0.1ms - [#2219](https://github.com/livekit/agents-js/pull/2219) ([@u9g](https://github.com/u9g)) + + `intervalForRetry` returned `0.1` for the first retry — Python's 0.1 _seconds_, carried over + without converting to the milliseconds every caller passes to `setTimeout`/`delay`. Its other + branch returns `retryIntervalMs`, so the two return paths were in different units. Measured, + the first retry waited ~3ms (scheduling overhead alone) against Python's 100ms. + + This affects every retrying component — LLM, STT, TTS, avatars, and the turn-detector + transport — where a first retry reattempted essentially instantly. + +- Expose prompt-cache creation token counts in LLM metrics and model usage. - [#2257](https://github.com/livekit/agents-js/pull/2257) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- fix(inference): keep a stream retryable until it emits generation - [#2219](https://github.com/livekit/agents-js/pull/2219) ([@u9g](https://github.com/u9g)) + + `retryable` was cleared by any chunk reaching the caller, including ones that carry no + output: a usage block, or provider metadata such as the LiveKit inference gateway's + deployment/tier stamp or a Gemini thought signature. The gateway stamps its leading + (contentless) delta, so every streamed response went unretryable from its first chunk — a + mid-stream stall then failed the turn outright rather than retrying, with nothing generated + and nothing for a retry to duplicate. Only failures landing before the very first chunk + still recovered. + + `retryable` is now cleared on text or a tool call, the output a retry would actually repeat. + +- fix(llm): measure ttft against generation, not the first chunk to arrive - [#2219](https://github.com/livekit/agents-js/pull/2219) ([@u9g](https://github.com/u9g)) + + The time-to-first-token clock started on whatever chunk arrived first. That was harmless + while a stream went unretryable at its first chunk, because a retry then implied nothing had + arrived. Now that a contentless chunk keeps a stream retryable, the metadata chunk of a + _failed_ attempt starts the clock, and the turn reports a near-zero ttft for a wait that + spanned a stall and a retry — so retried turns read as faster than a normal one rather than + slower. + + The clock now starts on generation, in both the metrics monitor and the voice pipeline's + span. A response that generates nothing continues to report `ttftMs` as -1. + +- Support low-priority LiveKit inference requests. - [#2268](https://github.com/livekit/agents-js/pull/2268) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- Add expressive mode: `AgentSession({ expressive: true })` injects the TTS provider's markup guide into the LLM prompt so the model emits inline `` delivery markers (emotion, pacing, non-verbal sounds). The markers are lowered to each provider's native syntax before synthesis (Cartesia, Inworld TTS 2, xAI, Fish Audio) and stripped from transcripts, with the segment's leading expression surfaced as the `lk.expression` transcription attribute. Steer delivery with `ExpressiveOptions.speechSteering` or override the injected prompt entirely. - [#2267](https://github.com/livekit/agents-js/pull/2267) ([@tinalenguyen](https://github.com/tinalenguyen)) + +- Fix worker cleanup after LiveKit connection retries are exhausted. - [#1889](https://github.com/livekit/agents-js/pull/1889) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- Avoid throwing when interrupting protected speech that was already interrupted or completed. - [#2252](https://github.com/livekit/agents-js/pull/2252) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- Hold pending agent replies when user speech overlaps their playout launch. - [#2263](https://github.com/livekit/agents-js/pull/2263) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- fix(agents): stop a terminally failed stream leaving an unhandled rejection - [#2219](https://github.com/livekit/agents-js/pull/2219) ([@u9g](https://github.com/u9g)) + + `LLMStream` and `STTStream` dropped the promise from their fire-and-forget main task, so a + stream that exhausted its retries rejected with no handler attached — reaching the job + process's `unhandledRejection` hook as a spurious crash report for a failure already + delivered through the `error` event, and failing any test run that exercises the path. + + The task is now awaited inside a `try`/`finally` that closes the queue either way, matching + what `TTSStream` already does. + +- Avoid dropping realtime turns or resuming agent speech before a paused turn decision settles. - [#2204](https://github.com/livekit/agents-js/pull/2204) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + + A turn decision that is cancelled no longer resumes the paused speech, and one that fails no + longer leaves the agent's audio output paused indefinitely. + +- Keep defaulted const fields non-nullable in strict tool schemas. - [#2262](https://github.com/livekit/agents-js/pull/2262) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- Stop interrupting queued speech at the first live speech that disallows interruptions, preserving - [#2251](https://github.com/livekit/agents-js/pull/2251) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + it and the queued speech behind it. + +- Strip markdown emphasis from CJK, kana, Thai, and Korean text before TTS. - [#2175](https://github.com/livekit/agents-js/pull/2175) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- fix: omit interruption telemetry from normal user turns - [#2265](https://github.com/livekit/agents-js/pull/2265) ([@chenghao-mou](https://github.com/chenghao-mou)) + ## 1.6.2 ### Patch Changes diff --git a/agents/package.json b/agents/package.json index 14193337a..7fd09db99 100644 --- a/agents/package.json +++ b/agents/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents", - "version": "1.6.2", + "version": "1.6.3", "description": "LiveKit Agents - Node.js", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/anam/CHANGELOG.md b/plugins/anam/CHANGELOG.md index d74710509..66b88b07d 100644 --- a/plugins/anam/CHANGELOG.md +++ b/plugins/anam/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-anam +## 1.6.3 + +### Patch Changes + +- Updated dependencies [[`127b100`](https://github.com/livekit/agents-js/commit/127b10037ad405f89ba423c8f6b425106272021b), [`5ed9d72`](https://github.com/livekit/agents-js/commit/5ed9d7289f7ae73976378c21d3b1c7c4627f08d1), [`7e9f46e`](https://github.com/livekit/agents-js/commit/7e9f46ef021700279db1c16ef652354239ffec92), [`4b35349`](https://github.com/livekit/agents-js/commit/4b353492f903c4bce34c917ec27ec4750ece122d), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`98831f7`](https://github.com/livekit/agents-js/commit/98831f71d5dbdb94c9722e87aaa5ab07ba2a3525), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`57e017d`](https://github.com/livekit/agents-js/commit/57e017d3838656679caf0fff22229ca54afcd132), [`7e36727`](https://github.com/livekit/agents-js/commit/7e367279cb62c608e25b844a1dc16914583310a1), [`355718b`](https://github.com/livekit/agents-js/commit/355718be277e1138b63013577aabebc1e8043728), [`ed706fa`](https://github.com/livekit/agents-js/commit/ed706fa3fe69bc5289fe2d73c536d567fab3ad2d), [`5c8cd1e`](https://github.com/livekit/agents-js/commit/5c8cd1e76d39186ef23674e0bcc621bc9c143b27), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`b16f198`](https://github.com/livekit/agents-js/commit/b16f1984dc58b2117050647f51d0a1ad654d6504), [`54edf88`](https://github.com/livekit/agents-js/commit/54edf88dd173c825eb6ced25170e950c9d7845d6), [`4c08ddb`](https://github.com/livekit/agents-js/commit/4c08ddbcbc7e230f00512606fb00b53206e6b76b), [`4d46bcf`](https://github.com/livekit/agents-js/commit/4d46bcfd4a555e2a42abb1c9ee7cd2e44a666641), [`15932fa`](https://github.com/livekit/agents-js/commit/15932fa403d98ca4e93bef8bd453b83e5e453c0c)]: + - @livekit/agents@1.6.3 + ## 1.6.2 ### Patch Changes diff --git a/plugins/anam/package.json b/plugins/anam/package.json index 70dee749b..6134ca746 100644 --- a/plugins/anam/package.json +++ b/plugins/anam/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-anam", - "version": "1.6.2", + "version": "1.6.3", "description": "Anam plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/anthropic/CHANGELOG.md b/plugins/anthropic/CHANGELOG.md index 81ae4ebb4..cc410bbaf 100644 --- a/plugins/anthropic/CHANGELOG.md +++ b/plugins/anthropic/CHANGELOG.md @@ -1,5 +1,14 @@ # @livekit/agents-plugin-anthropic +## 1.6.3 + +### Patch Changes + +- Expose prompt-cache creation token counts in LLM metrics and model usage. - [#2257](https://github.com/livekit/agents-js/pull/2257) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- Updated dependencies [[`127b100`](https://github.com/livekit/agents-js/commit/127b10037ad405f89ba423c8f6b425106272021b), [`5ed9d72`](https://github.com/livekit/agents-js/commit/5ed9d7289f7ae73976378c21d3b1c7c4627f08d1), [`7e9f46e`](https://github.com/livekit/agents-js/commit/7e9f46ef021700279db1c16ef652354239ffec92), [`4b35349`](https://github.com/livekit/agents-js/commit/4b353492f903c4bce34c917ec27ec4750ece122d), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`98831f7`](https://github.com/livekit/agents-js/commit/98831f71d5dbdb94c9722e87aaa5ab07ba2a3525), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`57e017d`](https://github.com/livekit/agents-js/commit/57e017d3838656679caf0fff22229ca54afcd132), [`7e36727`](https://github.com/livekit/agents-js/commit/7e367279cb62c608e25b844a1dc16914583310a1), [`355718b`](https://github.com/livekit/agents-js/commit/355718be277e1138b63013577aabebc1e8043728), [`ed706fa`](https://github.com/livekit/agents-js/commit/ed706fa3fe69bc5289fe2d73c536d567fab3ad2d), [`5c8cd1e`](https://github.com/livekit/agents-js/commit/5c8cd1e76d39186ef23674e0bcc621bc9c143b27), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`b16f198`](https://github.com/livekit/agents-js/commit/b16f1984dc58b2117050647f51d0a1ad654d6504), [`54edf88`](https://github.com/livekit/agents-js/commit/54edf88dd173c825eb6ced25170e950c9d7845d6), [`4c08ddb`](https://github.com/livekit/agents-js/commit/4c08ddbcbc7e230f00512606fb00b53206e6b76b), [`4d46bcf`](https://github.com/livekit/agents-js/commit/4d46bcfd4a555e2a42abb1c9ee7cd2e44a666641), [`15932fa`](https://github.com/livekit/agents-js/commit/15932fa403d98ca4e93bef8bd453b83e5e453c0c)]: + - @livekit/agents@1.6.3 + ## 1.6.2 ### Patch Changes diff --git a/plugins/anthropic/package.json b/plugins/anthropic/package.json index 31657319e..6a7753dcb 100644 --- a/plugins/anthropic/package.json +++ b/plugins/anthropic/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-anthropic", - "version": "1.6.2", + "version": "1.6.3", "description": "Anthropic plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/assemblyai/CHANGELOG.md b/plugins/assemblyai/CHANGELOG.md index 34774230d..ea309df6f 100644 --- a/plugins/assemblyai/CHANGELOG.md +++ b/plugins/assemblyai/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-assemblyai +## 1.6.3 + +### Patch Changes + +- Updated dependencies [[`127b100`](https://github.com/livekit/agents-js/commit/127b10037ad405f89ba423c8f6b425106272021b), [`5ed9d72`](https://github.com/livekit/agents-js/commit/5ed9d7289f7ae73976378c21d3b1c7c4627f08d1), [`7e9f46e`](https://github.com/livekit/agents-js/commit/7e9f46ef021700279db1c16ef652354239ffec92), [`4b35349`](https://github.com/livekit/agents-js/commit/4b353492f903c4bce34c917ec27ec4750ece122d), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`98831f7`](https://github.com/livekit/agents-js/commit/98831f71d5dbdb94c9722e87aaa5ab07ba2a3525), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`57e017d`](https://github.com/livekit/agents-js/commit/57e017d3838656679caf0fff22229ca54afcd132), [`7e36727`](https://github.com/livekit/agents-js/commit/7e367279cb62c608e25b844a1dc16914583310a1), [`355718b`](https://github.com/livekit/agents-js/commit/355718be277e1138b63013577aabebc1e8043728), [`ed706fa`](https://github.com/livekit/agents-js/commit/ed706fa3fe69bc5289fe2d73c536d567fab3ad2d), [`5c8cd1e`](https://github.com/livekit/agents-js/commit/5c8cd1e76d39186ef23674e0bcc621bc9c143b27), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`b16f198`](https://github.com/livekit/agents-js/commit/b16f1984dc58b2117050647f51d0a1ad654d6504), [`54edf88`](https://github.com/livekit/agents-js/commit/54edf88dd173c825eb6ced25170e950c9d7845d6), [`4c08ddb`](https://github.com/livekit/agents-js/commit/4c08ddbcbc7e230f00512606fb00b53206e6b76b), [`4d46bcf`](https://github.com/livekit/agents-js/commit/4d46bcfd4a555e2a42abb1c9ee7cd2e44a666641), [`15932fa`](https://github.com/livekit/agents-js/commit/15932fa403d98ca4e93bef8bd453b83e5e453c0c)]: + - @livekit/agents@1.6.3 + ## 1.6.2 ### Patch Changes diff --git a/plugins/assemblyai/package.json b/plugins/assemblyai/package.json index e9dedad2c..d9eaf51ab 100644 --- a/plugins/assemblyai/package.json +++ b/plugins/assemblyai/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-assemblyai", - "version": "1.6.2", + "version": "1.6.3", "description": "AssemblyAI plugin for LiveKit Agents for Node.js", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/azure/CHANGELOG.md b/plugins/azure/CHANGELOG.md index 695cec469..4617d3f4f 100644 --- a/plugins/azure/CHANGELOG.md +++ b/plugins/azure/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-azure +## 1.6.3 + +### Patch Changes + +- Updated dependencies [[`127b100`](https://github.com/livekit/agents-js/commit/127b10037ad405f89ba423c8f6b425106272021b), [`5ed9d72`](https://github.com/livekit/agents-js/commit/5ed9d7289f7ae73976378c21d3b1c7c4627f08d1), [`7e9f46e`](https://github.com/livekit/agents-js/commit/7e9f46ef021700279db1c16ef652354239ffec92), [`4b35349`](https://github.com/livekit/agents-js/commit/4b353492f903c4bce34c917ec27ec4750ece122d), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`98831f7`](https://github.com/livekit/agents-js/commit/98831f71d5dbdb94c9722e87aaa5ab07ba2a3525), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`57e017d`](https://github.com/livekit/agents-js/commit/57e017d3838656679caf0fff22229ca54afcd132), [`7e36727`](https://github.com/livekit/agents-js/commit/7e367279cb62c608e25b844a1dc16914583310a1), [`355718b`](https://github.com/livekit/agents-js/commit/355718be277e1138b63013577aabebc1e8043728), [`ed706fa`](https://github.com/livekit/agents-js/commit/ed706fa3fe69bc5289fe2d73c536d567fab3ad2d), [`5c8cd1e`](https://github.com/livekit/agents-js/commit/5c8cd1e76d39186ef23674e0bcc621bc9c143b27), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`b16f198`](https://github.com/livekit/agents-js/commit/b16f1984dc58b2117050647f51d0a1ad654d6504), [`54edf88`](https://github.com/livekit/agents-js/commit/54edf88dd173c825eb6ced25170e950c9d7845d6), [`4c08ddb`](https://github.com/livekit/agents-js/commit/4c08ddbcbc7e230f00512606fb00b53206e6b76b), [`4d46bcf`](https://github.com/livekit/agents-js/commit/4d46bcfd4a555e2a42abb1c9ee7cd2e44a666641), [`15932fa`](https://github.com/livekit/agents-js/commit/15932fa403d98ca4e93bef8bd453b83e5e453c0c)]: + - @livekit/agents@1.6.3 + ## 1.6.2 ### Patch Changes diff --git a/plugins/azure/package.json b/plugins/azure/package.json index 64b992f74..ec48802ec 100644 --- a/plugins/azure/package.json +++ b/plugins/azure/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-azure", - "version": "1.6.2", + "version": "1.6.3", "description": "Azure plugin for LiveKit Agents for Node.js", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/baseten/CHANGELOG.md b/plugins/baseten/CHANGELOG.md index ccaf55cf4..247ed62e0 100644 --- a/plugins/baseten/CHANGELOG.md +++ b/plugins/baseten/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-baseten +## 1.6.3 + +### Patch Changes + +- Updated dependencies [[`127b100`](https://github.com/livekit/agents-js/commit/127b10037ad405f89ba423c8f6b425106272021b), [`5ed9d72`](https://github.com/livekit/agents-js/commit/5ed9d7289f7ae73976378c21d3b1c7c4627f08d1), [`7e9f46e`](https://github.com/livekit/agents-js/commit/7e9f46ef021700279db1c16ef652354239ffec92), [`4b35349`](https://github.com/livekit/agents-js/commit/4b353492f903c4bce34c917ec27ec4750ece122d), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`98831f7`](https://github.com/livekit/agents-js/commit/98831f71d5dbdb94c9722e87aaa5ab07ba2a3525), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`57e017d`](https://github.com/livekit/agents-js/commit/57e017d3838656679caf0fff22229ca54afcd132), [`7e36727`](https://github.com/livekit/agents-js/commit/7e367279cb62c608e25b844a1dc16914583310a1), [`355718b`](https://github.com/livekit/agents-js/commit/355718be277e1138b63013577aabebc1e8043728), [`ed706fa`](https://github.com/livekit/agents-js/commit/ed706fa3fe69bc5289fe2d73c536d567fab3ad2d), [`5c8cd1e`](https://github.com/livekit/agents-js/commit/5c8cd1e76d39186ef23674e0bcc621bc9c143b27), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`b16f198`](https://github.com/livekit/agents-js/commit/b16f1984dc58b2117050647f51d0a1ad654d6504), [`54edf88`](https://github.com/livekit/agents-js/commit/54edf88dd173c825eb6ced25170e950c9d7845d6), [`4c08ddb`](https://github.com/livekit/agents-js/commit/4c08ddbcbc7e230f00512606fb00b53206e6b76b), [`4d46bcf`](https://github.com/livekit/agents-js/commit/4d46bcfd4a555e2a42abb1c9ee7cd2e44a666641), [`15932fa`](https://github.com/livekit/agents-js/commit/15932fa403d98ca4e93bef8bd453b83e5e453c0c)]: + - @livekit/agents@1.6.3 + ## 1.6.2 ### Patch Changes diff --git a/plugins/baseten/package.json b/plugins/baseten/package.json index 67e444c06..03c6626d7 100644 --- a/plugins/baseten/package.json +++ b/plugins/baseten/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-baseten", - "version": "1.6.2", + "version": "1.6.3", "description": "Baseten plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/bey/CHANGELOG.md b/plugins/bey/CHANGELOG.md index 9b2c0d06e..044e65a08 100644 --- a/plugins/bey/CHANGELOG.md +++ b/plugins/bey/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-bey +## 1.6.3 + +### Patch Changes + +- Updated dependencies [[`127b100`](https://github.com/livekit/agents-js/commit/127b10037ad405f89ba423c8f6b425106272021b), [`5ed9d72`](https://github.com/livekit/agents-js/commit/5ed9d7289f7ae73976378c21d3b1c7c4627f08d1), [`7e9f46e`](https://github.com/livekit/agents-js/commit/7e9f46ef021700279db1c16ef652354239ffec92), [`4b35349`](https://github.com/livekit/agents-js/commit/4b353492f903c4bce34c917ec27ec4750ece122d), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`98831f7`](https://github.com/livekit/agents-js/commit/98831f71d5dbdb94c9722e87aaa5ab07ba2a3525), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`57e017d`](https://github.com/livekit/agents-js/commit/57e017d3838656679caf0fff22229ca54afcd132), [`7e36727`](https://github.com/livekit/agents-js/commit/7e367279cb62c608e25b844a1dc16914583310a1), [`355718b`](https://github.com/livekit/agents-js/commit/355718be277e1138b63013577aabebc1e8043728), [`ed706fa`](https://github.com/livekit/agents-js/commit/ed706fa3fe69bc5289fe2d73c536d567fab3ad2d), [`5c8cd1e`](https://github.com/livekit/agents-js/commit/5c8cd1e76d39186ef23674e0bcc621bc9c143b27), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`b16f198`](https://github.com/livekit/agents-js/commit/b16f1984dc58b2117050647f51d0a1ad654d6504), [`54edf88`](https://github.com/livekit/agents-js/commit/54edf88dd173c825eb6ced25170e950c9d7845d6), [`4c08ddb`](https://github.com/livekit/agents-js/commit/4c08ddbcbc7e230f00512606fb00b53206e6b76b), [`4d46bcf`](https://github.com/livekit/agents-js/commit/4d46bcfd4a555e2a42abb1c9ee7cd2e44a666641), [`15932fa`](https://github.com/livekit/agents-js/commit/15932fa403d98ca4e93bef8bd453b83e5e453c0c)]: + - @livekit/agents@1.6.3 + ## 1.6.2 ### Patch Changes diff --git a/plugins/bey/package.json b/plugins/bey/package.json index 1199ad3be..c964e7719 100644 --- a/plugins/bey/package.json +++ b/plugins/bey/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-bey", - "version": "1.6.2", + "version": "1.6.3", "description": "Beyond Presence plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/cartesia/CHANGELOG.md b/plugins/cartesia/CHANGELOG.md index ab775234c..6a2424aba 100644 --- a/plugins/cartesia/CHANGELOG.md +++ b/plugins/cartesia/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-cartesia +## 1.6.3 + +### Patch Changes + +- Updated dependencies [[`127b100`](https://github.com/livekit/agents-js/commit/127b10037ad405f89ba423c8f6b425106272021b), [`5ed9d72`](https://github.com/livekit/agents-js/commit/5ed9d7289f7ae73976378c21d3b1c7c4627f08d1), [`7e9f46e`](https://github.com/livekit/agents-js/commit/7e9f46ef021700279db1c16ef652354239ffec92), [`4b35349`](https://github.com/livekit/agents-js/commit/4b353492f903c4bce34c917ec27ec4750ece122d), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`98831f7`](https://github.com/livekit/agents-js/commit/98831f71d5dbdb94c9722e87aaa5ab07ba2a3525), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`57e017d`](https://github.com/livekit/agents-js/commit/57e017d3838656679caf0fff22229ca54afcd132), [`7e36727`](https://github.com/livekit/agents-js/commit/7e367279cb62c608e25b844a1dc16914583310a1), [`355718b`](https://github.com/livekit/agents-js/commit/355718be277e1138b63013577aabebc1e8043728), [`ed706fa`](https://github.com/livekit/agents-js/commit/ed706fa3fe69bc5289fe2d73c536d567fab3ad2d), [`5c8cd1e`](https://github.com/livekit/agents-js/commit/5c8cd1e76d39186ef23674e0bcc621bc9c143b27), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`b16f198`](https://github.com/livekit/agents-js/commit/b16f1984dc58b2117050647f51d0a1ad654d6504), [`54edf88`](https://github.com/livekit/agents-js/commit/54edf88dd173c825eb6ced25170e950c9d7845d6), [`4c08ddb`](https://github.com/livekit/agents-js/commit/4c08ddbcbc7e230f00512606fb00b53206e6b76b), [`4d46bcf`](https://github.com/livekit/agents-js/commit/4d46bcfd4a555e2a42abb1c9ee7cd2e44a666641), [`15932fa`](https://github.com/livekit/agents-js/commit/15932fa403d98ca4e93bef8bd453b83e5e453c0c)]: + - @livekit/agents@1.6.3 + ## 1.6.2 ### Patch Changes diff --git a/plugins/cartesia/package.json b/plugins/cartesia/package.json index 91fa7d814..264cdfda7 100644 --- a/plugins/cartesia/package.json +++ b/plugins/cartesia/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-cartesia", - "version": "1.6.2", + "version": "1.6.3", "description": "Cartesia plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/cerebras/CHANGELOG.md b/plugins/cerebras/CHANGELOG.md index 4ed2ab30e..15e4af1d4 100644 --- a/plugins/cerebras/CHANGELOG.md +++ b/plugins/cerebras/CHANGELOG.md @@ -1,5 +1,15 @@ # @livekit/agents-plugin-cerebras +## 1.6.3 + +### Patch Changes + +- Update the Cerebras model catalog and default to currently available models. - [#2193](https://github.com/livekit/agents-js/pull/2193) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- Updated dependencies [[`127b100`](https://github.com/livekit/agents-js/commit/127b10037ad405f89ba423c8f6b425106272021b), [`5ed9d72`](https://github.com/livekit/agents-js/commit/5ed9d7289f7ae73976378c21d3b1c7c4627f08d1), [`7e9f46e`](https://github.com/livekit/agents-js/commit/7e9f46ef021700279db1c16ef652354239ffec92), [`4b35349`](https://github.com/livekit/agents-js/commit/4b353492f903c4bce34c917ec27ec4750ece122d), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`1a00d8e`](https://github.com/livekit/agents-js/commit/1a00d8e12b5412a8cb8be45691070b3540904010), [`98831f7`](https://github.com/livekit/agents-js/commit/98831f71d5dbdb94c9722e87aaa5ab07ba2a3525), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`57e017d`](https://github.com/livekit/agents-js/commit/57e017d3838656679caf0fff22229ca54afcd132), [`7e36727`](https://github.com/livekit/agents-js/commit/7e367279cb62c608e25b844a1dc16914583310a1), [`355718b`](https://github.com/livekit/agents-js/commit/355718be277e1138b63013577aabebc1e8043728), [`6da9b0a`](https://github.com/livekit/agents-js/commit/6da9b0a53917f726fe5ceac37abebd4df5e253a6), [`ed706fa`](https://github.com/livekit/agents-js/commit/ed706fa3fe69bc5289fe2d73c536d567fab3ad2d), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`5c8cd1e`](https://github.com/livekit/agents-js/commit/5c8cd1e76d39186ef23674e0bcc621bc9c143b27), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`b16f198`](https://github.com/livekit/agents-js/commit/b16f1984dc58b2117050647f51d0a1ad654d6504), [`54edf88`](https://github.com/livekit/agents-js/commit/54edf88dd173c825eb6ced25170e950c9d7845d6), [`4c08ddb`](https://github.com/livekit/agents-js/commit/4c08ddbcbc7e230f00512606fb00b53206e6b76b), [`4d46bcf`](https://github.com/livekit/agents-js/commit/4d46bcfd4a555e2a42abb1c9ee7cd2e44a666641), [`15932fa`](https://github.com/livekit/agents-js/commit/15932fa403d98ca4e93bef8bd453b83e5e453c0c), [`d8f3c51`](https://github.com/livekit/agents-js/commit/d8f3c516ed5dfa4c3d13518b69e1f7fc8f2a12bf), [`3ff013c`](https://github.com/livekit/agents-js/commit/3ff013c0663b776993f1fc63bbb6a439e3fc6bcd)]: + - @livekit/agents@1.6.3 + - @livekit/agents-plugin-openai@1.6.3 + ## 1.6.2 ### Patch Changes diff --git a/plugins/cerebras/package.json b/plugins/cerebras/package.json index d0adcf58b..a8ec049f1 100644 --- a/plugins/cerebras/package.json +++ b/plugins/cerebras/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-cerebras", - "version": "1.6.2", + "version": "1.6.3", "description": "Cerebras plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/deepgram/CHANGELOG.md b/plugins/deepgram/CHANGELOG.md index 8ad35b943..f08101313 100644 --- a/plugins/deepgram/CHANGELOG.md +++ b/plugins/deepgram/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-deepgram +## 1.6.3 + +### Patch Changes + +- Updated dependencies [[`127b100`](https://github.com/livekit/agents-js/commit/127b10037ad405f89ba423c8f6b425106272021b), [`5ed9d72`](https://github.com/livekit/agents-js/commit/5ed9d7289f7ae73976378c21d3b1c7c4627f08d1), [`7e9f46e`](https://github.com/livekit/agents-js/commit/7e9f46ef021700279db1c16ef652354239ffec92), [`4b35349`](https://github.com/livekit/agents-js/commit/4b353492f903c4bce34c917ec27ec4750ece122d), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`98831f7`](https://github.com/livekit/agents-js/commit/98831f71d5dbdb94c9722e87aaa5ab07ba2a3525), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`57e017d`](https://github.com/livekit/agents-js/commit/57e017d3838656679caf0fff22229ca54afcd132), [`7e36727`](https://github.com/livekit/agents-js/commit/7e367279cb62c608e25b844a1dc16914583310a1), [`355718b`](https://github.com/livekit/agents-js/commit/355718be277e1138b63013577aabebc1e8043728), [`ed706fa`](https://github.com/livekit/agents-js/commit/ed706fa3fe69bc5289fe2d73c536d567fab3ad2d), [`5c8cd1e`](https://github.com/livekit/agents-js/commit/5c8cd1e76d39186ef23674e0bcc621bc9c143b27), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`b16f198`](https://github.com/livekit/agents-js/commit/b16f1984dc58b2117050647f51d0a1ad654d6504), [`54edf88`](https://github.com/livekit/agents-js/commit/54edf88dd173c825eb6ced25170e950c9d7845d6), [`4c08ddb`](https://github.com/livekit/agents-js/commit/4c08ddbcbc7e230f00512606fb00b53206e6b76b), [`4d46bcf`](https://github.com/livekit/agents-js/commit/4d46bcfd4a555e2a42abb1c9ee7cd2e44a666641), [`15932fa`](https://github.com/livekit/agents-js/commit/15932fa403d98ca4e93bef8bd453b83e5e453c0c)]: + - @livekit/agents@1.6.3 + ## 1.6.2 ### Patch Changes diff --git a/plugins/deepgram/package.json b/plugins/deepgram/package.json index 419a88243..25f9230b0 100644 --- a/plugins/deepgram/package.json +++ b/plugins/deepgram/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-deepgram", - "version": "1.6.2", + "version": "1.6.3", "description": "Deepgram plugin for LiveKit Agents for Node.js", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/did/CHANGELOG.md b/plugins/did/CHANGELOG.md index 3983e3ddd..4f26015da 100644 --- a/plugins/did/CHANGELOG.md +++ b/plugins/did/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-did +## 1.6.3 + +### Patch Changes + +- Updated dependencies [[`127b100`](https://github.com/livekit/agents-js/commit/127b10037ad405f89ba423c8f6b425106272021b), [`5ed9d72`](https://github.com/livekit/agents-js/commit/5ed9d7289f7ae73976378c21d3b1c7c4627f08d1), [`7e9f46e`](https://github.com/livekit/agents-js/commit/7e9f46ef021700279db1c16ef652354239ffec92), [`4b35349`](https://github.com/livekit/agents-js/commit/4b353492f903c4bce34c917ec27ec4750ece122d), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`98831f7`](https://github.com/livekit/agents-js/commit/98831f71d5dbdb94c9722e87aaa5ab07ba2a3525), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`57e017d`](https://github.com/livekit/agents-js/commit/57e017d3838656679caf0fff22229ca54afcd132), [`7e36727`](https://github.com/livekit/agents-js/commit/7e367279cb62c608e25b844a1dc16914583310a1), [`355718b`](https://github.com/livekit/agents-js/commit/355718be277e1138b63013577aabebc1e8043728), [`ed706fa`](https://github.com/livekit/agents-js/commit/ed706fa3fe69bc5289fe2d73c536d567fab3ad2d), [`5c8cd1e`](https://github.com/livekit/agents-js/commit/5c8cd1e76d39186ef23674e0bcc621bc9c143b27), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`b16f198`](https://github.com/livekit/agents-js/commit/b16f1984dc58b2117050647f51d0a1ad654d6504), [`54edf88`](https://github.com/livekit/agents-js/commit/54edf88dd173c825eb6ced25170e950c9d7845d6), [`4c08ddb`](https://github.com/livekit/agents-js/commit/4c08ddbcbc7e230f00512606fb00b53206e6b76b), [`4d46bcf`](https://github.com/livekit/agents-js/commit/4d46bcfd4a555e2a42abb1c9ee7cd2e44a666641), [`15932fa`](https://github.com/livekit/agents-js/commit/15932fa403d98ca4e93bef8bd453b83e5e453c0c)]: + - @livekit/agents@1.6.3 + ## 1.6.2 ### Patch Changes diff --git a/plugins/did/package.json b/plugins/did/package.json index be7ab5c87..9a75be3f1 100644 --- a/plugins/did/package.json +++ b/plugins/did/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-did", - "version": "1.6.2", + "version": "1.6.3", "description": "D-ID avatar plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/elevenlabs/CHANGELOG.md b/plugins/elevenlabs/CHANGELOG.md index 508a66328..bdae02a38 100644 --- a/plugins/elevenlabs/CHANGELOG.md +++ b/plugins/elevenlabs/CHANGELOG.md @@ -1,5 +1,14 @@ # @livekit/agents-plugin-elevenlabs +## 1.6.3 + +### Patch Changes + +- add enableLogging - [#1975](https://github.com/livekit/agents-js/pull/1975) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- Updated dependencies [[`127b100`](https://github.com/livekit/agents-js/commit/127b10037ad405f89ba423c8f6b425106272021b), [`5ed9d72`](https://github.com/livekit/agents-js/commit/5ed9d7289f7ae73976378c21d3b1c7c4627f08d1), [`7e9f46e`](https://github.com/livekit/agents-js/commit/7e9f46ef021700279db1c16ef652354239ffec92), [`4b35349`](https://github.com/livekit/agents-js/commit/4b353492f903c4bce34c917ec27ec4750ece122d), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`98831f7`](https://github.com/livekit/agents-js/commit/98831f71d5dbdb94c9722e87aaa5ab07ba2a3525), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`57e017d`](https://github.com/livekit/agents-js/commit/57e017d3838656679caf0fff22229ca54afcd132), [`7e36727`](https://github.com/livekit/agents-js/commit/7e367279cb62c608e25b844a1dc16914583310a1), [`355718b`](https://github.com/livekit/agents-js/commit/355718be277e1138b63013577aabebc1e8043728), [`ed706fa`](https://github.com/livekit/agents-js/commit/ed706fa3fe69bc5289fe2d73c536d567fab3ad2d), [`5c8cd1e`](https://github.com/livekit/agents-js/commit/5c8cd1e76d39186ef23674e0bcc621bc9c143b27), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`b16f198`](https://github.com/livekit/agents-js/commit/b16f1984dc58b2117050647f51d0a1ad654d6504), [`54edf88`](https://github.com/livekit/agents-js/commit/54edf88dd173c825eb6ced25170e950c9d7845d6), [`4c08ddb`](https://github.com/livekit/agents-js/commit/4c08ddbcbc7e230f00512606fb00b53206e6b76b), [`4d46bcf`](https://github.com/livekit/agents-js/commit/4d46bcfd4a555e2a42abb1c9ee7cd2e44a666641), [`15932fa`](https://github.com/livekit/agents-js/commit/15932fa403d98ca4e93bef8bd453b83e5e453c0c)]: + - @livekit/agents@1.6.3 + ## 1.6.2 ### Patch Changes diff --git a/plugins/elevenlabs/package.json b/plugins/elevenlabs/package.json index c5561686a..d55d42c1b 100644 --- a/plugins/elevenlabs/package.json +++ b/plugins/elevenlabs/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-elevenlabs", - "version": "1.6.2", + "version": "1.6.3", "description": "ElevenLabs plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/fishaudio/CHANGELOG.md b/plugins/fishaudio/CHANGELOG.md index c7b1355d2..01b0e1d22 100644 --- a/plugins/fishaudio/CHANGELOG.md +++ b/plugins/fishaudio/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-fishaudio +## 1.6.3 + +### Patch Changes + +- Updated dependencies [[`127b100`](https://github.com/livekit/agents-js/commit/127b10037ad405f89ba423c8f6b425106272021b), [`5ed9d72`](https://github.com/livekit/agents-js/commit/5ed9d7289f7ae73976378c21d3b1c7c4627f08d1), [`7e9f46e`](https://github.com/livekit/agents-js/commit/7e9f46ef021700279db1c16ef652354239ffec92), [`4b35349`](https://github.com/livekit/agents-js/commit/4b353492f903c4bce34c917ec27ec4750ece122d), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`98831f7`](https://github.com/livekit/agents-js/commit/98831f71d5dbdb94c9722e87aaa5ab07ba2a3525), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`57e017d`](https://github.com/livekit/agents-js/commit/57e017d3838656679caf0fff22229ca54afcd132), [`7e36727`](https://github.com/livekit/agents-js/commit/7e367279cb62c608e25b844a1dc16914583310a1), [`355718b`](https://github.com/livekit/agents-js/commit/355718be277e1138b63013577aabebc1e8043728), [`ed706fa`](https://github.com/livekit/agents-js/commit/ed706fa3fe69bc5289fe2d73c536d567fab3ad2d), [`5c8cd1e`](https://github.com/livekit/agents-js/commit/5c8cd1e76d39186ef23674e0bcc621bc9c143b27), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`b16f198`](https://github.com/livekit/agents-js/commit/b16f1984dc58b2117050647f51d0a1ad654d6504), [`54edf88`](https://github.com/livekit/agents-js/commit/54edf88dd173c825eb6ced25170e950c9d7845d6), [`4c08ddb`](https://github.com/livekit/agents-js/commit/4c08ddbcbc7e230f00512606fb00b53206e6b76b), [`4d46bcf`](https://github.com/livekit/agents-js/commit/4d46bcfd4a555e2a42abb1c9ee7cd2e44a666641), [`15932fa`](https://github.com/livekit/agents-js/commit/15932fa403d98ca4e93bef8bd453b83e5e453c0c)]: + - @livekit/agents@1.6.3 + ## 1.6.2 ### Patch Changes diff --git a/plugins/fishaudio/package.json b/plugins/fishaudio/package.json index 7f11b312e..96257b879 100644 --- a/plugins/fishaudio/package.json +++ b/plugins/fishaudio/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-fishaudio", - "version": "1.6.2", + "version": "1.6.3", "description": "Fish Audio plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/google/CHANGELOG.md b/plugins/google/CHANGELOG.md index 237ac6ef6..e24915284 100644 --- a/plugins/google/CHANGELOG.md +++ b/plugins/google/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-google +## 1.6.3 + +### Patch Changes + +- Updated dependencies [[`127b100`](https://github.com/livekit/agents-js/commit/127b10037ad405f89ba423c8f6b425106272021b), [`5ed9d72`](https://github.com/livekit/agents-js/commit/5ed9d7289f7ae73976378c21d3b1c7c4627f08d1), [`7e9f46e`](https://github.com/livekit/agents-js/commit/7e9f46ef021700279db1c16ef652354239ffec92), [`4b35349`](https://github.com/livekit/agents-js/commit/4b353492f903c4bce34c917ec27ec4750ece122d), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`98831f7`](https://github.com/livekit/agents-js/commit/98831f71d5dbdb94c9722e87aaa5ab07ba2a3525), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`57e017d`](https://github.com/livekit/agents-js/commit/57e017d3838656679caf0fff22229ca54afcd132), [`7e36727`](https://github.com/livekit/agents-js/commit/7e367279cb62c608e25b844a1dc16914583310a1), [`355718b`](https://github.com/livekit/agents-js/commit/355718be277e1138b63013577aabebc1e8043728), [`ed706fa`](https://github.com/livekit/agents-js/commit/ed706fa3fe69bc5289fe2d73c536d567fab3ad2d), [`5c8cd1e`](https://github.com/livekit/agents-js/commit/5c8cd1e76d39186ef23674e0bcc621bc9c143b27), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`b16f198`](https://github.com/livekit/agents-js/commit/b16f1984dc58b2117050647f51d0a1ad654d6504), [`54edf88`](https://github.com/livekit/agents-js/commit/54edf88dd173c825eb6ced25170e950c9d7845d6), [`4c08ddb`](https://github.com/livekit/agents-js/commit/4c08ddbcbc7e230f00512606fb00b53206e6b76b), [`4d46bcf`](https://github.com/livekit/agents-js/commit/4d46bcfd4a555e2a42abb1c9ee7cd2e44a666641), [`15932fa`](https://github.com/livekit/agents-js/commit/15932fa403d98ca4e93bef8bd453b83e5e453c0c)]: + - @livekit/agents@1.6.3 + ## 1.6.2 ### Patch Changes diff --git a/plugins/google/package.json b/plugins/google/package.json index 3efe6e865..0e7601a06 100644 --- a/plugins/google/package.json +++ b/plugins/google/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-google", - "version": "1.6.2", + "version": "1.6.3", "description": "Google Gemini plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/hedra/CHANGELOG.md b/plugins/hedra/CHANGELOG.md index b4d30fa39..e8b3545ef 100644 --- a/plugins/hedra/CHANGELOG.md +++ b/plugins/hedra/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-hedra +## 1.6.3 + +### Patch Changes + +- Updated dependencies [[`127b100`](https://github.com/livekit/agents-js/commit/127b10037ad405f89ba423c8f6b425106272021b), [`5ed9d72`](https://github.com/livekit/agents-js/commit/5ed9d7289f7ae73976378c21d3b1c7c4627f08d1), [`7e9f46e`](https://github.com/livekit/agents-js/commit/7e9f46ef021700279db1c16ef652354239ffec92), [`4b35349`](https://github.com/livekit/agents-js/commit/4b353492f903c4bce34c917ec27ec4750ece122d), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`98831f7`](https://github.com/livekit/agents-js/commit/98831f71d5dbdb94c9722e87aaa5ab07ba2a3525), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`57e017d`](https://github.com/livekit/agents-js/commit/57e017d3838656679caf0fff22229ca54afcd132), [`7e36727`](https://github.com/livekit/agents-js/commit/7e367279cb62c608e25b844a1dc16914583310a1), [`355718b`](https://github.com/livekit/agents-js/commit/355718be277e1138b63013577aabebc1e8043728), [`ed706fa`](https://github.com/livekit/agents-js/commit/ed706fa3fe69bc5289fe2d73c536d567fab3ad2d), [`5c8cd1e`](https://github.com/livekit/agents-js/commit/5c8cd1e76d39186ef23674e0bcc621bc9c143b27), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`b16f198`](https://github.com/livekit/agents-js/commit/b16f1984dc58b2117050647f51d0a1ad654d6504), [`54edf88`](https://github.com/livekit/agents-js/commit/54edf88dd173c825eb6ced25170e950c9d7845d6), [`4c08ddb`](https://github.com/livekit/agents-js/commit/4c08ddbcbc7e230f00512606fb00b53206e6b76b), [`4d46bcf`](https://github.com/livekit/agents-js/commit/4d46bcfd4a555e2a42abb1c9ee7cd2e44a666641), [`15932fa`](https://github.com/livekit/agents-js/commit/15932fa403d98ca4e93bef8bd453b83e5e453c0c)]: + - @livekit/agents@1.6.3 + ## 1.6.2 ### Patch Changes diff --git a/plugins/hedra/package.json b/plugins/hedra/package.json index b0141abcc..e7beecf4e 100644 --- a/plugins/hedra/package.json +++ b/plugins/hedra/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-hedra", - "version": "1.6.2", + "version": "1.6.3", "description": "Hedra avatar plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/hume/CHANGELOG.md b/plugins/hume/CHANGELOG.md index c4ee7c0b4..e7d3c2a47 100644 --- a/plugins/hume/CHANGELOG.md +++ b/plugins/hume/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-hume +## 1.6.3 + +### Patch Changes + +- Updated dependencies [[`127b100`](https://github.com/livekit/agents-js/commit/127b10037ad405f89ba423c8f6b425106272021b), [`5ed9d72`](https://github.com/livekit/agents-js/commit/5ed9d7289f7ae73976378c21d3b1c7c4627f08d1), [`7e9f46e`](https://github.com/livekit/agents-js/commit/7e9f46ef021700279db1c16ef652354239ffec92), [`4b35349`](https://github.com/livekit/agents-js/commit/4b353492f903c4bce34c917ec27ec4750ece122d), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`98831f7`](https://github.com/livekit/agents-js/commit/98831f71d5dbdb94c9722e87aaa5ab07ba2a3525), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`57e017d`](https://github.com/livekit/agents-js/commit/57e017d3838656679caf0fff22229ca54afcd132), [`7e36727`](https://github.com/livekit/agents-js/commit/7e367279cb62c608e25b844a1dc16914583310a1), [`355718b`](https://github.com/livekit/agents-js/commit/355718be277e1138b63013577aabebc1e8043728), [`ed706fa`](https://github.com/livekit/agents-js/commit/ed706fa3fe69bc5289fe2d73c536d567fab3ad2d), [`5c8cd1e`](https://github.com/livekit/agents-js/commit/5c8cd1e76d39186ef23674e0bcc621bc9c143b27), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`b16f198`](https://github.com/livekit/agents-js/commit/b16f1984dc58b2117050647f51d0a1ad654d6504), [`54edf88`](https://github.com/livekit/agents-js/commit/54edf88dd173c825eb6ced25170e950c9d7845d6), [`4c08ddb`](https://github.com/livekit/agents-js/commit/4c08ddbcbc7e230f00512606fb00b53206e6b76b), [`4d46bcf`](https://github.com/livekit/agents-js/commit/4d46bcfd4a555e2a42abb1c9ee7cd2e44a666641), [`15932fa`](https://github.com/livekit/agents-js/commit/15932fa403d98ca4e93bef8bd453b83e5e453c0c)]: + - @livekit/agents@1.6.3 + ## 1.6.2 ### Patch Changes diff --git a/plugins/hume/package.json b/plugins/hume/package.json index 2bbff2cfa..a88638f77 100644 --- a/plugins/hume/package.json +++ b/plugins/hume/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-hume", - "version": "1.6.2", + "version": "1.6.3", "description": "Hume AI plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/inworld/CHANGELOG.md b/plugins/inworld/CHANGELOG.md index 9fc11442d..bb026735c 100644 --- a/plugins/inworld/CHANGELOG.md +++ b/plugins/inworld/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-inworld +## 1.6.3 + +### Patch Changes + +- Updated dependencies [[`127b100`](https://github.com/livekit/agents-js/commit/127b10037ad405f89ba423c8f6b425106272021b), [`5ed9d72`](https://github.com/livekit/agents-js/commit/5ed9d7289f7ae73976378c21d3b1c7c4627f08d1), [`7e9f46e`](https://github.com/livekit/agents-js/commit/7e9f46ef021700279db1c16ef652354239ffec92), [`4b35349`](https://github.com/livekit/agents-js/commit/4b353492f903c4bce34c917ec27ec4750ece122d), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`98831f7`](https://github.com/livekit/agents-js/commit/98831f71d5dbdb94c9722e87aaa5ab07ba2a3525), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`57e017d`](https://github.com/livekit/agents-js/commit/57e017d3838656679caf0fff22229ca54afcd132), [`7e36727`](https://github.com/livekit/agents-js/commit/7e367279cb62c608e25b844a1dc16914583310a1), [`355718b`](https://github.com/livekit/agents-js/commit/355718be277e1138b63013577aabebc1e8043728), [`ed706fa`](https://github.com/livekit/agents-js/commit/ed706fa3fe69bc5289fe2d73c536d567fab3ad2d), [`5c8cd1e`](https://github.com/livekit/agents-js/commit/5c8cd1e76d39186ef23674e0bcc621bc9c143b27), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`b16f198`](https://github.com/livekit/agents-js/commit/b16f1984dc58b2117050647f51d0a1ad654d6504), [`54edf88`](https://github.com/livekit/agents-js/commit/54edf88dd173c825eb6ced25170e950c9d7845d6), [`4c08ddb`](https://github.com/livekit/agents-js/commit/4c08ddbcbc7e230f00512606fb00b53206e6b76b), [`4d46bcf`](https://github.com/livekit/agents-js/commit/4d46bcfd4a555e2a42abb1c9ee7cd2e44a666641), [`15932fa`](https://github.com/livekit/agents-js/commit/15932fa403d98ca4e93bef8bd453b83e5e453c0c)]: + - @livekit/agents@1.6.3 + ## 1.6.2 ### Patch Changes diff --git a/plugins/inworld/package.json b/plugins/inworld/package.json index 3a98fbfde..a3fdf8a30 100644 --- a/plugins/inworld/package.json +++ b/plugins/inworld/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-inworld", - "version": "1.6.2", + "version": "1.6.3", "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 2232c83fc..3165cd4a2 100644 --- a/plugins/krisp/CHANGELOG.md +++ b/plugins/krisp/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-krisp +## 1.6.3 + +### Patch Changes + +- Updated dependencies [[`127b100`](https://github.com/livekit/agents-js/commit/127b10037ad405f89ba423c8f6b425106272021b), [`5ed9d72`](https://github.com/livekit/agents-js/commit/5ed9d7289f7ae73976378c21d3b1c7c4627f08d1), [`7e9f46e`](https://github.com/livekit/agents-js/commit/7e9f46ef021700279db1c16ef652354239ffec92), [`4b35349`](https://github.com/livekit/agents-js/commit/4b353492f903c4bce34c917ec27ec4750ece122d), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`98831f7`](https://github.com/livekit/agents-js/commit/98831f71d5dbdb94c9722e87aaa5ab07ba2a3525), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`57e017d`](https://github.com/livekit/agents-js/commit/57e017d3838656679caf0fff22229ca54afcd132), [`7e36727`](https://github.com/livekit/agents-js/commit/7e367279cb62c608e25b844a1dc16914583310a1), [`355718b`](https://github.com/livekit/agents-js/commit/355718be277e1138b63013577aabebc1e8043728), [`ed706fa`](https://github.com/livekit/agents-js/commit/ed706fa3fe69bc5289fe2d73c536d567fab3ad2d), [`5c8cd1e`](https://github.com/livekit/agents-js/commit/5c8cd1e76d39186ef23674e0bcc621bc9c143b27), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`b16f198`](https://github.com/livekit/agents-js/commit/b16f1984dc58b2117050647f51d0a1ad654d6504), [`54edf88`](https://github.com/livekit/agents-js/commit/54edf88dd173c825eb6ced25170e950c9d7845d6), [`4c08ddb`](https://github.com/livekit/agents-js/commit/4c08ddbcbc7e230f00512606fb00b53206e6b76b), [`4d46bcf`](https://github.com/livekit/agents-js/commit/4d46bcfd4a555e2a42abb1c9ee7cd2e44a666641), [`15932fa`](https://github.com/livekit/agents-js/commit/15932fa403d98ca4e93bef8bd453b83e5e453c0c)]: + - @livekit/agents@1.6.3 + ## 1.6.2 ### Patch Changes diff --git a/plugins/krisp/package.json b/plugins/krisp/package.json index 97005fdfb..3b1e6b384 100644 --- a/plugins/krisp/package.json +++ b/plugins/krisp/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-krisp", - "version": "1.6.2", + "version": "1.6.3", "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 d4356d6d5..5f75fabb0 100644 --- a/plugins/lemonslice/CHANGELOG.md +++ b/plugins/lemonslice/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-lemonslice +## 1.6.3 + +### Patch Changes + +- Updated dependencies [[`127b100`](https://github.com/livekit/agents-js/commit/127b10037ad405f89ba423c8f6b425106272021b), [`5ed9d72`](https://github.com/livekit/agents-js/commit/5ed9d7289f7ae73976378c21d3b1c7c4627f08d1), [`7e9f46e`](https://github.com/livekit/agents-js/commit/7e9f46ef021700279db1c16ef652354239ffec92), [`4b35349`](https://github.com/livekit/agents-js/commit/4b353492f903c4bce34c917ec27ec4750ece122d), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`98831f7`](https://github.com/livekit/agents-js/commit/98831f71d5dbdb94c9722e87aaa5ab07ba2a3525), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`57e017d`](https://github.com/livekit/agents-js/commit/57e017d3838656679caf0fff22229ca54afcd132), [`7e36727`](https://github.com/livekit/agents-js/commit/7e367279cb62c608e25b844a1dc16914583310a1), [`355718b`](https://github.com/livekit/agents-js/commit/355718be277e1138b63013577aabebc1e8043728), [`ed706fa`](https://github.com/livekit/agents-js/commit/ed706fa3fe69bc5289fe2d73c536d567fab3ad2d), [`5c8cd1e`](https://github.com/livekit/agents-js/commit/5c8cd1e76d39186ef23674e0bcc621bc9c143b27), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`b16f198`](https://github.com/livekit/agents-js/commit/b16f1984dc58b2117050647f51d0a1ad654d6504), [`54edf88`](https://github.com/livekit/agents-js/commit/54edf88dd173c825eb6ced25170e950c9d7845d6), [`4c08ddb`](https://github.com/livekit/agents-js/commit/4c08ddbcbc7e230f00512606fb00b53206e6b76b), [`4d46bcf`](https://github.com/livekit/agents-js/commit/4d46bcfd4a555e2a42abb1c9ee7cd2e44a666641), [`15932fa`](https://github.com/livekit/agents-js/commit/15932fa403d98ca4e93bef8bd453b83e5e453c0c)]: + - @livekit/agents@1.6.3 + ## 1.6.2 ### Patch Changes diff --git a/plugins/lemonslice/package.json b/plugins/lemonslice/package.json index 14f27c82a..b6471e47c 100644 --- a/plugins/lemonslice/package.json +++ b/plugins/lemonslice/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-lemonslice", - "version": "1.6.2", + "version": "1.6.3", "description": "LemonSlice avatar plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/liveavatar/CHANGELOG.md b/plugins/liveavatar/CHANGELOG.md index 9ebb86c66..7bcd6b096 100644 --- a/plugins/liveavatar/CHANGELOG.md +++ b/plugins/liveavatar/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-liveavatar +## 1.6.3 + +### Patch Changes + +- Updated dependencies [[`127b100`](https://github.com/livekit/agents-js/commit/127b10037ad405f89ba423c8f6b425106272021b), [`5ed9d72`](https://github.com/livekit/agents-js/commit/5ed9d7289f7ae73976378c21d3b1c7c4627f08d1), [`7e9f46e`](https://github.com/livekit/agents-js/commit/7e9f46ef021700279db1c16ef652354239ffec92), [`4b35349`](https://github.com/livekit/agents-js/commit/4b353492f903c4bce34c917ec27ec4750ece122d), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`98831f7`](https://github.com/livekit/agents-js/commit/98831f71d5dbdb94c9722e87aaa5ab07ba2a3525), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`57e017d`](https://github.com/livekit/agents-js/commit/57e017d3838656679caf0fff22229ca54afcd132), [`7e36727`](https://github.com/livekit/agents-js/commit/7e367279cb62c608e25b844a1dc16914583310a1), [`355718b`](https://github.com/livekit/agents-js/commit/355718be277e1138b63013577aabebc1e8043728), [`ed706fa`](https://github.com/livekit/agents-js/commit/ed706fa3fe69bc5289fe2d73c536d567fab3ad2d), [`5c8cd1e`](https://github.com/livekit/agents-js/commit/5c8cd1e76d39186ef23674e0bcc621bc9c143b27), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`b16f198`](https://github.com/livekit/agents-js/commit/b16f1984dc58b2117050647f51d0a1ad654d6504), [`54edf88`](https://github.com/livekit/agents-js/commit/54edf88dd173c825eb6ced25170e950c9d7845d6), [`4c08ddb`](https://github.com/livekit/agents-js/commit/4c08ddbcbc7e230f00512606fb00b53206e6b76b), [`4d46bcf`](https://github.com/livekit/agents-js/commit/4d46bcfd4a555e2a42abb1c9ee7cd2e44a666641), [`15932fa`](https://github.com/livekit/agents-js/commit/15932fa403d98ca4e93bef8bd453b83e5e453c0c)]: + - @livekit/agents@1.6.3 + ## 1.6.2 ### Patch Changes diff --git a/plugins/liveavatar/package.json b/plugins/liveavatar/package.json index 76940a9b4..c34da55ec 100644 --- a/plugins/liveavatar/package.json +++ b/plugins/liveavatar/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-liveavatar", - "version": "1.6.2", + "version": "1.6.3", "description": "LiveAvatar avatar plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/livekit/CHANGELOG.md b/plugins/livekit/CHANGELOG.md index 1f505a5c0..b051ac65d 100644 --- a/plugins/livekit/CHANGELOG.md +++ b/plugins/livekit/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-livekit +## 1.6.3 + +### Patch Changes + +- Updated dependencies [[`127b100`](https://github.com/livekit/agents-js/commit/127b10037ad405f89ba423c8f6b425106272021b), [`5ed9d72`](https://github.com/livekit/agents-js/commit/5ed9d7289f7ae73976378c21d3b1c7c4627f08d1), [`7e9f46e`](https://github.com/livekit/agents-js/commit/7e9f46ef021700279db1c16ef652354239ffec92), [`4b35349`](https://github.com/livekit/agents-js/commit/4b353492f903c4bce34c917ec27ec4750ece122d), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`98831f7`](https://github.com/livekit/agents-js/commit/98831f71d5dbdb94c9722e87aaa5ab07ba2a3525), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`57e017d`](https://github.com/livekit/agents-js/commit/57e017d3838656679caf0fff22229ca54afcd132), [`7e36727`](https://github.com/livekit/agents-js/commit/7e367279cb62c608e25b844a1dc16914583310a1), [`355718b`](https://github.com/livekit/agents-js/commit/355718be277e1138b63013577aabebc1e8043728), [`ed706fa`](https://github.com/livekit/agents-js/commit/ed706fa3fe69bc5289fe2d73c536d567fab3ad2d), [`5c8cd1e`](https://github.com/livekit/agents-js/commit/5c8cd1e76d39186ef23674e0bcc621bc9c143b27), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`b16f198`](https://github.com/livekit/agents-js/commit/b16f1984dc58b2117050647f51d0a1ad654d6504), [`54edf88`](https://github.com/livekit/agents-js/commit/54edf88dd173c825eb6ced25170e950c9d7845d6), [`4c08ddb`](https://github.com/livekit/agents-js/commit/4c08ddbcbc7e230f00512606fb00b53206e6b76b), [`4d46bcf`](https://github.com/livekit/agents-js/commit/4d46bcfd4a555e2a42abb1c9ee7cd2e44a666641), [`15932fa`](https://github.com/livekit/agents-js/commit/15932fa403d98ca4e93bef8bd453b83e5e453c0c)]: + - @livekit/agents@1.6.3 + ## 1.6.2 ### Patch Changes diff --git a/plugins/livekit/package.json b/plugins/livekit/package.json index f5301864f..f8ea15e9f 100644 --- a/plugins/livekit/package.json +++ b/plugins/livekit/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-livekit", - "version": "1.6.2", + "version": "1.6.3", "description": "Additional utilities for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/minimax/CHANGELOG.md b/plugins/minimax/CHANGELOG.md index 1bd62406c..0ba4aa07d 100644 --- a/plugins/minimax/CHANGELOG.md +++ b/plugins/minimax/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-minimax +## 1.6.3 + +### Patch Changes + +- Updated dependencies [[`127b100`](https://github.com/livekit/agents-js/commit/127b10037ad405f89ba423c8f6b425106272021b), [`5ed9d72`](https://github.com/livekit/agents-js/commit/5ed9d7289f7ae73976378c21d3b1c7c4627f08d1), [`7e9f46e`](https://github.com/livekit/agents-js/commit/7e9f46ef021700279db1c16ef652354239ffec92), [`4b35349`](https://github.com/livekit/agents-js/commit/4b353492f903c4bce34c917ec27ec4750ece122d), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`98831f7`](https://github.com/livekit/agents-js/commit/98831f71d5dbdb94c9722e87aaa5ab07ba2a3525), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`57e017d`](https://github.com/livekit/agents-js/commit/57e017d3838656679caf0fff22229ca54afcd132), [`7e36727`](https://github.com/livekit/agents-js/commit/7e367279cb62c608e25b844a1dc16914583310a1), [`355718b`](https://github.com/livekit/agents-js/commit/355718be277e1138b63013577aabebc1e8043728), [`ed706fa`](https://github.com/livekit/agents-js/commit/ed706fa3fe69bc5289fe2d73c536d567fab3ad2d), [`5c8cd1e`](https://github.com/livekit/agents-js/commit/5c8cd1e76d39186ef23674e0bcc621bc9c143b27), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`b16f198`](https://github.com/livekit/agents-js/commit/b16f1984dc58b2117050647f51d0a1ad654d6504), [`54edf88`](https://github.com/livekit/agents-js/commit/54edf88dd173c825eb6ced25170e950c9d7845d6), [`4c08ddb`](https://github.com/livekit/agents-js/commit/4c08ddbcbc7e230f00512606fb00b53206e6b76b), [`4d46bcf`](https://github.com/livekit/agents-js/commit/4d46bcfd4a555e2a42abb1c9ee7cd2e44a666641), [`15932fa`](https://github.com/livekit/agents-js/commit/15932fa403d98ca4e93bef8bd453b83e5e453c0c)]: + - @livekit/agents@1.6.3 + ## 1.6.2 ### Patch Changes diff --git a/plugins/minimax/package.json b/plugins/minimax/package.json index 2d52349eb..a37b794e8 100644 --- a/plugins/minimax/package.json +++ b/plugins/minimax/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-minimax", - "version": "1.6.2", + "version": "1.6.3", "description": "MiniMax plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/mistral/CHANGELOG.md b/plugins/mistral/CHANGELOG.md index 5315a9bd4..e627faaff 100644 --- a/plugins/mistral/CHANGELOG.md +++ b/plugins/mistral/CHANGELOG.md @@ -1,5 +1,13 @@ # @livekit/agents-plugin-mistral +## 1.6.3 + +### Patch Changes + +- Updated dependencies [[`127b100`](https://github.com/livekit/agents-js/commit/127b10037ad405f89ba423c8f6b425106272021b), [`5ed9d72`](https://github.com/livekit/agents-js/commit/5ed9d7289f7ae73976378c21d3b1c7c4627f08d1), [`7e9f46e`](https://github.com/livekit/agents-js/commit/7e9f46ef021700279db1c16ef652354239ffec92), [`4b35349`](https://github.com/livekit/agents-js/commit/4b353492f903c4bce34c917ec27ec4750ece122d), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`98831f7`](https://github.com/livekit/agents-js/commit/98831f71d5dbdb94c9722e87aaa5ab07ba2a3525), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`57e017d`](https://github.com/livekit/agents-js/commit/57e017d3838656679caf0fff22229ca54afcd132), [`7e36727`](https://github.com/livekit/agents-js/commit/7e367279cb62c608e25b844a1dc16914583310a1), [`355718b`](https://github.com/livekit/agents-js/commit/355718be277e1138b63013577aabebc1e8043728), [`ed706fa`](https://github.com/livekit/agents-js/commit/ed706fa3fe69bc5289fe2d73c536d567fab3ad2d), [`5c8cd1e`](https://github.com/livekit/agents-js/commit/5c8cd1e76d39186ef23674e0bcc621bc9c143b27), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`b16f198`](https://github.com/livekit/agents-js/commit/b16f1984dc58b2117050647f51d0a1ad654d6504), [`54edf88`](https://github.com/livekit/agents-js/commit/54edf88dd173c825eb6ced25170e950c9d7845d6), [`4c08ddb`](https://github.com/livekit/agents-js/commit/4c08ddbcbc7e230f00512606fb00b53206e6b76b), [`4d46bcf`](https://github.com/livekit/agents-js/commit/4d46bcfd4a555e2a42abb1c9ee7cd2e44a666641), [`15932fa`](https://github.com/livekit/agents-js/commit/15932fa403d98ca4e93bef8bd453b83e5e453c0c)]: + - @livekit/agents@1.6.3 + - @livekit/agents-plugin-mistralai@1.6.3 + ## 1.6.2 ### Patch Changes diff --git a/plugins/mistral/package.json b/plugins/mistral/package.json index f7cf74c68..c1349647e 100644 --- a/plugins/mistral/package.json +++ b/plugins/mistral/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-mistral", - "version": "1.6.2", + "version": "1.6.3", "description": "Mistral AI plugin for LiveKit Node Agents (deprecated, use @livekit/agents-plugin-mistralai)", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/mistralai/CHANGELOG.md b/plugins/mistralai/CHANGELOG.md index 309adb1bc..e11a904ee 100644 --- a/plugins/mistralai/CHANGELOG.md +++ b/plugins/mistralai/CHANGELOG.md @@ -1,5 +1,13 @@ # @livekit/agents-plugin-mistralai +## 1.6.3 + +### Patch Changes + +- Updated dependencies [[`127b100`](https://github.com/livekit/agents-js/commit/127b10037ad405f89ba423c8f6b425106272021b), [`5ed9d72`](https://github.com/livekit/agents-js/commit/5ed9d7289f7ae73976378c21d3b1c7c4627f08d1), [`7e9f46e`](https://github.com/livekit/agents-js/commit/7e9f46ef021700279db1c16ef652354239ffec92), [`4b35349`](https://github.com/livekit/agents-js/commit/4b353492f903c4bce34c917ec27ec4750ece122d), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`98831f7`](https://github.com/livekit/agents-js/commit/98831f71d5dbdb94c9722e87aaa5ab07ba2a3525), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`57e017d`](https://github.com/livekit/agents-js/commit/57e017d3838656679caf0fff22229ca54afcd132), [`7e36727`](https://github.com/livekit/agents-js/commit/7e367279cb62c608e25b844a1dc16914583310a1), [`355718b`](https://github.com/livekit/agents-js/commit/355718be277e1138b63013577aabebc1e8043728), [`ed706fa`](https://github.com/livekit/agents-js/commit/ed706fa3fe69bc5289fe2d73c536d567fab3ad2d), [`5c8cd1e`](https://github.com/livekit/agents-js/commit/5c8cd1e76d39186ef23674e0bcc621bc9c143b27), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`b16f198`](https://github.com/livekit/agents-js/commit/b16f1984dc58b2117050647f51d0a1ad654d6504), [`54edf88`](https://github.com/livekit/agents-js/commit/54edf88dd173c825eb6ced25170e950c9d7845d6), [`4c08ddb`](https://github.com/livekit/agents-js/commit/4c08ddbcbc7e230f00512606fb00b53206e6b76b), [`4d46bcf`](https://github.com/livekit/agents-js/commit/4d46bcfd4a555e2a42abb1c9ee7cd2e44a666641), [`0757039`](https://github.com/livekit/agents-js/commit/07570394092194484957682d20fd3ddf31ee5835), [`15932fa`](https://github.com/livekit/agents-js/commit/15932fa403d98ca4e93bef8bd453b83e5e453c0c)]: + - @livekit/agents@1.6.3 + - @livekit/agents-plugin-silero@1.6.3 + ## 1.6.2 ### Patch Changes diff --git a/plugins/mistralai/package.json b/plugins/mistralai/package.json index 40a3c9706..2c41402bc 100644 --- a/plugins/mistralai/package.json +++ b/plugins/mistralai/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-mistralai", - "version": "1.6.2", + "version": "1.6.3", "description": "Mistral AI plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/neuphonic/CHANGELOG.md b/plugins/neuphonic/CHANGELOG.md index 4e88635d3..897790d7d 100644 --- a/plugins/neuphonic/CHANGELOG.md +++ b/plugins/neuphonic/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-neuphonic +## 1.6.3 + +### Patch Changes + +- Updated dependencies [[`127b100`](https://github.com/livekit/agents-js/commit/127b10037ad405f89ba423c8f6b425106272021b), [`5ed9d72`](https://github.com/livekit/agents-js/commit/5ed9d7289f7ae73976378c21d3b1c7c4627f08d1), [`7e9f46e`](https://github.com/livekit/agents-js/commit/7e9f46ef021700279db1c16ef652354239ffec92), [`4b35349`](https://github.com/livekit/agents-js/commit/4b353492f903c4bce34c917ec27ec4750ece122d), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`98831f7`](https://github.com/livekit/agents-js/commit/98831f71d5dbdb94c9722e87aaa5ab07ba2a3525), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`57e017d`](https://github.com/livekit/agents-js/commit/57e017d3838656679caf0fff22229ca54afcd132), [`7e36727`](https://github.com/livekit/agents-js/commit/7e367279cb62c608e25b844a1dc16914583310a1), [`355718b`](https://github.com/livekit/agents-js/commit/355718be277e1138b63013577aabebc1e8043728), [`ed706fa`](https://github.com/livekit/agents-js/commit/ed706fa3fe69bc5289fe2d73c536d567fab3ad2d), [`5c8cd1e`](https://github.com/livekit/agents-js/commit/5c8cd1e76d39186ef23674e0bcc621bc9c143b27), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`b16f198`](https://github.com/livekit/agents-js/commit/b16f1984dc58b2117050647f51d0a1ad654d6504), [`54edf88`](https://github.com/livekit/agents-js/commit/54edf88dd173c825eb6ced25170e950c9d7845d6), [`4c08ddb`](https://github.com/livekit/agents-js/commit/4c08ddbcbc7e230f00512606fb00b53206e6b76b), [`4d46bcf`](https://github.com/livekit/agents-js/commit/4d46bcfd4a555e2a42abb1c9ee7cd2e44a666641), [`15932fa`](https://github.com/livekit/agents-js/commit/15932fa403d98ca4e93bef8bd453b83e5e453c0c)]: + - @livekit/agents@1.6.3 + ## 1.6.2 ### Patch Changes diff --git a/plugins/neuphonic/package.json b/plugins/neuphonic/package.json index a6dc6e64e..49c08cf4d 100644 --- a/plugins/neuphonic/package.json +++ b/plugins/neuphonic/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-neuphonic", - "version": "1.6.2", + "version": "1.6.3", "description": "Neuphonic plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/openai/CHANGELOG.md b/plugins/openai/CHANGELOG.md index 1a0001a0a..af747426b 100644 --- a/plugins/openai/CHANGELOG.md +++ b/plugins/openai/CHANGELOG.md @@ -1,5 +1,32 @@ # @livekit/agents-plugin-openai +## 1.6.3 + +### Patch Changes + +- Support context hints and code-switched language lists in OpenAI STT. - [#2233](https://github.com/livekit/agents-js/pull/2233) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- fix(openai): delete the realtime item instead of truncating it when no audio played - [#1903](https://github.com/livekit/agents-js/pull/1903) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- fix(openai): keep a Responses stream retryable until it emits generation - [#2219](https://github.com/livekit/agents-js/pull/2219) ([@u9g](https://github.com/u9g)) + + `retryable` was cleared by every event the HTTP stream processed, including events that + emit no chunk at all. `response.created` opens every stream, so a Responses request went + unretryable from its first event regardless of provider — a mid-stream stall then failed + the turn outright with nothing generated and nothing for a retry to duplicate. The + WebSocket path had the mirror defect: it never cleared `retryable`, so a socket dropping + after text had already streamed retried and regenerated it. + + Both paths now clear `retryable` on text or a tool call, the output a retry would actually + repeat. The phase marker and the usage-bearing completion event are not. + +- Update the Cerebras model catalog and default to currently available models. - [#2193](https://github.com/livekit/agents-js/pull/2193) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- Emit one final xAI user transcript per turn and settle rejected realtime chat context updates. - [#2238](https://github.com/livekit/agents-js/pull/2238) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- Updated dependencies [[`127b100`](https://github.com/livekit/agents-js/commit/127b10037ad405f89ba423c8f6b425106272021b), [`5ed9d72`](https://github.com/livekit/agents-js/commit/5ed9d7289f7ae73976378c21d3b1c7c4627f08d1), [`7e9f46e`](https://github.com/livekit/agents-js/commit/7e9f46ef021700279db1c16ef652354239ffec92), [`4b35349`](https://github.com/livekit/agents-js/commit/4b353492f903c4bce34c917ec27ec4750ece122d), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`98831f7`](https://github.com/livekit/agents-js/commit/98831f71d5dbdb94c9722e87aaa5ab07ba2a3525), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`57e017d`](https://github.com/livekit/agents-js/commit/57e017d3838656679caf0fff22229ca54afcd132), [`7e36727`](https://github.com/livekit/agents-js/commit/7e367279cb62c608e25b844a1dc16914583310a1), [`355718b`](https://github.com/livekit/agents-js/commit/355718be277e1138b63013577aabebc1e8043728), [`ed706fa`](https://github.com/livekit/agents-js/commit/ed706fa3fe69bc5289fe2d73c536d567fab3ad2d), [`5c8cd1e`](https://github.com/livekit/agents-js/commit/5c8cd1e76d39186ef23674e0bcc621bc9c143b27), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`b16f198`](https://github.com/livekit/agents-js/commit/b16f1984dc58b2117050647f51d0a1ad654d6504), [`54edf88`](https://github.com/livekit/agents-js/commit/54edf88dd173c825eb6ced25170e950c9d7845d6), [`4c08ddb`](https://github.com/livekit/agents-js/commit/4c08ddbcbc7e230f00512606fb00b53206e6b76b), [`4d46bcf`](https://github.com/livekit/agents-js/commit/4d46bcfd4a555e2a42abb1c9ee7cd2e44a666641), [`15932fa`](https://github.com/livekit/agents-js/commit/15932fa403d98ca4e93bef8bd453b83e5e453c0c)]: + - @livekit/agents@1.6.3 + ## 1.6.2 ### Patch Changes diff --git a/plugins/openai/package.json b/plugins/openai/package.json index 8a588ac29..e1d5f15e7 100644 --- a/plugins/openai/package.json +++ b/plugins/openai/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-openai", - "version": "1.6.2", + "version": "1.6.3", "description": "OpenAI plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/perplexity/CHANGELOG.md b/plugins/perplexity/CHANGELOG.md index 2635b4912..94e39bf17 100644 --- a/plugins/perplexity/CHANGELOG.md +++ b/plugins/perplexity/CHANGELOG.md @@ -1,5 +1,13 @@ # @livekit/agents-plugin-perplexity +## 1.6.3 + +### Patch Changes + +- Updated dependencies [[`127b100`](https://github.com/livekit/agents-js/commit/127b10037ad405f89ba423c8f6b425106272021b), [`5ed9d72`](https://github.com/livekit/agents-js/commit/5ed9d7289f7ae73976378c21d3b1c7c4627f08d1), [`7e9f46e`](https://github.com/livekit/agents-js/commit/7e9f46ef021700279db1c16ef652354239ffec92), [`4b35349`](https://github.com/livekit/agents-js/commit/4b353492f903c4bce34c917ec27ec4750ece122d), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`1a00d8e`](https://github.com/livekit/agents-js/commit/1a00d8e12b5412a8cb8be45691070b3540904010), [`98831f7`](https://github.com/livekit/agents-js/commit/98831f71d5dbdb94c9722e87aaa5ab07ba2a3525), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`57e017d`](https://github.com/livekit/agents-js/commit/57e017d3838656679caf0fff22229ca54afcd132), [`7e36727`](https://github.com/livekit/agents-js/commit/7e367279cb62c608e25b844a1dc16914583310a1), [`355718b`](https://github.com/livekit/agents-js/commit/355718be277e1138b63013577aabebc1e8043728), [`6da9b0a`](https://github.com/livekit/agents-js/commit/6da9b0a53917f726fe5ceac37abebd4df5e253a6), [`ed706fa`](https://github.com/livekit/agents-js/commit/ed706fa3fe69bc5289fe2d73c536d567fab3ad2d), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`5c8cd1e`](https://github.com/livekit/agents-js/commit/5c8cd1e76d39186ef23674e0bcc621bc9c143b27), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`b16f198`](https://github.com/livekit/agents-js/commit/b16f1984dc58b2117050647f51d0a1ad654d6504), [`54edf88`](https://github.com/livekit/agents-js/commit/54edf88dd173c825eb6ced25170e950c9d7845d6), [`4c08ddb`](https://github.com/livekit/agents-js/commit/4c08ddbcbc7e230f00512606fb00b53206e6b76b), [`4d46bcf`](https://github.com/livekit/agents-js/commit/4d46bcfd4a555e2a42abb1c9ee7cd2e44a666641), [`15932fa`](https://github.com/livekit/agents-js/commit/15932fa403d98ca4e93bef8bd453b83e5e453c0c), [`d8f3c51`](https://github.com/livekit/agents-js/commit/d8f3c516ed5dfa4c3d13518b69e1f7fc8f2a12bf), [`3ff013c`](https://github.com/livekit/agents-js/commit/3ff013c0663b776993f1fc63bbb6a439e3fc6bcd)]: + - @livekit/agents@1.6.3 + - @livekit/agents-plugin-openai@1.6.3 + ## 1.6.2 ### Patch Changes diff --git a/plugins/perplexity/package.json b/plugins/perplexity/package.json index fdd53bcc6..b282b45bf 100644 --- a/plugins/perplexity/package.json +++ b/plugins/perplexity/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-perplexity", - "version": "1.6.2", + "version": "1.6.3", "description": "Perplexity plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/phonic/CHANGELOG.md b/plugins/phonic/CHANGELOG.md index c0cc2c406..8d1621822 100644 --- a/plugins/phonic/CHANGELOG.md +++ b/plugins/phonic/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-phonic +## 1.6.3 + +### Patch Changes + +- Updated dependencies [[`127b100`](https://github.com/livekit/agents-js/commit/127b10037ad405f89ba423c8f6b425106272021b), [`5ed9d72`](https://github.com/livekit/agents-js/commit/5ed9d7289f7ae73976378c21d3b1c7c4627f08d1), [`7e9f46e`](https://github.com/livekit/agents-js/commit/7e9f46ef021700279db1c16ef652354239ffec92), [`4b35349`](https://github.com/livekit/agents-js/commit/4b353492f903c4bce34c917ec27ec4750ece122d), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`98831f7`](https://github.com/livekit/agents-js/commit/98831f71d5dbdb94c9722e87aaa5ab07ba2a3525), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`57e017d`](https://github.com/livekit/agents-js/commit/57e017d3838656679caf0fff22229ca54afcd132), [`7e36727`](https://github.com/livekit/agents-js/commit/7e367279cb62c608e25b844a1dc16914583310a1), [`355718b`](https://github.com/livekit/agents-js/commit/355718be277e1138b63013577aabebc1e8043728), [`ed706fa`](https://github.com/livekit/agents-js/commit/ed706fa3fe69bc5289fe2d73c536d567fab3ad2d), [`5c8cd1e`](https://github.com/livekit/agents-js/commit/5c8cd1e76d39186ef23674e0bcc621bc9c143b27), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`b16f198`](https://github.com/livekit/agents-js/commit/b16f1984dc58b2117050647f51d0a1ad654d6504), [`54edf88`](https://github.com/livekit/agents-js/commit/54edf88dd173c825eb6ced25170e950c9d7845d6), [`4c08ddb`](https://github.com/livekit/agents-js/commit/4c08ddbcbc7e230f00512606fb00b53206e6b76b), [`4d46bcf`](https://github.com/livekit/agents-js/commit/4d46bcfd4a555e2a42abb1c9ee7cd2e44a666641), [`15932fa`](https://github.com/livekit/agents-js/commit/15932fa403d98ca4e93bef8bd453b83e5e453c0c)]: + - @livekit/agents@1.6.3 + ## 1.6.2 ### Patch Changes diff --git a/plugins/phonic/package.json b/plugins/phonic/package.json index e8af6d381..8c650c123 100644 --- a/plugins/phonic/package.json +++ b/plugins/phonic/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-phonic", - "version": "1.6.2", + "version": "1.6.3", "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 f4a59868d..21b137336 100644 --- a/plugins/protoface/CHANGELOG.md +++ b/plugins/protoface/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-protoface +## 1.6.3 + +### Patch Changes + +- Updated dependencies [[`127b100`](https://github.com/livekit/agents-js/commit/127b10037ad405f89ba423c8f6b425106272021b), [`5ed9d72`](https://github.com/livekit/agents-js/commit/5ed9d7289f7ae73976378c21d3b1c7c4627f08d1), [`7e9f46e`](https://github.com/livekit/agents-js/commit/7e9f46ef021700279db1c16ef652354239ffec92), [`4b35349`](https://github.com/livekit/agents-js/commit/4b353492f903c4bce34c917ec27ec4750ece122d), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`98831f7`](https://github.com/livekit/agents-js/commit/98831f71d5dbdb94c9722e87aaa5ab07ba2a3525), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`57e017d`](https://github.com/livekit/agents-js/commit/57e017d3838656679caf0fff22229ca54afcd132), [`7e36727`](https://github.com/livekit/agents-js/commit/7e367279cb62c608e25b844a1dc16914583310a1), [`355718b`](https://github.com/livekit/agents-js/commit/355718be277e1138b63013577aabebc1e8043728), [`ed706fa`](https://github.com/livekit/agents-js/commit/ed706fa3fe69bc5289fe2d73c536d567fab3ad2d), [`5c8cd1e`](https://github.com/livekit/agents-js/commit/5c8cd1e76d39186ef23674e0bcc621bc9c143b27), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`b16f198`](https://github.com/livekit/agents-js/commit/b16f1984dc58b2117050647f51d0a1ad654d6504), [`54edf88`](https://github.com/livekit/agents-js/commit/54edf88dd173c825eb6ced25170e950c9d7845d6), [`4c08ddb`](https://github.com/livekit/agents-js/commit/4c08ddbcbc7e230f00512606fb00b53206e6b76b), [`4d46bcf`](https://github.com/livekit/agents-js/commit/4d46bcfd4a555e2a42abb1c9ee7cd2e44a666641), [`15932fa`](https://github.com/livekit/agents-js/commit/15932fa403d98ca4e93bef8bd453b83e5e453c0c)]: + - @livekit/agents@1.6.3 + ## 1.6.2 ### Patch Changes diff --git a/plugins/protoface/package.json b/plugins/protoface/package.json index 349adec5f..21af8cf9e 100644 --- a/plugins/protoface/package.json +++ b/plugins/protoface/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-protoface", - "version": "1.6.2", + "version": "1.6.3", "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 8cc1db5ee..818abb27c 100644 --- a/plugins/resemble/CHANGELOG.md +++ b/plugins/resemble/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-resemble +## 1.6.3 + +### Patch Changes + +- Updated dependencies [[`127b100`](https://github.com/livekit/agents-js/commit/127b10037ad405f89ba423c8f6b425106272021b), [`5ed9d72`](https://github.com/livekit/agents-js/commit/5ed9d7289f7ae73976378c21d3b1c7c4627f08d1), [`7e9f46e`](https://github.com/livekit/agents-js/commit/7e9f46ef021700279db1c16ef652354239ffec92), [`4b35349`](https://github.com/livekit/agents-js/commit/4b353492f903c4bce34c917ec27ec4750ece122d), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`98831f7`](https://github.com/livekit/agents-js/commit/98831f71d5dbdb94c9722e87aaa5ab07ba2a3525), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`57e017d`](https://github.com/livekit/agents-js/commit/57e017d3838656679caf0fff22229ca54afcd132), [`7e36727`](https://github.com/livekit/agents-js/commit/7e367279cb62c608e25b844a1dc16914583310a1), [`355718b`](https://github.com/livekit/agents-js/commit/355718be277e1138b63013577aabebc1e8043728), [`ed706fa`](https://github.com/livekit/agents-js/commit/ed706fa3fe69bc5289fe2d73c536d567fab3ad2d), [`5c8cd1e`](https://github.com/livekit/agents-js/commit/5c8cd1e76d39186ef23674e0bcc621bc9c143b27), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`b16f198`](https://github.com/livekit/agents-js/commit/b16f1984dc58b2117050647f51d0a1ad654d6504), [`54edf88`](https://github.com/livekit/agents-js/commit/54edf88dd173c825eb6ced25170e950c9d7845d6), [`4c08ddb`](https://github.com/livekit/agents-js/commit/4c08ddbcbc7e230f00512606fb00b53206e6b76b), [`4d46bcf`](https://github.com/livekit/agents-js/commit/4d46bcfd4a555e2a42abb1c9ee7cd2e44a666641), [`15932fa`](https://github.com/livekit/agents-js/commit/15932fa403d98ca4e93bef8bd453b83e5e453c0c)]: + - @livekit/agents@1.6.3 + ## 1.6.2 ### Patch Changes diff --git a/plugins/resemble/package.json b/plugins/resemble/package.json index 880541487..28e4e837c 100644 --- a/plugins/resemble/package.json +++ b/plugins/resemble/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-resemble", - "version": "1.6.2", + "version": "1.6.3", "description": "Resemble plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/rime/CHANGELOG.md b/plugins/rime/CHANGELOG.md index d94ef15f4..2ad25bff0 100644 --- a/plugins/rime/CHANGELOG.md +++ b/plugins/rime/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-rime +## 1.6.3 + +### Patch Changes + +- Updated dependencies [[`127b100`](https://github.com/livekit/agents-js/commit/127b10037ad405f89ba423c8f6b425106272021b), [`5ed9d72`](https://github.com/livekit/agents-js/commit/5ed9d7289f7ae73976378c21d3b1c7c4627f08d1), [`7e9f46e`](https://github.com/livekit/agents-js/commit/7e9f46ef021700279db1c16ef652354239ffec92), [`4b35349`](https://github.com/livekit/agents-js/commit/4b353492f903c4bce34c917ec27ec4750ece122d), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`98831f7`](https://github.com/livekit/agents-js/commit/98831f71d5dbdb94c9722e87aaa5ab07ba2a3525), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`57e017d`](https://github.com/livekit/agents-js/commit/57e017d3838656679caf0fff22229ca54afcd132), [`7e36727`](https://github.com/livekit/agents-js/commit/7e367279cb62c608e25b844a1dc16914583310a1), [`355718b`](https://github.com/livekit/agents-js/commit/355718be277e1138b63013577aabebc1e8043728), [`ed706fa`](https://github.com/livekit/agents-js/commit/ed706fa3fe69bc5289fe2d73c536d567fab3ad2d), [`5c8cd1e`](https://github.com/livekit/agents-js/commit/5c8cd1e76d39186ef23674e0bcc621bc9c143b27), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`b16f198`](https://github.com/livekit/agents-js/commit/b16f1984dc58b2117050647f51d0a1ad654d6504), [`54edf88`](https://github.com/livekit/agents-js/commit/54edf88dd173c825eb6ced25170e950c9d7845d6), [`4c08ddb`](https://github.com/livekit/agents-js/commit/4c08ddbcbc7e230f00512606fb00b53206e6b76b), [`4d46bcf`](https://github.com/livekit/agents-js/commit/4d46bcfd4a555e2a42abb1c9ee7cd2e44a666641), [`15932fa`](https://github.com/livekit/agents-js/commit/15932fa403d98ca4e93bef8bd453b83e5e453c0c)]: + - @livekit/agents@1.6.3 + ## 1.6.2 ### Patch Changes diff --git a/plugins/rime/package.json b/plugins/rime/package.json index a71cf6385..f2fef4992 100644 --- a/plugins/rime/package.json +++ b/plugins/rime/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-rime", - "version": "1.6.2", + "version": "1.6.3", "description": "Rime plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/runway/CHANGELOG.md b/plugins/runway/CHANGELOG.md index 0462799fc..fa1f6248d 100644 --- a/plugins/runway/CHANGELOG.md +++ b/plugins/runway/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-runway +## 1.6.3 + +### Patch Changes + +- Updated dependencies [[`127b100`](https://github.com/livekit/agents-js/commit/127b10037ad405f89ba423c8f6b425106272021b), [`5ed9d72`](https://github.com/livekit/agents-js/commit/5ed9d7289f7ae73976378c21d3b1c7c4627f08d1), [`7e9f46e`](https://github.com/livekit/agents-js/commit/7e9f46ef021700279db1c16ef652354239ffec92), [`4b35349`](https://github.com/livekit/agents-js/commit/4b353492f903c4bce34c917ec27ec4750ece122d), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`98831f7`](https://github.com/livekit/agents-js/commit/98831f71d5dbdb94c9722e87aaa5ab07ba2a3525), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`57e017d`](https://github.com/livekit/agents-js/commit/57e017d3838656679caf0fff22229ca54afcd132), [`7e36727`](https://github.com/livekit/agents-js/commit/7e367279cb62c608e25b844a1dc16914583310a1), [`355718b`](https://github.com/livekit/agents-js/commit/355718be277e1138b63013577aabebc1e8043728), [`ed706fa`](https://github.com/livekit/agents-js/commit/ed706fa3fe69bc5289fe2d73c536d567fab3ad2d), [`5c8cd1e`](https://github.com/livekit/agents-js/commit/5c8cd1e76d39186ef23674e0bcc621bc9c143b27), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`b16f198`](https://github.com/livekit/agents-js/commit/b16f1984dc58b2117050647f51d0a1ad654d6504), [`54edf88`](https://github.com/livekit/agents-js/commit/54edf88dd173c825eb6ced25170e950c9d7845d6), [`4c08ddb`](https://github.com/livekit/agents-js/commit/4c08ddbcbc7e230f00512606fb00b53206e6b76b), [`4d46bcf`](https://github.com/livekit/agents-js/commit/4d46bcfd4a555e2a42abb1c9ee7cd2e44a666641), [`15932fa`](https://github.com/livekit/agents-js/commit/15932fa403d98ca4e93bef8bd453b83e5e453c0c)]: + - @livekit/agents@1.6.3 + ## 1.6.2 ### Patch Changes diff --git a/plugins/runway/package.json b/plugins/runway/package.json index 7bdffc822..4f5e2acb5 100644 --- a/plugins/runway/package.json +++ b/plugins/runway/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-runway", - "version": "1.6.2", + "version": "1.6.3", "description": "Runway plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/sarvam/CHANGELOG.md b/plugins/sarvam/CHANGELOG.md index 661bcdee7..0f979c6e3 100644 --- a/plugins/sarvam/CHANGELOG.md +++ b/plugins/sarvam/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-sarvam +## 1.6.3 + +### Patch Changes + +- Updated dependencies [[`127b100`](https://github.com/livekit/agents-js/commit/127b10037ad405f89ba423c8f6b425106272021b), [`5ed9d72`](https://github.com/livekit/agents-js/commit/5ed9d7289f7ae73976378c21d3b1c7c4627f08d1), [`7e9f46e`](https://github.com/livekit/agents-js/commit/7e9f46ef021700279db1c16ef652354239ffec92), [`4b35349`](https://github.com/livekit/agents-js/commit/4b353492f903c4bce34c917ec27ec4750ece122d), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`98831f7`](https://github.com/livekit/agents-js/commit/98831f71d5dbdb94c9722e87aaa5ab07ba2a3525), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`57e017d`](https://github.com/livekit/agents-js/commit/57e017d3838656679caf0fff22229ca54afcd132), [`7e36727`](https://github.com/livekit/agents-js/commit/7e367279cb62c608e25b844a1dc16914583310a1), [`355718b`](https://github.com/livekit/agents-js/commit/355718be277e1138b63013577aabebc1e8043728), [`ed706fa`](https://github.com/livekit/agents-js/commit/ed706fa3fe69bc5289fe2d73c536d567fab3ad2d), [`5c8cd1e`](https://github.com/livekit/agents-js/commit/5c8cd1e76d39186ef23674e0bcc621bc9c143b27), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`b16f198`](https://github.com/livekit/agents-js/commit/b16f1984dc58b2117050647f51d0a1ad654d6504), [`54edf88`](https://github.com/livekit/agents-js/commit/54edf88dd173c825eb6ced25170e950c9d7845d6), [`4c08ddb`](https://github.com/livekit/agents-js/commit/4c08ddbcbc7e230f00512606fb00b53206e6b76b), [`4d46bcf`](https://github.com/livekit/agents-js/commit/4d46bcfd4a555e2a42abb1c9ee7cd2e44a666641), [`15932fa`](https://github.com/livekit/agents-js/commit/15932fa403d98ca4e93bef8bd453b83e5e453c0c)]: + - @livekit/agents@1.6.3 + ## 1.6.2 ### Patch Changes diff --git a/plugins/sarvam/package.json b/plugins/sarvam/package.json index 3dec78b22..12a84dabd 100644 --- a/plugins/sarvam/package.json +++ b/plugins/sarvam/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-sarvam", - "version": "1.6.2", + "version": "1.6.3", "description": "Sarvam AI plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/silero/CHANGELOG.md b/plugins/silero/CHANGELOG.md index 16c8cdc6c..4d2463bed 100644 --- a/plugins/silero/CHANGELOG.md +++ b/plugins/silero/CHANGELOG.md @@ -1,5 +1,14 @@ # @livekit/agents-plugin-silero +## 1.6.3 + +### Patch Changes + +- Update the bundled Silero VAD checkpoint to v6.2. - [#2273](https://github.com/livekit/agents-js/pull/2273) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- Updated dependencies [[`127b100`](https://github.com/livekit/agents-js/commit/127b10037ad405f89ba423c8f6b425106272021b), [`5ed9d72`](https://github.com/livekit/agents-js/commit/5ed9d7289f7ae73976378c21d3b1c7c4627f08d1), [`7e9f46e`](https://github.com/livekit/agents-js/commit/7e9f46ef021700279db1c16ef652354239ffec92), [`4b35349`](https://github.com/livekit/agents-js/commit/4b353492f903c4bce34c917ec27ec4750ece122d), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`98831f7`](https://github.com/livekit/agents-js/commit/98831f71d5dbdb94c9722e87aaa5ab07ba2a3525), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`57e017d`](https://github.com/livekit/agents-js/commit/57e017d3838656679caf0fff22229ca54afcd132), [`7e36727`](https://github.com/livekit/agents-js/commit/7e367279cb62c608e25b844a1dc16914583310a1), [`355718b`](https://github.com/livekit/agents-js/commit/355718be277e1138b63013577aabebc1e8043728), [`ed706fa`](https://github.com/livekit/agents-js/commit/ed706fa3fe69bc5289fe2d73c536d567fab3ad2d), [`5c8cd1e`](https://github.com/livekit/agents-js/commit/5c8cd1e76d39186ef23674e0bcc621bc9c143b27), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`b16f198`](https://github.com/livekit/agents-js/commit/b16f1984dc58b2117050647f51d0a1ad654d6504), [`54edf88`](https://github.com/livekit/agents-js/commit/54edf88dd173c825eb6ced25170e950c9d7845d6), [`4c08ddb`](https://github.com/livekit/agents-js/commit/4c08ddbcbc7e230f00512606fb00b53206e6b76b), [`4d46bcf`](https://github.com/livekit/agents-js/commit/4d46bcfd4a555e2a42abb1c9ee7cd2e44a666641), [`15932fa`](https://github.com/livekit/agents-js/commit/15932fa403d98ca4e93bef8bd453b83e5e453c0c)]: + - @livekit/agents@1.6.3 + ## 1.6.2 ### Patch Changes diff --git a/plugins/silero/package.json b/plugins/silero/package.json index d9ebd9c5e..66519bcd7 100644 --- a/plugins/silero/package.json +++ b/plugins/silero/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-silero", - "version": "1.6.2", + "version": "1.6.3", "description": "Silero voice activity detection LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/soniox/CHANGELOG.md b/plugins/soniox/CHANGELOG.md index cfa77ae7a..048d27579 100644 --- a/plugins/soniox/CHANGELOG.md +++ b/plugins/soniox/CHANGELOG.md @@ -1,5 +1,14 @@ # @livekit/agents-plugin-soniox +## 1.6.3 + +### Patch Changes + +- Report recognition usage on every Soniox response frame so processed audio is not dropped when no endpoint is emitted. - [#2223](https://github.com/livekit/agents-js/pull/2223) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- Updated dependencies [[`127b100`](https://github.com/livekit/agents-js/commit/127b10037ad405f89ba423c8f6b425106272021b), [`5ed9d72`](https://github.com/livekit/agents-js/commit/5ed9d7289f7ae73976378c21d3b1c7c4627f08d1), [`7e9f46e`](https://github.com/livekit/agents-js/commit/7e9f46ef021700279db1c16ef652354239ffec92), [`4b35349`](https://github.com/livekit/agents-js/commit/4b353492f903c4bce34c917ec27ec4750ece122d), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`98831f7`](https://github.com/livekit/agents-js/commit/98831f71d5dbdb94c9722e87aaa5ab07ba2a3525), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`57e017d`](https://github.com/livekit/agents-js/commit/57e017d3838656679caf0fff22229ca54afcd132), [`7e36727`](https://github.com/livekit/agents-js/commit/7e367279cb62c608e25b844a1dc16914583310a1), [`355718b`](https://github.com/livekit/agents-js/commit/355718be277e1138b63013577aabebc1e8043728), [`ed706fa`](https://github.com/livekit/agents-js/commit/ed706fa3fe69bc5289fe2d73c536d567fab3ad2d), [`5c8cd1e`](https://github.com/livekit/agents-js/commit/5c8cd1e76d39186ef23674e0bcc621bc9c143b27), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`b16f198`](https://github.com/livekit/agents-js/commit/b16f1984dc58b2117050647f51d0a1ad654d6504), [`54edf88`](https://github.com/livekit/agents-js/commit/54edf88dd173c825eb6ced25170e950c9d7845d6), [`4c08ddb`](https://github.com/livekit/agents-js/commit/4c08ddbcbc7e230f00512606fb00b53206e6b76b), [`4d46bcf`](https://github.com/livekit/agents-js/commit/4d46bcfd4a555e2a42abb1c9ee7cd2e44a666641), [`15932fa`](https://github.com/livekit/agents-js/commit/15932fa403d98ca4e93bef8bd453b83e5e453c0c)]: + - @livekit/agents@1.6.3 + ## 1.6.2 ### Patch Changes diff --git a/plugins/soniox/package.json b/plugins/soniox/package.json index d1a3b5d9f..d378f296c 100644 --- a/plugins/soniox/package.json +++ b/plugins/soniox/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-soniox", - "version": "1.6.2", + "version": "1.6.3", "description": "Soniox plugin for LiveKit Agents for Node.js", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/tavus/CHANGELOG.md b/plugins/tavus/CHANGELOG.md index 46d5c6f22..615114f90 100644 --- a/plugins/tavus/CHANGELOG.md +++ b/plugins/tavus/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-tavus +## 1.6.3 + +### Patch Changes + +- Updated dependencies [[`127b100`](https://github.com/livekit/agents-js/commit/127b10037ad405f89ba423c8f6b425106272021b), [`5ed9d72`](https://github.com/livekit/agents-js/commit/5ed9d7289f7ae73976378c21d3b1c7c4627f08d1), [`7e9f46e`](https://github.com/livekit/agents-js/commit/7e9f46ef021700279db1c16ef652354239ffec92), [`4b35349`](https://github.com/livekit/agents-js/commit/4b353492f903c4bce34c917ec27ec4750ece122d), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`98831f7`](https://github.com/livekit/agents-js/commit/98831f71d5dbdb94c9722e87aaa5ab07ba2a3525), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`57e017d`](https://github.com/livekit/agents-js/commit/57e017d3838656679caf0fff22229ca54afcd132), [`7e36727`](https://github.com/livekit/agents-js/commit/7e367279cb62c608e25b844a1dc16914583310a1), [`355718b`](https://github.com/livekit/agents-js/commit/355718be277e1138b63013577aabebc1e8043728), [`ed706fa`](https://github.com/livekit/agents-js/commit/ed706fa3fe69bc5289fe2d73c536d567fab3ad2d), [`5c8cd1e`](https://github.com/livekit/agents-js/commit/5c8cd1e76d39186ef23674e0bcc621bc9c143b27), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`b16f198`](https://github.com/livekit/agents-js/commit/b16f1984dc58b2117050647f51d0a1ad654d6504), [`54edf88`](https://github.com/livekit/agents-js/commit/54edf88dd173c825eb6ced25170e950c9d7845d6), [`4c08ddb`](https://github.com/livekit/agents-js/commit/4c08ddbcbc7e230f00512606fb00b53206e6b76b), [`4d46bcf`](https://github.com/livekit/agents-js/commit/4d46bcfd4a555e2a42abb1c9ee7cd2e44a666641), [`15932fa`](https://github.com/livekit/agents-js/commit/15932fa403d98ca4e93bef8bd453b83e5e453c0c)]: + - @livekit/agents@1.6.3 + ## 1.6.2 ### Patch Changes diff --git a/plugins/tavus/package.json b/plugins/tavus/package.json index b791d156e..7cbdd8364 100644 --- a/plugins/tavus/package.json +++ b/plugins/tavus/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-tavus", - "version": "1.6.2", + "version": "1.6.3", "description": "Tavus avatar plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/test/CHANGELOG.md b/plugins/test/CHANGELOG.md index 429855447..1afc1067b 100644 --- a/plugins/test/CHANGELOG.md +++ b/plugins/test/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugins-test +## 1.6.3 + +### Patch Changes + +- Updated dependencies [[`127b100`](https://github.com/livekit/agents-js/commit/127b10037ad405f89ba423c8f6b425106272021b), [`5ed9d72`](https://github.com/livekit/agents-js/commit/5ed9d7289f7ae73976378c21d3b1c7c4627f08d1), [`7e9f46e`](https://github.com/livekit/agents-js/commit/7e9f46ef021700279db1c16ef652354239ffec92), [`4b35349`](https://github.com/livekit/agents-js/commit/4b353492f903c4bce34c917ec27ec4750ece122d), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`98831f7`](https://github.com/livekit/agents-js/commit/98831f71d5dbdb94c9722e87aaa5ab07ba2a3525), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`57e017d`](https://github.com/livekit/agents-js/commit/57e017d3838656679caf0fff22229ca54afcd132), [`7e36727`](https://github.com/livekit/agents-js/commit/7e367279cb62c608e25b844a1dc16914583310a1), [`355718b`](https://github.com/livekit/agents-js/commit/355718be277e1138b63013577aabebc1e8043728), [`ed706fa`](https://github.com/livekit/agents-js/commit/ed706fa3fe69bc5289fe2d73c536d567fab3ad2d), [`5c8cd1e`](https://github.com/livekit/agents-js/commit/5c8cd1e76d39186ef23674e0bcc621bc9c143b27), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`b16f198`](https://github.com/livekit/agents-js/commit/b16f1984dc58b2117050647f51d0a1ad654d6504), [`54edf88`](https://github.com/livekit/agents-js/commit/54edf88dd173c825eb6ced25170e950c9d7845d6), [`4c08ddb`](https://github.com/livekit/agents-js/commit/4c08ddbcbc7e230f00512606fb00b53206e6b76b), [`4d46bcf`](https://github.com/livekit/agents-js/commit/4d46bcfd4a555e2a42abb1c9ee7cd2e44a666641), [`15932fa`](https://github.com/livekit/agents-js/commit/15932fa403d98ca4e93bef8bd453b83e5e453c0c)]: + - @livekit/agents@1.6.3 + ## 1.6.2 ### Patch Changes diff --git a/plugins/test/package.json b/plugins/test/package.json index e082aabe3..91f7d9700 100644 --- a/plugins/test/package.json +++ b/plugins/test/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugins-test", - "version": "1.6.2", + "version": "1.6.3", "description": "Testing suite for LiveKit Agents plugins", "author": "LiveKit", "type": "module", diff --git a/plugins/trugen/CHANGELOG.md b/plugins/trugen/CHANGELOG.md index 90b41d21d..cbe5ce498 100644 --- a/plugins/trugen/CHANGELOG.md +++ b/plugins/trugen/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-trugen +## 1.6.3 + +### Patch Changes + +- Updated dependencies [[`127b100`](https://github.com/livekit/agents-js/commit/127b10037ad405f89ba423c8f6b425106272021b), [`5ed9d72`](https://github.com/livekit/agents-js/commit/5ed9d7289f7ae73976378c21d3b1c7c4627f08d1), [`7e9f46e`](https://github.com/livekit/agents-js/commit/7e9f46ef021700279db1c16ef652354239ffec92), [`4b35349`](https://github.com/livekit/agents-js/commit/4b353492f903c4bce34c917ec27ec4750ece122d), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`98831f7`](https://github.com/livekit/agents-js/commit/98831f71d5dbdb94c9722e87aaa5ab07ba2a3525), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`57e017d`](https://github.com/livekit/agents-js/commit/57e017d3838656679caf0fff22229ca54afcd132), [`7e36727`](https://github.com/livekit/agents-js/commit/7e367279cb62c608e25b844a1dc16914583310a1), [`355718b`](https://github.com/livekit/agents-js/commit/355718be277e1138b63013577aabebc1e8043728), [`ed706fa`](https://github.com/livekit/agents-js/commit/ed706fa3fe69bc5289fe2d73c536d567fab3ad2d), [`5c8cd1e`](https://github.com/livekit/agents-js/commit/5c8cd1e76d39186ef23674e0bcc621bc9c143b27), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`b16f198`](https://github.com/livekit/agents-js/commit/b16f1984dc58b2117050647f51d0a1ad654d6504), [`54edf88`](https://github.com/livekit/agents-js/commit/54edf88dd173c825eb6ced25170e950c9d7845d6), [`4c08ddb`](https://github.com/livekit/agents-js/commit/4c08ddbcbc7e230f00512606fb00b53206e6b76b), [`4d46bcf`](https://github.com/livekit/agents-js/commit/4d46bcfd4a555e2a42abb1c9ee7cd2e44a666641), [`15932fa`](https://github.com/livekit/agents-js/commit/15932fa403d98ca4e93bef8bd453b83e5e453c0c)]: + - @livekit/agents@1.6.3 + ## 1.6.2 ### Patch Changes diff --git a/plugins/trugen/package.json b/plugins/trugen/package.json index d30639979..3f66eefd2 100644 --- a/plugins/trugen/package.json +++ b/plugins/trugen/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-trugen", - "version": "1.6.2", + "version": "1.6.3", "description": "Trugen avatar plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/xai/CHANGELOG.md b/plugins/xai/CHANGELOG.md index ec3f7e29a..ee1dd48b9 100644 --- a/plugins/xai/CHANGELOG.md +++ b/plugins/xai/CHANGELOG.md @@ -1,5 +1,17 @@ # @livekit/agents-plugin-xai +## 1.6.3 + +### Patch Changes + +- Emit one final xAI user transcript per turn and settle rejected realtime chat context updates. - [#2238](https://github.com/livekit/agents-js/pull/2238) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- Emit interim input audio transcripts for xAI realtime in-progress transcription events. - [#2238](https://github.com/livekit/agents-js/pull/2238) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot)) + +- Updated dependencies [[`127b100`](https://github.com/livekit/agents-js/commit/127b10037ad405f89ba423c8f6b425106272021b), [`5ed9d72`](https://github.com/livekit/agents-js/commit/5ed9d7289f7ae73976378c21d3b1c7c4627f08d1), [`7e9f46e`](https://github.com/livekit/agents-js/commit/7e9f46ef021700279db1c16ef652354239ffec92), [`4b35349`](https://github.com/livekit/agents-js/commit/4b353492f903c4bce34c917ec27ec4750ece122d), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`1a00d8e`](https://github.com/livekit/agents-js/commit/1a00d8e12b5412a8cb8be45691070b3540904010), [`98831f7`](https://github.com/livekit/agents-js/commit/98831f71d5dbdb94c9722e87aaa5ab07ba2a3525), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`57e017d`](https://github.com/livekit/agents-js/commit/57e017d3838656679caf0fff22229ca54afcd132), [`7e36727`](https://github.com/livekit/agents-js/commit/7e367279cb62c608e25b844a1dc16914583310a1), [`355718b`](https://github.com/livekit/agents-js/commit/355718be277e1138b63013577aabebc1e8043728), [`6da9b0a`](https://github.com/livekit/agents-js/commit/6da9b0a53917f726fe5ceac37abebd4df5e253a6), [`ed706fa`](https://github.com/livekit/agents-js/commit/ed706fa3fe69bc5289fe2d73c536d567fab3ad2d), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`5c8cd1e`](https://github.com/livekit/agents-js/commit/5c8cd1e76d39186ef23674e0bcc621bc9c143b27), [`ce2d287`](https://github.com/livekit/agents-js/commit/ce2d28778b7105848beed7e57b0c5384ca4c30cf), [`b16f198`](https://github.com/livekit/agents-js/commit/b16f1984dc58b2117050647f51d0a1ad654d6504), [`54edf88`](https://github.com/livekit/agents-js/commit/54edf88dd173c825eb6ced25170e950c9d7845d6), [`4c08ddb`](https://github.com/livekit/agents-js/commit/4c08ddbcbc7e230f00512606fb00b53206e6b76b), [`4d46bcf`](https://github.com/livekit/agents-js/commit/4d46bcfd4a555e2a42abb1c9ee7cd2e44a666641), [`15932fa`](https://github.com/livekit/agents-js/commit/15932fa403d98ca4e93bef8bd453b83e5e453c0c), [`d8f3c51`](https://github.com/livekit/agents-js/commit/d8f3c516ed5dfa4c3d13518b69e1f7fc8f2a12bf), [`3ff013c`](https://github.com/livekit/agents-js/commit/3ff013c0663b776993f1fc63bbb6a439e3fc6bcd)]: + - @livekit/agents@1.6.3 + - @livekit/agents-plugin-openai@1.6.3 + ## 1.6.2 ### Patch Changes diff --git a/plugins/xai/package.json b/plugins/xai/package.json index b08d61029..7fd96b40a 100644 --- a/plugins/xai/package.json +++ b/plugins/xai/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-xai", - "version": "1.6.2", + "version": "1.6.3", "description": "xAI plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs",