diff --git a/.changeset/dirty-mails-reflect.md b/.changeset/dirty-mails-reflect.md deleted file mode 100644 index 34eedc25a..000000000 --- a/.changeset/dirty-mails-reflect.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"livekit-agents": patch ---- - -make max_endpoint_delay configurable diff --git a/.changeset/four-rockets-accept.md b/.changeset/four-rockets-accept.md deleted file mode 100644 index a200e141d..000000000 --- a/.changeset/four-rockets-accept.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"livekit-plugins-turn-detector": patch ---- - -add jinja2 dependency to turn detector diff --git a/.changeset/nasty-rings-wave.md b/.changeset/nasty-rings-wave.md deleted file mode 100644 index cbbcb7979..000000000 --- a/.changeset/nasty-rings-wave.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"livekit-agents": patch ---- - -set USE_DOCSTRING as default for ai_callable diff --git a/.changeset/six-wasps-pay.md b/.changeset/six-wasps-pay.md deleted file mode 100644 index 03ccb0dd8..000000000 --- a/.changeset/six-wasps-pay.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"livekit-agents": patch ---- - -fix: do not log process warning when process not found diff --git a/.changeset/witty-fishes-stare.md b/.changeset/witty-fishes-stare.md deleted file mode 100644 index 4f82113d7..000000000 --- a/.changeset/witty-fishes-stare.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"livekit-agents": patch ---- - -fix context when functions have been called diff --git a/examples/participant-entrypoint/requirements.txt b/examples/participant-entrypoint/requirements.txt index 5e6395561..a92be36b8 100644 --- a/examples/participant-entrypoint/requirements.txt +++ b/examples/participant-entrypoint/requirements.txt @@ -1,2 +1,2 @@ -livekit-agents>=0.12.4 +livekit-agents>=0.12.5 python-dotenv~=1.0 diff --git a/examples/simple-color/requirements.txt b/examples/simple-color/requirements.txt index 5e6395561..a92be36b8 100644 --- a/examples/simple-color/requirements.txt +++ b/examples/simple-color/requirements.txt @@ -1,2 +1,2 @@ -livekit-agents>=0.12.4 +livekit-agents>=0.12.5 python-dotenv~=1.0 diff --git a/examples/speech-to-text/requirements.txt b/examples/speech-to-text/requirements.txt index 0a18a4bb6..e58a682b3 100644 --- a/examples/speech-to-text/requirements.txt +++ b/examples/speech-to-text/requirements.txt @@ -1,3 +1,3 @@ -livekit-agents>=0.12.4 +livekit-agents>=0.12.5 livekit-plugins-deepgram>=0.6.15 python-dotenv~=1.0 diff --git a/examples/text-to-speech/requirements.txt b/examples/text-to-speech/requirements.txt index 6a534b331..f025ab277 100644 --- a/examples/text-to-speech/requirements.txt +++ b/examples/text-to-speech/requirements.txt @@ -1,4 +1,4 @@ -livekit-agents>=0.12.4 +livekit-agents>=0.12.5 livekit-plugins-openai>=0.10.12 livekit-plugins-cartesia>=0.4.5 livekit-plugins-elevenlabs>=0.7.9 diff --git a/examples/voice-pipeline-agent/requirements.txt b/examples/voice-pipeline-agent/requirements.txt index 77975fb53..481cb0136 100644 --- a/examples/voice-pipeline-agent/requirements.txt +++ b/examples/voice-pipeline-agent/requirements.txt @@ -1,4 +1,4 @@ -livekit-agents>=0.12.4 +livekit-agents>=0.12.5 livekit-plugins-deepgram>=0.6.15 livekit-plugins-google>=0.8.1 livekit-plugins-openai[vertex]>=0.10.10 diff --git a/livekit-agents/CHANGELOG.md b/livekit-agents/CHANGELOG.md index 5bd84faf9..b04f10f1d 100644 --- a/livekit-agents/CHANGELOG.md +++ b/livekit-agents/CHANGELOG.md @@ -1,5 +1,17 @@ # livekit-agents +## 0.12.5 + +### Patch Changes + +- make max_endpoint_delay configurable - [#1277](https://github.com/livekit/agents/pull/1277) ([@davidzhao](https://github.com/davidzhao)) + +- set USE_DOCSTRING as default for ai_callable - [#1266](https://github.com/livekit/agents/pull/1266) ([@longcw](https://github.com/longcw)) + +- fix: do not log process warning when process not found - [#1281](https://github.com/livekit/agents/pull/1281) ([@davidzhao](https://github.com/davidzhao)) + +- fix context when functions have been called - [#1279](https://github.com/livekit/agents/pull/1279) ([@jmugicagonz](https://github.com/jmugicagonz)) + ## 0.12.4 ### Patch Changes diff --git a/livekit-agents/livekit/agents/version.py b/livekit-agents/livekit/agents/version.py index ee001ea03..93e989e31 100644 --- a/livekit-agents/livekit/agents/version.py +++ b/livekit-agents/livekit/agents/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "0.12.4" +__version__ = "0.12.5" diff --git a/livekit-agents/package.json b/livekit-agents/package.json index 212896f2b..4986b2889 100644 --- a/livekit-agents/package.json +++ b/livekit-agents/package.json @@ -1,5 +1,5 @@ { "name": "livekit-agents", "private": true, - "version": "0.12.4" + "version": "0.12.5" } diff --git a/livekit-plugins/livekit-plugins-turn-detector/CHANGELOG.md b/livekit-plugins/livekit-plugins-turn-detector/CHANGELOG.md index 0bc8544b5..2d38bf347 100644 --- a/livekit-plugins/livekit-plugins-turn-detector/CHANGELOG.md +++ b/livekit-plugins/livekit-plugins-turn-detector/CHANGELOG.md @@ -1,5 +1,11 @@ # livekit-plugins-eou +## 0.3.4 + +### Patch Changes + +- add jinja2 dependency to turn detector - [#1277](https://github.com/livekit/agents/pull/1277) ([@davidzhao](https://github.com/davidzhao)) + ## 0.3.3 ### Patch Changes diff --git a/livekit-plugins/livekit-plugins-turn-detector/livekit/plugins/turn_detector/version.py b/livekit-plugins/livekit-plugins-turn-detector/livekit/plugins/turn_detector/version.py index 6b8f1ef90..bcfe9b179 100644 --- a/livekit-plugins/livekit-plugins-turn-detector/livekit/plugins/turn_detector/version.py +++ b/livekit-plugins/livekit-plugins-turn-detector/livekit/plugins/turn_detector/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "0.3.3" +__version__ = "0.3.4" diff --git a/livekit-plugins/livekit-plugins-turn-detector/package.json b/livekit-plugins/livekit-plugins-turn-detector/package.json index acd5d4300..82d16bb89 100644 --- a/livekit-plugins/livekit-plugins-turn-detector/package.json +++ b/livekit-plugins/livekit-plugins-turn-detector/package.json @@ -1,5 +1,5 @@ { "name": "livekit-plugins-turn-detector", "private": true, - "version": "0.3.3" + "version": "0.3.4" }