diff --git a/.changeset/agent-session-default-options.md b/.changeset/agent-session-default-options.md deleted file mode 100644 index 36d5b942e..000000000 --- a/.changeset/agent-session-default-options.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': patch ---- - -fix(agents): support constructing `AgentSession` with no arguments diff --git a/.changeset/amd-late-stt-cancel-short-greeting.md b/.changeset/amd-late-stt-cancel-short-greeting.md deleted file mode 100644 index 83a3f7b1f..000000000 --- a/.changeset/amd-late-stt-cancel-short-greeting.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': patch ---- - -`AMD`: cancel the pre-baked HUMAN/`short_greeting` silence timer when a final STT transcript arrives inside the short-speech window, replacing it with a `long_speech` timer anchored at `speechEndedAt + MACHINE_SILENCE_THRESHOLD_MS` so the LLM verdict gets the final word. Mirrors the python fix in [`livekit/agents#5637`](https://github.com/livekit/agents/pull/5637). diff --git a/.changeset/amd-python-parity.md b/.changeset/amd-python-parity.md deleted file mode 100644 index 8f2398299..000000000 --- a/.changeset/amd-python-parity.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': minor ---- - -`voice.AMD` reaches feature parity with python. diff --git a/.changeset/amd-tunable-params-postpone.md b/.changeset/amd-tunable-params-postpone.md deleted file mode 100644 index a6c402713..000000000 --- a/.changeset/amd-tunable-params-postpone.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': patch ---- - -Port AMD improvements from python `livekit/agents#5584`. `voice.AMD` now exposes the previously hard-coded timing thresholds (`humanSpeechThresholdMs`, `humanSilenceThresholdMs`, `machineSilenceThresholdMs`) and the classification `prompt` as constructor options, defers to the LLM (instead of forcing a HUMAN verdict) when a transcript is already available after a short greeting, and accepts a `participantIdentity` hint plus a `suppressCompatibilityWarning` flag. The classifier now offers two LLM tools — `save_prediction` and `postpone_termination` (capped at 3 extensions × 10s) — letting the model request more audio when the transcript is ambiguous; if the model returns plain JSON instead of tool calls, AMD falls back to the previous content-parsing path. AMD also logs a one-shot warning when the resolved LLM is not in the bundled `EVALUATED_LLM_MODELS` list. diff --git a/.changeset/fishaudio-plugin.md b/.changeset/fishaudio-plugin.md deleted file mode 100644 index a3f2f1362..000000000 --- a/.changeset/fishaudio-plugin.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -"@livekit/agents-plugin-fishaudio": patch ---- - -Add Fish Audio TTS plugin (`@livekit/agents-plugin-fishaudio`). Streams via the -Fish Audio Live TTS WebSocket endpoint for low-latency synthesis (sentence-level -flushing, ~230ms TTFB), with HTTP `/v1/tts` for one-shot synthesis. Output is -raw 16-bit PCM (24 kHz default). diff --git a/.changeset/inference-llm-empty-apikey.md b/.changeset/inference-llm-empty-apikey.md deleted file mode 100644 index 5234b7e07..000000000 --- a/.changeset/inference-llm-empty-apikey.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/agents': patch ---- - -fix(inference): make `inference.LLM` compatible with openai >= 6.36.0 diff --git a/.changeset/metal-jars-relate.md b/.changeset/metal-jars-relate.md deleted file mode 100644 index 59f0e5b58..000000000 --- a/.changeset/metal-jars-relate.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@livekit/agents": patch ---- - -Add comments to agent side and inference side fallback adapters diff --git a/.changeset/popular-coats-march.md b/.changeset/popular-coats-march.md deleted file mode 100644 index 09d7aa6a1..000000000 --- a/.changeset/popular-coats-march.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@livekit/agents": patch ---- - -refactor(agents): replace uuid with crypto.randomUUID diff --git a/.changeset/witty-lemons-dance.md b/.changeset/witty-lemons-dance.md deleted file mode 100644 index bbb19da4c..000000000 --- a/.changeset/witty-lemons-dance.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@livekit/agents-plugin-lemonslice": patch ---- - -Wait for LemonSlice avatar playback-start notifications before marking agent audio as playing. diff --git a/agents/CHANGELOG.md b/agents/CHANGELOG.md index d9cd6c953..49738b995 100644 --- a/agents/CHANGELOG.md +++ b/agents/CHANGELOG.md @@ -1,5 +1,25 @@ # @livekit/agents +## 1.4.0 + +### Minor Changes + +- `voice.AMD` reaches feature parity with python. - [#1390](https://github.com/livekit/agents-js/pull/1390) ([@toubatbrian](https://github.com/toubatbrian)) + +### Patch Changes + +- fix(agents): support constructing `AgentSession` with no arguments - [#1410](https://github.com/livekit/agents-js/pull/1410) ([@u9g](https://github.com/u9g)) + +- `AMD`: cancel the pre-baked HUMAN/`short_greeting` silence timer when a final STT transcript arrives inside the short-speech window, replacing it with a `long_speech` timer anchored at `speechEndedAt + MACHINE_SILENCE_THRESHOLD_MS` so the LLM verdict gets the final word. Mirrors the python fix in [`livekit/agents#5637`](https://github.com/livekit/agents/pull/5637). - [#1390](https://github.com/livekit/agents-js/pull/1390) ([@toubatbrian](https://github.com/toubatbrian)) + +- Port AMD improvements from python `livekit/agents#5584`. `voice.AMD` now exposes the previously hard-coded timing thresholds (`humanSpeechThresholdMs`, `humanSilenceThresholdMs`, `machineSilenceThresholdMs`) and the classification `prompt` as constructor options, defers to the LLM (instead of forcing a HUMAN verdict) when a transcript is already available after a short greeting, and accepts a `participantIdentity` hint plus a `suppressCompatibilityWarning` flag. The classifier now offers two LLM tools — `save_prediction` and `postpone_termination` (capped at 3 extensions × 10s) — letting the model request more audio when the transcript is ambiguous; if the model returns plain JSON instead of tool calls, AMD falls back to the previous content-parsing path. AMD also logs a one-shot warning when the resolved LLM is not in the bundled `EVALUATED_LLM_MODELS` list. - [#1368](https://github.com/livekit/agents-js/pull/1368) ([@toubatbrian](https://github.com/toubatbrian)) + +- fix(inference): make `inference.LLM` compatible with openai >= 6.36.0 - [#1411](https://github.com/livekit/agents-js/pull/1411) ([@u9g](https://github.com/u9g)) + +- Add comments to agent side and inference side fallback adapters - [#1398](https://github.com/livekit/agents-js/pull/1398) ([@tmshapland](https://github.com/tmshapland)) + +- refactor(agents): replace uuid with crypto.randomUUID - [#1392](https://github.com/livekit/agents-js/pull/1392) ([@benasher44](https://github.com/benasher44)) + ## 1.3.4 ### Patch Changes diff --git a/agents/package.json b/agents/package.json index 5190884b8..0cd795d37 100644 --- a/agents/package.json +++ b/agents/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents", - "version": "1.3.4", + "version": "1.4.0", "description": "LiveKit Agents - Node.js", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/anam/CHANGELOG.md b/plugins/anam/CHANGELOG.md index cf070d9a2..7e8b6a89c 100644 --- a/plugins/anam/CHANGELOG.md +++ b/plugins/anam/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-anam +## 1.4.0 + +### Patch Changes + +- Updated dependencies [[`5dcb659abb7155dd09edd483ef9f331d3ea4c71f`](https://github.com/livekit/agents-js/commit/5dcb659abb7155dd09edd483ef9f331d3ea4c71f), [`6df9c2830ae97d00a97e74b1ebdee861266ac5ac`](https://github.com/livekit/agents-js/commit/6df9c2830ae97d00a97e74b1ebdee861266ac5ac), [`6df9c2830ae97d00a97e74b1ebdee861266ac5ac`](https://github.com/livekit/agents-js/commit/6df9c2830ae97d00a97e74b1ebdee861266ac5ac), [`7cd03882c19f1623cede60813e7cd25388bb6d53`](https://github.com/livekit/agents-js/commit/7cd03882c19f1623cede60813e7cd25388bb6d53), [`2f4714beec26a6b2b6f57ec64903b885c162d630`](https://github.com/livekit/agents-js/commit/2f4714beec26a6b2b6f57ec64903b885c162d630), [`0f4cd614d84e600e6657585c1d00f27d9c1473c1`](https://github.com/livekit/agents-js/commit/0f4cd614d84e600e6657585c1d00f27d9c1473c1), [`657f9ad4090280d1c53cace2e8b7bdf15291cbb2`](https://github.com/livekit/agents-js/commit/657f9ad4090280d1c53cace2e8b7bdf15291cbb2)]: + - @livekit/agents@1.4.0 + ## 1.3.4 ### Patch Changes diff --git a/plugins/anam/package.json b/plugins/anam/package.json index f1e6d9d83..374996235 100644 --- a/plugins/anam/package.json +++ b/plugins/anam/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-anam", - "version": "1.3.4", + "version": "1.4.0", "description": "Anam plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/assemblyai/package.json b/plugins/assemblyai/package.json index 389ef3d30..f3171dfc0 100644 --- a/plugins/assemblyai/package.json +++ b/plugins/assemblyai/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-assemblyai", - "version": "1.3.4", + "version": "1.4.0", "description": "AssemblyAI plugin for LiveKit Agents for Node.js", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/baseten/package.json b/plugins/baseten/package.json index 06752191e..151045216 100644 --- a/plugins/baseten/package.json +++ b/plugins/baseten/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-baseten", - "version": "1.3.4", + "version": "1.4.0", "description": "Baseten plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/bey/CHANGELOG.md b/plugins/bey/CHANGELOG.md index 609e000b9..aa6cadf46 100644 --- a/plugins/bey/CHANGELOG.md +++ b/plugins/bey/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-bey +## 1.4.0 + +### Patch Changes + +- Updated dependencies [[`5dcb659abb7155dd09edd483ef9f331d3ea4c71f`](https://github.com/livekit/agents-js/commit/5dcb659abb7155dd09edd483ef9f331d3ea4c71f), [`6df9c2830ae97d00a97e74b1ebdee861266ac5ac`](https://github.com/livekit/agents-js/commit/6df9c2830ae97d00a97e74b1ebdee861266ac5ac), [`6df9c2830ae97d00a97e74b1ebdee861266ac5ac`](https://github.com/livekit/agents-js/commit/6df9c2830ae97d00a97e74b1ebdee861266ac5ac), [`7cd03882c19f1623cede60813e7cd25388bb6d53`](https://github.com/livekit/agents-js/commit/7cd03882c19f1623cede60813e7cd25388bb6d53), [`2f4714beec26a6b2b6f57ec64903b885c162d630`](https://github.com/livekit/agents-js/commit/2f4714beec26a6b2b6f57ec64903b885c162d630), [`0f4cd614d84e600e6657585c1d00f27d9c1473c1`](https://github.com/livekit/agents-js/commit/0f4cd614d84e600e6657585c1d00f27d9c1473c1), [`657f9ad4090280d1c53cace2e8b7bdf15291cbb2`](https://github.com/livekit/agents-js/commit/657f9ad4090280d1c53cace2e8b7bdf15291cbb2)]: + - @livekit/agents@1.4.0 + ## 1.3.4 ### Patch Changes diff --git a/plugins/bey/package.json b/plugins/bey/package.json index f09447fd8..d75c4e519 100644 --- a/plugins/bey/package.json +++ b/plugins/bey/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-bey", - "version": "1.3.4", + "version": "1.4.0", "description": "Beyond Presence plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/cartesia/CHANGELOG.md b/plugins/cartesia/CHANGELOG.md index 4d8e27a98..e6ed77ed0 100644 --- a/plugins/cartesia/CHANGELOG.md +++ b/plugins/cartesia/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-cartesia +## 1.4.0 + +### Patch Changes + +- Updated dependencies [[`5dcb659abb7155dd09edd483ef9f331d3ea4c71f`](https://github.com/livekit/agents-js/commit/5dcb659abb7155dd09edd483ef9f331d3ea4c71f), [`6df9c2830ae97d00a97e74b1ebdee861266ac5ac`](https://github.com/livekit/agents-js/commit/6df9c2830ae97d00a97e74b1ebdee861266ac5ac), [`6df9c2830ae97d00a97e74b1ebdee861266ac5ac`](https://github.com/livekit/agents-js/commit/6df9c2830ae97d00a97e74b1ebdee861266ac5ac), [`7cd03882c19f1623cede60813e7cd25388bb6d53`](https://github.com/livekit/agents-js/commit/7cd03882c19f1623cede60813e7cd25388bb6d53), [`2f4714beec26a6b2b6f57ec64903b885c162d630`](https://github.com/livekit/agents-js/commit/2f4714beec26a6b2b6f57ec64903b885c162d630), [`0f4cd614d84e600e6657585c1d00f27d9c1473c1`](https://github.com/livekit/agents-js/commit/0f4cd614d84e600e6657585c1d00f27d9c1473c1), [`657f9ad4090280d1c53cace2e8b7bdf15291cbb2`](https://github.com/livekit/agents-js/commit/657f9ad4090280d1c53cace2e8b7bdf15291cbb2)]: + - @livekit/agents@1.4.0 + ## 1.3.4 ### Patch Changes diff --git a/plugins/cartesia/package.json b/plugins/cartesia/package.json index ff14a589c..833f34720 100644 --- a/plugins/cartesia/package.json +++ b/plugins/cartesia/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-cartesia", - "version": "1.3.4", + "version": "1.4.0", "description": "Cartesia plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/cerebras/package.json b/plugins/cerebras/package.json index 0b5ad867d..55f85807a 100644 --- a/plugins/cerebras/package.json +++ b/plugins/cerebras/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-cerebras", - "version": "1.3.4", + "version": "1.4.0", "description": "Cerebras plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/deepgram/CHANGELOG.md b/plugins/deepgram/CHANGELOG.md index 5fb6b212f..19d73c76d 100644 --- a/plugins/deepgram/CHANGELOG.md +++ b/plugins/deepgram/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-deepgram +## 1.4.0 + +### Patch Changes + +- Updated dependencies [[`5dcb659abb7155dd09edd483ef9f331d3ea4c71f`](https://github.com/livekit/agents-js/commit/5dcb659abb7155dd09edd483ef9f331d3ea4c71f), [`6df9c2830ae97d00a97e74b1ebdee861266ac5ac`](https://github.com/livekit/agents-js/commit/6df9c2830ae97d00a97e74b1ebdee861266ac5ac), [`6df9c2830ae97d00a97e74b1ebdee861266ac5ac`](https://github.com/livekit/agents-js/commit/6df9c2830ae97d00a97e74b1ebdee861266ac5ac), [`7cd03882c19f1623cede60813e7cd25388bb6d53`](https://github.com/livekit/agents-js/commit/7cd03882c19f1623cede60813e7cd25388bb6d53), [`2f4714beec26a6b2b6f57ec64903b885c162d630`](https://github.com/livekit/agents-js/commit/2f4714beec26a6b2b6f57ec64903b885c162d630), [`0f4cd614d84e600e6657585c1d00f27d9c1473c1`](https://github.com/livekit/agents-js/commit/0f4cd614d84e600e6657585c1d00f27d9c1473c1), [`657f9ad4090280d1c53cace2e8b7bdf15291cbb2`](https://github.com/livekit/agents-js/commit/657f9ad4090280d1c53cace2e8b7bdf15291cbb2)]: + - @livekit/agents@1.4.0 + ## 1.3.4 ### Patch Changes diff --git a/plugins/deepgram/package.json b/plugins/deepgram/package.json index cce22b7ba..8dc9c03cc 100644 --- a/plugins/deepgram/package.json +++ b/plugins/deepgram/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-deepgram", - "version": "1.3.4", + "version": "1.4.0", "description": "Deepgram plugin for LiveKit Agents for Node.js", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/elevenlabs/CHANGELOG.md b/plugins/elevenlabs/CHANGELOG.md index 2eb816f62..d97bb5385 100644 --- a/plugins/elevenlabs/CHANGELOG.md +++ b/plugins/elevenlabs/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-elevenlabs +## 1.4.0 + +### Patch Changes + +- Updated dependencies [[`5dcb659abb7155dd09edd483ef9f331d3ea4c71f`](https://github.com/livekit/agents-js/commit/5dcb659abb7155dd09edd483ef9f331d3ea4c71f), [`6df9c2830ae97d00a97e74b1ebdee861266ac5ac`](https://github.com/livekit/agents-js/commit/6df9c2830ae97d00a97e74b1ebdee861266ac5ac), [`6df9c2830ae97d00a97e74b1ebdee861266ac5ac`](https://github.com/livekit/agents-js/commit/6df9c2830ae97d00a97e74b1ebdee861266ac5ac), [`7cd03882c19f1623cede60813e7cd25388bb6d53`](https://github.com/livekit/agents-js/commit/7cd03882c19f1623cede60813e7cd25388bb6d53), [`2f4714beec26a6b2b6f57ec64903b885c162d630`](https://github.com/livekit/agents-js/commit/2f4714beec26a6b2b6f57ec64903b885c162d630), [`0f4cd614d84e600e6657585c1d00f27d9c1473c1`](https://github.com/livekit/agents-js/commit/0f4cd614d84e600e6657585c1d00f27d9c1473c1), [`657f9ad4090280d1c53cace2e8b7bdf15291cbb2`](https://github.com/livekit/agents-js/commit/657f9ad4090280d1c53cace2e8b7bdf15291cbb2)]: + - @livekit/agents@1.4.0 + ## 1.3.4 ### Patch Changes diff --git a/plugins/elevenlabs/package.json b/plugins/elevenlabs/package.json index 98290a98e..4691bdf05 100644 --- a/plugins/elevenlabs/package.json +++ b/plugins/elevenlabs/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-elevenlabs", - "version": "1.3.4", + "version": "1.4.0", "description": "ElevenLabs plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/fishaudio/package.json b/plugins/fishaudio/package.json index d5ed0e252..d159d7e9c 100644 --- a/plugins/fishaudio/package.json +++ b/plugins/fishaudio/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-fishaudio", - "version": "1.3.2", + "version": "1.4.0", "description": "Fish Audio plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/google/CHANGELOG.md b/plugins/google/CHANGELOG.md index 483cfb0f4..f8e4d7493 100644 --- a/plugins/google/CHANGELOG.md +++ b/plugins/google/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-google +## 1.4.0 + +### Patch Changes + +- Updated dependencies [[`5dcb659abb7155dd09edd483ef9f331d3ea4c71f`](https://github.com/livekit/agents-js/commit/5dcb659abb7155dd09edd483ef9f331d3ea4c71f), [`6df9c2830ae97d00a97e74b1ebdee861266ac5ac`](https://github.com/livekit/agents-js/commit/6df9c2830ae97d00a97e74b1ebdee861266ac5ac), [`6df9c2830ae97d00a97e74b1ebdee861266ac5ac`](https://github.com/livekit/agents-js/commit/6df9c2830ae97d00a97e74b1ebdee861266ac5ac), [`7cd03882c19f1623cede60813e7cd25388bb6d53`](https://github.com/livekit/agents-js/commit/7cd03882c19f1623cede60813e7cd25388bb6d53), [`2f4714beec26a6b2b6f57ec64903b885c162d630`](https://github.com/livekit/agents-js/commit/2f4714beec26a6b2b6f57ec64903b885c162d630), [`0f4cd614d84e600e6657585c1d00f27d9c1473c1`](https://github.com/livekit/agents-js/commit/0f4cd614d84e600e6657585c1d00f27d9c1473c1), [`657f9ad4090280d1c53cace2e8b7bdf15291cbb2`](https://github.com/livekit/agents-js/commit/657f9ad4090280d1c53cace2e8b7bdf15291cbb2)]: + - @livekit/agents@1.4.0 + ## 1.3.4 ### Patch Changes diff --git a/plugins/google/package.json b/plugins/google/package.json index a0c9e1158..ceff6e2b2 100644 --- a/plugins/google/package.json +++ b/plugins/google/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-google", - "version": "1.3.4", + "version": "1.4.0", "description": "Google Gemini plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/hedra/package.json b/plugins/hedra/package.json index 947dc1e74..7ba529a7c 100644 --- a/plugins/hedra/package.json +++ b/plugins/hedra/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-hedra", - "version": "1.3.4", + "version": "1.4.0", "description": "Hedra avatar plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/inworld/package.json b/plugins/inworld/package.json index c1f29fe41..7b93e8883 100644 --- a/plugins/inworld/package.json +++ b/plugins/inworld/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-inworld", - "version": "1.3.4", + "version": "1.4.0", "description": "Inworld plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/lemonslice/package.json b/plugins/lemonslice/package.json index 5f2025e2d..4d67f8706 100644 --- a/plugins/lemonslice/package.json +++ b/plugins/lemonslice/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-lemonslice", - "version": "1.3.4", + "version": "1.4.0", "description": "LemonSlice avatar plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/liveavatar/package.json b/plugins/liveavatar/package.json index f15eb5bfc..102c2530b 100644 --- a/plugins/liveavatar/package.json +++ b/plugins/liveavatar/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-liveavatar", - "version": "1.3.4", + "version": "1.4.0", "description": "LiveAvatar avatar plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/livekit/CHANGELOG.md b/plugins/livekit/CHANGELOG.md index 1e18e30a2..db217e4b3 100644 --- a/plugins/livekit/CHANGELOG.md +++ b/plugins/livekit/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-livekit +## 1.4.0 + +### Patch Changes + +- Updated dependencies [[`5dcb659abb7155dd09edd483ef9f331d3ea4c71f`](https://github.com/livekit/agents-js/commit/5dcb659abb7155dd09edd483ef9f331d3ea4c71f), [`6df9c2830ae97d00a97e74b1ebdee861266ac5ac`](https://github.com/livekit/agents-js/commit/6df9c2830ae97d00a97e74b1ebdee861266ac5ac), [`6df9c2830ae97d00a97e74b1ebdee861266ac5ac`](https://github.com/livekit/agents-js/commit/6df9c2830ae97d00a97e74b1ebdee861266ac5ac), [`7cd03882c19f1623cede60813e7cd25388bb6d53`](https://github.com/livekit/agents-js/commit/7cd03882c19f1623cede60813e7cd25388bb6d53), [`2f4714beec26a6b2b6f57ec64903b885c162d630`](https://github.com/livekit/agents-js/commit/2f4714beec26a6b2b6f57ec64903b885c162d630), [`0f4cd614d84e600e6657585c1d00f27d9c1473c1`](https://github.com/livekit/agents-js/commit/0f4cd614d84e600e6657585c1d00f27d9c1473c1), [`657f9ad4090280d1c53cace2e8b7bdf15291cbb2`](https://github.com/livekit/agents-js/commit/657f9ad4090280d1c53cace2e8b7bdf15291cbb2)]: + - @livekit/agents@1.4.0 + ## 1.3.4 ### Patch Changes diff --git a/plugins/livekit/package.json b/plugins/livekit/package.json index 9528ff9ed..599b96dea 100644 --- a/plugins/livekit/package.json +++ b/plugins/livekit/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-livekit", - "version": "1.3.4", + "version": "1.4.0", "description": "Additional utilities for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/minimax/package.json b/plugins/minimax/package.json index 7838fb70a..ea31a48de 100644 --- a/plugins/minimax/package.json +++ b/plugins/minimax/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-minimax", - "version": "1.3.4", + "version": "1.4.0", "description": "MiniMax plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/mistral/package.json b/plugins/mistral/package.json index 5cdbf10be..c54c5ecbf 100644 --- a/plugins/mistral/package.json +++ b/plugins/mistral/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-mistral", - "version": "1.3.4", + "version": "1.4.0", "description": "Mistral AI plugin for LiveKit Node Agents (deprecated, use @livekit/agents-plugin-mistralai)", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/mistralai/package.json b/plugins/mistralai/package.json index f7a7fc022..6d0c024c1 100644 --- a/plugins/mistralai/package.json +++ b/plugins/mistralai/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-mistralai", - "version": "1.3.4", + "version": "1.4.0", "description": "Mistral AI plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/neuphonic/CHANGELOG.md b/plugins/neuphonic/CHANGELOG.md index f7fe38904..66b7ea6e3 100644 --- a/plugins/neuphonic/CHANGELOG.md +++ b/plugins/neuphonic/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-neuphonic +## 1.4.0 + +### Patch Changes + +- Updated dependencies [[`5dcb659abb7155dd09edd483ef9f331d3ea4c71f`](https://github.com/livekit/agents-js/commit/5dcb659abb7155dd09edd483ef9f331d3ea4c71f), [`6df9c2830ae97d00a97e74b1ebdee861266ac5ac`](https://github.com/livekit/agents-js/commit/6df9c2830ae97d00a97e74b1ebdee861266ac5ac), [`6df9c2830ae97d00a97e74b1ebdee861266ac5ac`](https://github.com/livekit/agents-js/commit/6df9c2830ae97d00a97e74b1ebdee861266ac5ac), [`7cd03882c19f1623cede60813e7cd25388bb6d53`](https://github.com/livekit/agents-js/commit/7cd03882c19f1623cede60813e7cd25388bb6d53), [`2f4714beec26a6b2b6f57ec64903b885c162d630`](https://github.com/livekit/agents-js/commit/2f4714beec26a6b2b6f57ec64903b885c162d630), [`0f4cd614d84e600e6657585c1d00f27d9c1473c1`](https://github.com/livekit/agents-js/commit/0f4cd614d84e600e6657585c1d00f27d9c1473c1), [`657f9ad4090280d1c53cace2e8b7bdf15291cbb2`](https://github.com/livekit/agents-js/commit/657f9ad4090280d1c53cace2e8b7bdf15291cbb2)]: + - @livekit/agents@1.4.0 + ## 1.3.4 ### Patch Changes diff --git a/plugins/neuphonic/package.json b/plugins/neuphonic/package.json index 071caa9a5..ff9f3efa7 100644 --- a/plugins/neuphonic/package.json +++ b/plugins/neuphonic/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-neuphonic", - "version": "1.3.4", + "version": "1.4.0", "description": "Neuphonic plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/openai/CHANGELOG.md b/plugins/openai/CHANGELOG.md index a000d98ee..9883ceafe 100644 --- a/plugins/openai/CHANGELOG.md +++ b/plugins/openai/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-openai +## 1.4.0 + +### Patch Changes + +- Updated dependencies [[`5dcb659abb7155dd09edd483ef9f331d3ea4c71f`](https://github.com/livekit/agents-js/commit/5dcb659abb7155dd09edd483ef9f331d3ea4c71f), [`6df9c2830ae97d00a97e74b1ebdee861266ac5ac`](https://github.com/livekit/agents-js/commit/6df9c2830ae97d00a97e74b1ebdee861266ac5ac), [`6df9c2830ae97d00a97e74b1ebdee861266ac5ac`](https://github.com/livekit/agents-js/commit/6df9c2830ae97d00a97e74b1ebdee861266ac5ac), [`7cd03882c19f1623cede60813e7cd25388bb6d53`](https://github.com/livekit/agents-js/commit/7cd03882c19f1623cede60813e7cd25388bb6d53), [`2f4714beec26a6b2b6f57ec64903b885c162d630`](https://github.com/livekit/agents-js/commit/2f4714beec26a6b2b6f57ec64903b885c162d630), [`0f4cd614d84e600e6657585c1d00f27d9c1473c1`](https://github.com/livekit/agents-js/commit/0f4cd614d84e600e6657585c1d00f27d9c1473c1), [`657f9ad4090280d1c53cace2e8b7bdf15291cbb2`](https://github.com/livekit/agents-js/commit/657f9ad4090280d1c53cace2e8b7bdf15291cbb2)]: + - @livekit/agents@1.4.0 + ## 1.3.4 ### Patch Changes diff --git a/plugins/openai/package.json b/plugins/openai/package.json index c23e4155f..47ac0f5f9 100644 --- a/plugins/openai/package.json +++ b/plugins/openai/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-openai", - "version": "1.3.4", + "version": "1.4.0", "description": "OpenAI plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/phonic/package.json b/plugins/phonic/package.json index 6e99be15f..4b8b06d88 100644 --- a/plugins/phonic/package.json +++ b/plugins/phonic/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-phonic", - "version": "1.3.4", + "version": "1.4.0", "description": "Phonic STS plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/resemble/CHANGELOG.md b/plugins/resemble/CHANGELOG.md index 93b045ccd..2eea5398b 100644 --- a/plugins/resemble/CHANGELOG.md +++ b/plugins/resemble/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-resemble +## 1.4.0 + +### Patch Changes + +- Updated dependencies [[`5dcb659abb7155dd09edd483ef9f331d3ea4c71f`](https://github.com/livekit/agents-js/commit/5dcb659abb7155dd09edd483ef9f331d3ea4c71f), [`6df9c2830ae97d00a97e74b1ebdee861266ac5ac`](https://github.com/livekit/agents-js/commit/6df9c2830ae97d00a97e74b1ebdee861266ac5ac), [`6df9c2830ae97d00a97e74b1ebdee861266ac5ac`](https://github.com/livekit/agents-js/commit/6df9c2830ae97d00a97e74b1ebdee861266ac5ac), [`7cd03882c19f1623cede60813e7cd25388bb6d53`](https://github.com/livekit/agents-js/commit/7cd03882c19f1623cede60813e7cd25388bb6d53), [`2f4714beec26a6b2b6f57ec64903b885c162d630`](https://github.com/livekit/agents-js/commit/2f4714beec26a6b2b6f57ec64903b885c162d630), [`0f4cd614d84e600e6657585c1d00f27d9c1473c1`](https://github.com/livekit/agents-js/commit/0f4cd614d84e600e6657585c1d00f27d9c1473c1), [`657f9ad4090280d1c53cace2e8b7bdf15291cbb2`](https://github.com/livekit/agents-js/commit/657f9ad4090280d1c53cace2e8b7bdf15291cbb2)]: + - @livekit/agents@1.4.0 + ## 1.3.4 ### Patch Changes diff --git a/plugins/resemble/package.json b/plugins/resemble/package.json index f837f472a..f61b87b0a 100644 --- a/plugins/resemble/package.json +++ b/plugins/resemble/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-resemble", - "version": "1.3.4", + "version": "1.4.0", "description": "Resemble plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/rime/CHANGELOG.md b/plugins/rime/CHANGELOG.md index 72052abcd..08fdb5898 100644 --- a/plugins/rime/CHANGELOG.md +++ b/plugins/rime/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-rime +## 1.4.0 + +### Patch Changes + +- Updated dependencies [[`5dcb659abb7155dd09edd483ef9f331d3ea4c71f`](https://github.com/livekit/agents-js/commit/5dcb659abb7155dd09edd483ef9f331d3ea4c71f), [`6df9c2830ae97d00a97e74b1ebdee861266ac5ac`](https://github.com/livekit/agents-js/commit/6df9c2830ae97d00a97e74b1ebdee861266ac5ac), [`6df9c2830ae97d00a97e74b1ebdee861266ac5ac`](https://github.com/livekit/agents-js/commit/6df9c2830ae97d00a97e74b1ebdee861266ac5ac), [`7cd03882c19f1623cede60813e7cd25388bb6d53`](https://github.com/livekit/agents-js/commit/7cd03882c19f1623cede60813e7cd25388bb6d53), [`2f4714beec26a6b2b6f57ec64903b885c162d630`](https://github.com/livekit/agents-js/commit/2f4714beec26a6b2b6f57ec64903b885c162d630), [`0f4cd614d84e600e6657585c1d00f27d9c1473c1`](https://github.com/livekit/agents-js/commit/0f4cd614d84e600e6657585c1d00f27d9c1473c1), [`657f9ad4090280d1c53cace2e8b7bdf15291cbb2`](https://github.com/livekit/agents-js/commit/657f9ad4090280d1c53cace2e8b7bdf15291cbb2)]: + - @livekit/agents@1.4.0 + ## 1.3.4 ### Patch Changes diff --git a/plugins/rime/package.json b/plugins/rime/package.json index a0e47175b..3d23703bd 100644 --- a/plugins/rime/package.json +++ b/plugins/rime/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-rime", - "version": "1.3.4", + "version": "1.4.0", "description": "Rime plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/runway/package.json b/plugins/runway/package.json index 936514e3a..e37398502 100644 --- a/plugins/runway/package.json +++ b/plugins/runway/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-runway", - "version": "1.3.4", + "version": "1.4.0", "description": "Runway plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/sarvam/package.json b/plugins/sarvam/package.json index aaa8fce00..4b4f0bb7a 100644 --- a/plugins/sarvam/package.json +++ b/plugins/sarvam/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-sarvam", - "version": "1.3.4", + "version": "1.4.0", "description": "Sarvam AI plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/silero/CHANGELOG.md b/plugins/silero/CHANGELOG.md index ffed4728f..d0d69e39f 100644 --- a/plugins/silero/CHANGELOG.md +++ b/plugins/silero/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugin-silero +## 1.4.0 + +### Patch Changes + +- Updated dependencies [[`5dcb659abb7155dd09edd483ef9f331d3ea4c71f`](https://github.com/livekit/agents-js/commit/5dcb659abb7155dd09edd483ef9f331d3ea4c71f), [`6df9c2830ae97d00a97e74b1ebdee861266ac5ac`](https://github.com/livekit/agents-js/commit/6df9c2830ae97d00a97e74b1ebdee861266ac5ac), [`6df9c2830ae97d00a97e74b1ebdee861266ac5ac`](https://github.com/livekit/agents-js/commit/6df9c2830ae97d00a97e74b1ebdee861266ac5ac), [`7cd03882c19f1623cede60813e7cd25388bb6d53`](https://github.com/livekit/agents-js/commit/7cd03882c19f1623cede60813e7cd25388bb6d53), [`2f4714beec26a6b2b6f57ec64903b885c162d630`](https://github.com/livekit/agents-js/commit/2f4714beec26a6b2b6f57ec64903b885c162d630), [`0f4cd614d84e600e6657585c1d00f27d9c1473c1`](https://github.com/livekit/agents-js/commit/0f4cd614d84e600e6657585c1d00f27d9c1473c1), [`657f9ad4090280d1c53cace2e8b7bdf15291cbb2`](https://github.com/livekit/agents-js/commit/657f9ad4090280d1c53cace2e8b7bdf15291cbb2)]: + - @livekit/agents@1.4.0 + ## 1.3.4 ### Patch Changes diff --git a/plugins/silero/package.json b/plugins/silero/package.json index 48ae879ac..9d475a850 100644 --- a/plugins/silero/package.json +++ b/plugins/silero/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-silero", - "version": "1.3.4", + "version": "1.4.0", "description": "Silero voice activity detection LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/test/CHANGELOG.md b/plugins/test/CHANGELOG.md index 45dcb3a1b..a753db6e1 100644 --- a/plugins/test/CHANGELOG.md +++ b/plugins/test/CHANGELOG.md @@ -1,5 +1,12 @@ # @livekit/agents-plugins-test +## 1.4.0 + +### Patch Changes + +- Updated dependencies [[`5dcb659abb7155dd09edd483ef9f331d3ea4c71f`](https://github.com/livekit/agents-js/commit/5dcb659abb7155dd09edd483ef9f331d3ea4c71f), [`6df9c2830ae97d00a97e74b1ebdee861266ac5ac`](https://github.com/livekit/agents-js/commit/6df9c2830ae97d00a97e74b1ebdee861266ac5ac), [`6df9c2830ae97d00a97e74b1ebdee861266ac5ac`](https://github.com/livekit/agents-js/commit/6df9c2830ae97d00a97e74b1ebdee861266ac5ac), [`7cd03882c19f1623cede60813e7cd25388bb6d53`](https://github.com/livekit/agents-js/commit/7cd03882c19f1623cede60813e7cd25388bb6d53), [`2f4714beec26a6b2b6f57ec64903b885c162d630`](https://github.com/livekit/agents-js/commit/2f4714beec26a6b2b6f57ec64903b885c162d630), [`0f4cd614d84e600e6657585c1d00f27d9c1473c1`](https://github.com/livekit/agents-js/commit/0f4cd614d84e600e6657585c1d00f27d9c1473c1), [`657f9ad4090280d1c53cace2e8b7bdf15291cbb2`](https://github.com/livekit/agents-js/commit/657f9ad4090280d1c53cace2e8b7bdf15291cbb2)]: + - @livekit/agents@1.4.0 + ## 1.3.4 ### Patch Changes diff --git a/plugins/test/package.json b/plugins/test/package.json index 0d07b2119..a9edabadf 100644 --- a/plugins/test/package.json +++ b/plugins/test/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugins-test", - "version": "1.3.4", + "version": "1.4.0", "description": "Testing suite for LiveKit Agents plugins", "author": "LiveKit", "type": "module", diff --git a/plugins/trugen/package.json b/plugins/trugen/package.json index e683c0e8c..6eef3e736 100644 --- a/plugins/trugen/package.json +++ b/plugins/trugen/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-trugen", - "version": "1.3.4", + "version": "1.4.0", "description": "Trugen avatar plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs", diff --git a/plugins/xai/package.json b/plugins/xai/package.json index 2e1e83f68..2dcd51b97 100644 --- a/plugins/xai/package.json +++ b/plugins/xai/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-xai", - "version": "1.3.4", + "version": "1.4.0", "description": "xAI plugin for LiveKit Node Agents", "main": "dist/index.js", "require": "dist/index.cjs",