diff --git a/.changeset/blue-kings-vanish.md b/.changeset/blue-kings-vanish.md deleted file mode 100644 index cf33543c..00000000 --- a/.changeset/blue-kings-vanish.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@livekit/agents": patch ---- - -worker: JT_{PUBLISHER => ROOM} diff --git a/.changeset/breezy-steaks-fly.md b/.changeset/breezy-steaks-fly.md deleted file mode 100644 index b198cf65..00000000 --- a/.changeset/breezy-steaks-fly.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@livekit/agents": patch ---- - -Pass api key and secret to RoomServiceClient diff --git a/.changeset/dry-rules-relax.md b/.changeset/dry-rules-relax.md deleted file mode 100644 index 7aeda985..00000000 --- a/.changeset/dry-rules-relax.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@livekit/agents-plugin-openai": patch -"livekit-agents-examples": patch ---- - -Fix assistant startup process diff --git a/.changeset/few-llamas-listen.md b/.changeset/few-llamas-listen.md deleted file mode 100644 index dd84740a..00000000 --- a/.changeset/few-llamas-listen.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -"@livekit/agents": minor -"livekit-agents-examples": minor ---- - -bump underlying dependencies -fix load calculation -report worker status diff --git a/.changeset/fluffy-numbers-develop.md b/.changeset/fluffy-numbers-develop.md deleted file mode 100644 index 2a95665d..00000000 --- a/.changeset/fluffy-numbers-develop.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@livekit/agents-plugin-openai": patch -"livekit-agents-examples": patch ---- - -Send agent transcript progressively and handle interruptions diff --git a/.changeset/olive-plums-shake.md b/.changeset/olive-plums-shake.md deleted file mode 100644 index 48221c3e..00000000 --- a/.changeset/olive-plums-shake.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@livekit/agents": patch ---- - -Let defineAgent accept agent type diff --git a/.changeset/real-grapes-change.md b/.changeset/real-grapes-change.md deleted file mode 100644 index 54ed991d..00000000 --- a/.changeset/real-grapes-change.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@livekit/agents": patch -"@livekit/agents-plugin-openai": patch ---- - -Add transcript support to realtime voice assistant diff --git a/.changeset/thirty-rules-invent.md b/.changeset/thirty-rules-invent.md deleted file mode 100644 index ca6d9f34..00000000 --- a/.changeset/thirty-rules-invent.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@livekit/agents": minor ---- - -cli: add runHeadless function diff --git a/.changeset/yellow-bobcats-confess.md b/.changeset/yellow-bobcats-confess.md deleted file mode 100644 index 4683b93f..00000000 --- a/.changeset/yellow-bobcats-confess.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@livekit/agents-plugin-openai": minor ---- - -mark omniassistant as alpha diff --git a/agents/CHANGELOG.md b/agents/CHANGELOG.md new file mode 100644 index 00000000..10dd5c9d --- /dev/null +++ b/agents/CHANGELOG.md @@ -0,0 +1,21 @@ +# @livekit/agents + +## 0.2.0 + +### Minor Changes + +- bump underlying dependencies - [`be7160d39ea57239a51fbf6ad2cbea1342cc1889`](https://github.com/livekit/agents-js/commit/be7160d39ea57239a51fbf6ad2cbea1342cc1889) ([@bcherry](https://github.com/bcherry)) + fix load calculation + report worker status + +- cli: add runHeadless function - [`36c553a60fef7621b9c4232b5c79555b2f83aad8`](https://github.com/livekit/agents-js/commit/36c553a60fef7621b9c4232b5c79555b2f83aad8) ([@nbsp](https://github.com/nbsp)) + +### Patch Changes + +- worker: JT\_{PUBLISHER => ROOM} - [`1c8caf04c148dfa57af4e844b6538d97d6be652a`](https://github.com/livekit/agents-js/commit/1c8caf04c148dfa57af4e844b6538d97d6be652a) ([@nbsp](https://github.com/nbsp)) + +- Pass api key and secret to RoomServiceClient - [#58](https://github.com/livekit/agents-js/pull/58) ([@bcherry](https://github.com/bcherry)) + +- Let defineAgent accept agent type - [`24a4f58a23d4a3aad8620fcccabdab5d2e1152c7`](https://github.com/livekit/agents-js/commit/24a4f58a23d4a3aad8620fcccabdab5d2e1152c7) ([@lukasIO](https://github.com/lukasIO)) + +- Add transcript support to realtime voice assistant - [`1063d2a25c4a01022948699e673d267d04c1ec05`](https://github.com/livekit/agents-js/commit/1063d2a25c4a01022948699e673d267d04c1ec05) ([@bcherry](https://github.com/bcherry)) diff --git a/agents/package.json b/agents/package.json index 59b08c73..82dda22b 100644 --- a/agents/package.json +++ b/agents/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents", - "version": "0.1.0", + "version": "0.2.0", "description": "LiveKit Node Agents", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/examples/CHANGELOG.md b/examples/CHANGELOG.md new file mode 100644 index 00000000..981ecbbd --- /dev/null +++ b/examples/CHANGELOG.md @@ -0,0 +1,19 @@ +# livekit-agents-examples + +## null + +### Minor Changes + +- bump underlying dependencies - [`be7160d39ea57239a51fbf6ad2cbea1342cc1889`](https://github.com/livekit/agents-js/commit/be7160d39ea57239a51fbf6ad2cbea1342cc1889) ([@bcherry](https://github.com/bcherry)) + fix load calculation + report worker status + +### Patch Changes + +- Fix assistant startup process - [#36](https://github.com/livekit/agents-js/pull/36) ([@bcherry](https://github.com/bcherry)) + +- Send agent transcript progressively and handle interruptions - [#40](https://github.com/livekit/agents-js/pull/40) ([@bcherry](https://github.com/bcherry)) + +- Updated dependencies [[`1c8caf04c148dfa57af4e844b6538d97d6be652a`](https://github.com/livekit/agents-js/commit/1c8caf04c148dfa57af4e844b6538d97d6be652a), [`5923b1a796642bec4892f41545ea1be1c6b9fb36`](https://github.com/livekit/agents-js/commit/5923b1a796642bec4892f41545ea1be1c6b9fb36), [`ccff5ce34d071a0fb449da5ce77938e346679b1b`](https://github.com/livekit/agents-js/commit/ccff5ce34d071a0fb449da5ce77938e346679b1b), [`be7160d39ea57239a51fbf6ad2cbea1342cc1889`](https://github.com/livekit/agents-js/commit/be7160d39ea57239a51fbf6ad2cbea1342cc1889), [`5c320c88a04ffd8b7753696d4172a610fbe1bc2b`](https://github.com/livekit/agents-js/commit/5c320c88a04ffd8b7753696d4172a610fbe1bc2b), [`24a4f58a23d4a3aad8620fcccabdab5d2e1152c7`](https://github.com/livekit/agents-js/commit/24a4f58a23d4a3aad8620fcccabdab5d2e1152c7), [`1063d2a25c4a01022948699e673d267d04c1ec05`](https://github.com/livekit/agents-js/commit/1063d2a25c4a01022948699e673d267d04c1ec05), [`36c553a60fef7621b9c4232b5c79555b2f83aad8`](https://github.com/livekit/agents-js/commit/36c553a60fef7621b9c4232b5c79555b2f83aad8), [`7e6bb7fbf661e6c6aa012f6a362b84d542d2c84e`](https://github.com/livekit/agents-js/commit/7e6bb7fbf661e6c6aa012f6a362b84d542d2c84e)]: + - @livekit/agents@0.2.0 + - @livekit/agents-plugin-openai@0.2.0 diff --git a/examples/package.json b/examples/package.json index e8357af3..bfd66acb 100644 --- a/examples/package.json +++ b/examples/package.json @@ -14,5 +14,6 @@ "@livekit/agents-plugin-openai": "workspace:*", "@livekit/rtc-node": "^0.8.1", "zod": "^3.23.8" - } + }, + "version": null } diff --git a/plugins/openai/CHANGELOG.md b/plugins/openai/CHANGELOG.md new file mode 100644 index 00000000..121aefa5 --- /dev/null +++ b/plugins/openai/CHANGELOG.md @@ -0,0 +1,18 @@ +# @livekit/agents-plugin-openai + +## 0.2.0 + +### Minor Changes + +- mark omniassistant as alpha - [#59](https://github.com/livekit/agents-js/pull/59) ([@nbsp](https://github.com/nbsp)) + +### Patch Changes + +- Fix assistant startup process - [#36](https://github.com/livekit/agents-js/pull/36) ([@bcherry](https://github.com/bcherry)) + +- Send agent transcript progressively and handle interruptions - [#40](https://github.com/livekit/agents-js/pull/40) ([@bcherry](https://github.com/bcherry)) + +- Add transcript support to realtime voice assistant - [`1063d2a25c4a01022948699e673d267d04c1ec05`](https://github.com/livekit/agents-js/commit/1063d2a25c4a01022948699e673d267d04c1ec05) ([@bcherry](https://github.com/bcherry)) + +- Updated dependencies [[`1c8caf04c148dfa57af4e844b6538d97d6be652a`](https://github.com/livekit/agents-js/commit/1c8caf04c148dfa57af4e844b6538d97d6be652a), [`5923b1a796642bec4892f41545ea1be1c6b9fb36`](https://github.com/livekit/agents-js/commit/5923b1a796642bec4892f41545ea1be1c6b9fb36), [`be7160d39ea57239a51fbf6ad2cbea1342cc1889`](https://github.com/livekit/agents-js/commit/be7160d39ea57239a51fbf6ad2cbea1342cc1889), [`24a4f58a23d4a3aad8620fcccabdab5d2e1152c7`](https://github.com/livekit/agents-js/commit/24a4f58a23d4a3aad8620fcccabdab5d2e1152c7), [`1063d2a25c4a01022948699e673d267d04c1ec05`](https://github.com/livekit/agents-js/commit/1063d2a25c4a01022948699e673d267d04c1ec05), [`36c553a60fef7621b9c4232b5c79555b2f83aad8`](https://github.com/livekit/agents-js/commit/36c553a60fef7621b9c4232b5c79555b2f83aad8)]: + - @livekit/agents@0.2.0 diff --git a/plugins/openai/package.json b/plugins/openai/package.json index 767967e9..6e65be76 100644 --- a/plugins/openai/package.json +++ b/plugins/openai/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/agents-plugin-openai", - "version": "0.1.0", + "version": "0.2.0", "description": "OpenAI plugin for LiveKit Node Agents", "main": "dist/index.js", "types": "dist/index.d.ts",