Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/adaptive-interruption-tool-calls.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/add-speechmatics-linden.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/add-xai-inference-models.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/calm-spoons-speak.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-agent-task-close-deadlock.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-realtime-redaction-timestamps.md

This file was deleted.

11 changes: 0 additions & 11 deletions .changeset/gemini-transcription-live.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/google-realtime-unspoken-text.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/green-logs-travel.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/quiet-rivers-greet.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/report-sdk-version.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/send-worker-deployment.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/stale-speeches-listen.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/stale-speeches-stop.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tidy-bags-wait.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tidy-simulations-report.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/warm-transfer-cooperative-cancellation.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/worker-protocol-version.md

This file was deleted.

44 changes: 44 additions & 0 deletions agents/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,49 @@
# @livekit/agents

## 1.7.1

### Patch Changes

- Preserve adaptive interruption boundaries when agent playout pauses or enters a tool-call thinking gap. - [#2290](https://github.com/livekit/agents-js/pull/2290) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot))

- Add Speechmatics Linden inference STT model support. - [#2353](https://github.com/livekit/agents-js/pull/2353) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot))

- Add Grok 4.3 and Grok 4.5 to the supported xAI inference models. - [#2338](https://github.com/livekit/agents-js/pull/2338) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot))

- Add `callerHangupSpeech` for deterministic text or custom speech handles during warm transfers. - [#2299](https://github.com/livekit/agents-js/pull/2299) ([@chenghao-mou](https://github.com/chenghao-mou))
Export `SpeechHandle` and deprecate `callerHangupInstruction`.

- fix(voice): avoid AgentTask handoff deadlock during session close - [#1776](https://github.com/livekit/agents-js/pull/1776) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot))

- Report recording chat-item timestamps in Unix seconds and warn that audio redaction may be inaccurate for realtime sessions. - [#2348](https://github.com/livekit/agents-js/pull/2348) ([@chenghao-mou](https://github.com/chenghao-mou))

- Add Gemini 3.5 Transcribe Live to LiveKit inference and the Google beta plugin. - [#2352](https://github.com/livekit/agents-js/pull/2352) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot))

`stt.SpeechStream` now resets its retry budget after every final transcript, so `maxRetry`
bounds consecutive failures rather than the lifetime of the stream. Providers that recycle
their socket on a fixed interval (such as Gemini Live's 10-minute session cap) previously
exhausted the budget and stopped recognizing on long sessions.

- Add the deployed LiveKit Cloud region to every log record. - [#2344](https://github.com/livekit/agents-js/pull/2344) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot))

- Add `greetingSpeech` for optional answer-time speech during warm transfers. - [#2300](https://github.com/livekit/agents-js/pull/2300) ([@chenghao-mou](https://github.com/chenghao-mou))

- Include the JavaScript SDK version in Cloud observability session reports. - [#2340](https://github.com/livekit/agents-js/pull/2340) ([@chenghao-mou](https://github.com/chenghao-mou))

- Send deployment environment in worker registration. - [#1677](https://github.com/livekit/agents-js/pull/1677) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot))

- Prevent delayed cleanup from an interrupted reply from overwriting the agent state owned by a newer reply. - [#2341](https://github.com/livekit/agents-js/pull/2341) ([@chenghao-mou](https://github.com/chenghao-mou))

- Interrupt superseded queued replies when a new user turn arrives during interrupted speech cleanup. - [#2342](https://github.com/livekit/agents-js/pull/2342) ([@chenghao-mou](https://github.com/chenghao-mou))

- Serialize inline AgentTasks launched by parallel tool calls. - [#2313](https://github.com/livekit/agents-js/pull/2313) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot))

- Stamp simulation run and job IDs on session telemetry and expose them on `SimulationContext`. - [#2351](https://github.com/livekit/agents-js/pull/2351) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot))

- Add an optional `abortSignal` to `WarmTransferTask`. Aborting stops waiting for a pending dial or ends an active consultation, and `run()` rejects with the signal reason. - [#2295](https://github.com/livekit/agents-js/pull/2295) ([@chenghao-mou](https://github.com/chenghao-mou))

- Report the worker protocol version on the `/worker` endpoint so LiveKit Cloud recognizes agent deployment support. - [#1677](https://github.com/livekit/agents-js/pull/1677) ([@rosetta-livekit-bot](https://github.com/apps/rosetta-livekit-bot))

## 1.7.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion agents/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@livekit/agents",
"version": "1.7.0",
"version": "1.7.1",
"description": "LiveKit Agents - Node.js",
"main": "dist/index.js",
"require": "dist/index.cjs",
Expand Down
7 changes: 7 additions & 0 deletions plugins/anam/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @livekit/agents-plugin-anam

## 1.7.1

### Patch Changes

- Updated dependencies [[`d5ee95f`](https://github.com/livekit/agents-js/commit/d5ee95fec5707c3ff6cb79805d036388597628c9), [`87a6458`](https://github.com/livekit/agents-js/commit/87a64584b75c04a7a39e6c0ee65c9eca12eb1860), [`480fd99`](https://github.com/livekit/agents-js/commit/480fd99ad1ec6a839f986b19c437969f894bbd8d), [`ea4d5b0`](https://github.com/livekit/agents-js/commit/ea4d5b0f96dffb869fd26ae80e1fc075c154e19f), [`3790deb`](https://github.com/livekit/agents-js/commit/3790deb75c10754d84649f8e1772129fab2463af), [`8c0a96a`](https://github.com/livekit/agents-js/commit/8c0a96ac8a53dc6188cbed6da0172dac50265a0d), [`ed95f82`](https://github.com/livekit/agents-js/commit/ed95f820b3c2063d956447acdc91539537a5a563), [`a0cfa2f`](https://github.com/livekit/agents-js/commit/a0cfa2fb220a2db20ed4783135ccaef97db31541), [`7646117`](https://github.com/livekit/agents-js/commit/7646117a61c9ac5fcaabf286203f952dc18483be), [`461ccf7`](https://github.com/livekit/agents-js/commit/461ccf7b8c7187cf644fc809e020c4aae635758b), [`8c88e3b`](https://github.com/livekit/agents-js/commit/8c88e3b3acb3ab32dc2d7b19073379f726704015), [`94b4800`](https://github.com/livekit/agents-js/commit/94b48004d0a98cc4d00288dea8ae183807d92fa0), [`83c8d39`](https://github.com/livekit/agents-js/commit/83c8d39221fd540b996d1ebd450db28c4aa5c111), [`0da1e11`](https://github.com/livekit/agents-js/commit/0da1e1165e8afa82f5993a22dbac17efadce6187), [`57aa345`](https://github.com/livekit/agents-js/commit/57aa34556a255ed0166366813d5f022b4eae4f94), [`e53106c`](https://github.com/livekit/agents-js/commit/e53106c2b5ff7cf1fa66854a4c61ff9d464406a3), [`8c88e3b`](https://github.com/livekit/agents-js/commit/8c88e3b3acb3ab32dc2d7b19073379f726704015)]:
- @livekit/agents@1.7.1

## 1.7.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion plugins/anam/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@livekit/agents-plugin-anam",
"version": "1.7.0",
"version": "1.7.1",
"description": "Anam plugin for LiveKit Node Agents",
"main": "dist/index.js",
"require": "dist/index.cjs",
Expand Down
7 changes: 7 additions & 0 deletions plugins/anthropic/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @livekit/agents-plugin-anthropic

## 1.7.1

### Patch Changes

- Updated dependencies [[`d5ee95f`](https://github.com/livekit/agents-js/commit/d5ee95fec5707c3ff6cb79805d036388597628c9), [`87a6458`](https://github.com/livekit/agents-js/commit/87a64584b75c04a7a39e6c0ee65c9eca12eb1860), [`480fd99`](https://github.com/livekit/agents-js/commit/480fd99ad1ec6a839f986b19c437969f894bbd8d), [`ea4d5b0`](https://github.com/livekit/agents-js/commit/ea4d5b0f96dffb869fd26ae80e1fc075c154e19f), [`3790deb`](https://github.com/livekit/agents-js/commit/3790deb75c10754d84649f8e1772129fab2463af), [`8c0a96a`](https://github.com/livekit/agents-js/commit/8c0a96ac8a53dc6188cbed6da0172dac50265a0d), [`ed95f82`](https://github.com/livekit/agents-js/commit/ed95f820b3c2063d956447acdc91539537a5a563), [`a0cfa2f`](https://github.com/livekit/agents-js/commit/a0cfa2fb220a2db20ed4783135ccaef97db31541), [`7646117`](https://github.com/livekit/agents-js/commit/7646117a61c9ac5fcaabf286203f952dc18483be), [`461ccf7`](https://github.com/livekit/agents-js/commit/461ccf7b8c7187cf644fc809e020c4aae635758b), [`8c88e3b`](https://github.com/livekit/agents-js/commit/8c88e3b3acb3ab32dc2d7b19073379f726704015), [`94b4800`](https://github.com/livekit/agents-js/commit/94b48004d0a98cc4d00288dea8ae183807d92fa0), [`83c8d39`](https://github.com/livekit/agents-js/commit/83c8d39221fd540b996d1ebd450db28c4aa5c111), [`0da1e11`](https://github.com/livekit/agents-js/commit/0da1e1165e8afa82f5993a22dbac17efadce6187), [`57aa345`](https://github.com/livekit/agents-js/commit/57aa34556a255ed0166366813d5f022b4eae4f94), [`e53106c`](https://github.com/livekit/agents-js/commit/e53106c2b5ff7cf1fa66854a4c61ff9d464406a3), [`8c88e3b`](https://github.com/livekit/agents-js/commit/8c88e3b3acb3ab32dc2d7b19073379f726704015)]:
- @livekit/agents@1.7.1

## 1.7.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion plugins/anthropic/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@livekit/agents-plugin-anthropic",
"version": "1.7.0",
"version": "1.7.1",
"description": "Anthropic plugin for LiveKit Node Agents",
"main": "dist/index.js",
"require": "dist/index.cjs",
Expand Down
7 changes: 7 additions & 0 deletions plugins/assemblyai/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @livekit/agents-plugin-assemblyai

## 1.7.1

### Patch Changes

- Updated dependencies [[`d5ee95f`](https://github.com/livekit/agents-js/commit/d5ee95fec5707c3ff6cb79805d036388597628c9), [`87a6458`](https://github.com/livekit/agents-js/commit/87a64584b75c04a7a39e6c0ee65c9eca12eb1860), [`480fd99`](https://github.com/livekit/agents-js/commit/480fd99ad1ec6a839f986b19c437969f894bbd8d), [`ea4d5b0`](https://github.com/livekit/agents-js/commit/ea4d5b0f96dffb869fd26ae80e1fc075c154e19f), [`3790deb`](https://github.com/livekit/agents-js/commit/3790deb75c10754d84649f8e1772129fab2463af), [`8c0a96a`](https://github.com/livekit/agents-js/commit/8c0a96ac8a53dc6188cbed6da0172dac50265a0d), [`ed95f82`](https://github.com/livekit/agents-js/commit/ed95f820b3c2063d956447acdc91539537a5a563), [`a0cfa2f`](https://github.com/livekit/agents-js/commit/a0cfa2fb220a2db20ed4783135ccaef97db31541), [`7646117`](https://github.com/livekit/agents-js/commit/7646117a61c9ac5fcaabf286203f952dc18483be), [`461ccf7`](https://github.com/livekit/agents-js/commit/461ccf7b8c7187cf644fc809e020c4aae635758b), [`8c88e3b`](https://github.com/livekit/agents-js/commit/8c88e3b3acb3ab32dc2d7b19073379f726704015), [`94b4800`](https://github.com/livekit/agents-js/commit/94b48004d0a98cc4d00288dea8ae183807d92fa0), [`83c8d39`](https://github.com/livekit/agents-js/commit/83c8d39221fd540b996d1ebd450db28c4aa5c111), [`0da1e11`](https://github.com/livekit/agents-js/commit/0da1e1165e8afa82f5993a22dbac17efadce6187), [`57aa345`](https://github.com/livekit/agents-js/commit/57aa34556a255ed0166366813d5f022b4eae4f94), [`e53106c`](https://github.com/livekit/agents-js/commit/e53106c2b5ff7cf1fa66854a4c61ff9d464406a3), [`8c88e3b`](https://github.com/livekit/agents-js/commit/8c88e3b3acb3ab32dc2d7b19073379f726704015)]:
- @livekit/agents@1.7.1

## 1.7.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion plugins/assemblyai/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@livekit/agents-plugin-assemblyai",
"version": "1.7.0",
"version": "1.7.1",
"description": "AssemblyAI plugin for LiveKit Agents for Node.js",
"main": "dist/index.js",
"require": "dist/index.cjs",
Expand Down
7 changes: 7 additions & 0 deletions plugins/azure/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @livekit/agents-plugin-azure

## 1.7.1

### Patch Changes

- Updated dependencies [[`d5ee95f`](https://github.com/livekit/agents-js/commit/d5ee95fec5707c3ff6cb79805d036388597628c9), [`87a6458`](https://github.com/livekit/agents-js/commit/87a64584b75c04a7a39e6c0ee65c9eca12eb1860), [`480fd99`](https://github.com/livekit/agents-js/commit/480fd99ad1ec6a839f986b19c437969f894bbd8d), [`ea4d5b0`](https://github.com/livekit/agents-js/commit/ea4d5b0f96dffb869fd26ae80e1fc075c154e19f), [`3790deb`](https://github.com/livekit/agents-js/commit/3790deb75c10754d84649f8e1772129fab2463af), [`8c0a96a`](https://github.com/livekit/agents-js/commit/8c0a96ac8a53dc6188cbed6da0172dac50265a0d), [`ed95f82`](https://github.com/livekit/agents-js/commit/ed95f820b3c2063d956447acdc91539537a5a563), [`a0cfa2f`](https://github.com/livekit/agents-js/commit/a0cfa2fb220a2db20ed4783135ccaef97db31541), [`7646117`](https://github.com/livekit/agents-js/commit/7646117a61c9ac5fcaabf286203f952dc18483be), [`461ccf7`](https://github.com/livekit/agents-js/commit/461ccf7b8c7187cf644fc809e020c4aae635758b), [`8c88e3b`](https://github.com/livekit/agents-js/commit/8c88e3b3acb3ab32dc2d7b19073379f726704015), [`94b4800`](https://github.com/livekit/agents-js/commit/94b48004d0a98cc4d00288dea8ae183807d92fa0), [`83c8d39`](https://github.com/livekit/agents-js/commit/83c8d39221fd540b996d1ebd450db28c4aa5c111), [`0da1e11`](https://github.com/livekit/agents-js/commit/0da1e1165e8afa82f5993a22dbac17efadce6187), [`57aa345`](https://github.com/livekit/agents-js/commit/57aa34556a255ed0166366813d5f022b4eae4f94), [`e53106c`](https://github.com/livekit/agents-js/commit/e53106c2b5ff7cf1fa66854a4c61ff9d464406a3), [`8c88e3b`](https://github.com/livekit/agents-js/commit/8c88e3b3acb3ab32dc2d7b19073379f726704015)]:
- @livekit/agents@1.7.1

## 1.7.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion plugins/azure/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@livekit/agents-plugin-azure",
"version": "1.7.0",
"version": "1.7.1",
"description": "Azure plugin for LiveKit Agents for Node.js",
"main": "dist/index.js",
"require": "dist/index.cjs",
Expand Down
7 changes: 7 additions & 0 deletions plugins/baseten/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @livekit/agents-plugin-baseten

## 1.7.1

### Patch Changes

- Updated dependencies [[`d5ee95f`](https://github.com/livekit/agents-js/commit/d5ee95fec5707c3ff6cb79805d036388597628c9), [`87a6458`](https://github.com/livekit/agents-js/commit/87a64584b75c04a7a39e6c0ee65c9eca12eb1860), [`480fd99`](https://github.com/livekit/agents-js/commit/480fd99ad1ec6a839f986b19c437969f894bbd8d), [`ea4d5b0`](https://github.com/livekit/agents-js/commit/ea4d5b0f96dffb869fd26ae80e1fc075c154e19f), [`3790deb`](https://github.com/livekit/agents-js/commit/3790deb75c10754d84649f8e1772129fab2463af), [`8c0a96a`](https://github.com/livekit/agents-js/commit/8c0a96ac8a53dc6188cbed6da0172dac50265a0d), [`ed95f82`](https://github.com/livekit/agents-js/commit/ed95f820b3c2063d956447acdc91539537a5a563), [`a0cfa2f`](https://github.com/livekit/agents-js/commit/a0cfa2fb220a2db20ed4783135ccaef97db31541), [`7646117`](https://github.com/livekit/agents-js/commit/7646117a61c9ac5fcaabf286203f952dc18483be), [`461ccf7`](https://github.com/livekit/agents-js/commit/461ccf7b8c7187cf644fc809e020c4aae635758b), [`8c88e3b`](https://github.com/livekit/agents-js/commit/8c88e3b3acb3ab32dc2d7b19073379f726704015), [`94b4800`](https://github.com/livekit/agents-js/commit/94b48004d0a98cc4d00288dea8ae183807d92fa0), [`83c8d39`](https://github.com/livekit/agents-js/commit/83c8d39221fd540b996d1ebd450db28c4aa5c111), [`0da1e11`](https://github.com/livekit/agents-js/commit/0da1e1165e8afa82f5993a22dbac17efadce6187), [`57aa345`](https://github.com/livekit/agents-js/commit/57aa34556a255ed0166366813d5f022b4eae4f94), [`e53106c`](https://github.com/livekit/agents-js/commit/e53106c2b5ff7cf1fa66854a4c61ff9d464406a3), [`8c88e3b`](https://github.com/livekit/agents-js/commit/8c88e3b3acb3ab32dc2d7b19073379f726704015)]:
- @livekit/agents@1.7.1

## 1.7.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion plugins/baseten/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@livekit/agents-plugin-baseten",
"version": "1.7.0",
"version": "1.7.1",
"description": "Baseten plugin for LiveKit Node Agents",
"main": "dist/index.js",
"require": "dist/index.cjs",
Expand Down
7 changes: 7 additions & 0 deletions plugins/bey/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @livekit/agents-plugin-bey

## 1.7.1

### Patch Changes

- Updated dependencies [[`d5ee95f`](https://github.com/livekit/agents-js/commit/d5ee95fec5707c3ff6cb79805d036388597628c9), [`87a6458`](https://github.com/livekit/agents-js/commit/87a64584b75c04a7a39e6c0ee65c9eca12eb1860), [`480fd99`](https://github.com/livekit/agents-js/commit/480fd99ad1ec6a839f986b19c437969f894bbd8d), [`ea4d5b0`](https://github.com/livekit/agents-js/commit/ea4d5b0f96dffb869fd26ae80e1fc075c154e19f), [`3790deb`](https://github.com/livekit/agents-js/commit/3790deb75c10754d84649f8e1772129fab2463af), [`8c0a96a`](https://github.com/livekit/agents-js/commit/8c0a96ac8a53dc6188cbed6da0172dac50265a0d), [`ed95f82`](https://github.com/livekit/agents-js/commit/ed95f820b3c2063d956447acdc91539537a5a563), [`a0cfa2f`](https://github.com/livekit/agents-js/commit/a0cfa2fb220a2db20ed4783135ccaef97db31541), [`7646117`](https://github.com/livekit/agents-js/commit/7646117a61c9ac5fcaabf286203f952dc18483be), [`461ccf7`](https://github.com/livekit/agents-js/commit/461ccf7b8c7187cf644fc809e020c4aae635758b), [`8c88e3b`](https://github.com/livekit/agents-js/commit/8c88e3b3acb3ab32dc2d7b19073379f726704015), [`94b4800`](https://github.com/livekit/agents-js/commit/94b48004d0a98cc4d00288dea8ae183807d92fa0), [`83c8d39`](https://github.com/livekit/agents-js/commit/83c8d39221fd540b996d1ebd450db28c4aa5c111), [`0da1e11`](https://github.com/livekit/agents-js/commit/0da1e1165e8afa82f5993a22dbac17efadce6187), [`57aa345`](https://github.com/livekit/agents-js/commit/57aa34556a255ed0166366813d5f022b4eae4f94), [`e53106c`](https://github.com/livekit/agents-js/commit/e53106c2b5ff7cf1fa66854a4c61ff9d464406a3), [`8c88e3b`](https://github.com/livekit/agents-js/commit/8c88e3b3acb3ab32dc2d7b19073379f726704015)]:
- @livekit/agents@1.7.1

## 1.7.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion plugins/bey/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@livekit/agents-plugin-bey",
"version": "1.7.0",
"version": "1.7.1",
"description": "Beyond Presence plugin for LiveKit Node Agents",
"main": "dist/index.js",
"require": "dist/index.cjs",
Expand Down
Loading
Loading