Skip to content

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jan 9, 2025
1 parent 2b6fb18 commit 0d01731
Show file tree
Hide file tree
Showing 40 changed files with 85 additions and 83 deletions.
5 changes: 0 additions & 5 deletions .changeset/bright-fireants-design.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/cool-clouds-hang.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/dry-drinks-poke.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/funny-buttons-taste.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/gorgeous-trees-work.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/hip-bottles-joke.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/purple-turtles-arrive.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/quick-ligers-ring.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/tasty-rice-appear.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/twenty-rockets-approve.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/wild-planes-cheer.md

This file was deleted.

2 changes: 1 addition & 1 deletion examples/participant-entrypoint/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
livekit-agents>=0.12.7
livekit-agents>=0.12.8
python-dotenv~=1.0
2 changes: 1 addition & 1 deletion examples/simple-color/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
livekit-agents>=0.12.7
livekit-agents>=0.12.8
python-dotenv~=1.0
2 changes: 1 addition & 1 deletion examples/speech-to-text/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
livekit-agents>=0.12.7
livekit-agents>=0.12.8
livekit-plugins-deepgram>=0.6.16
python-dotenv~=1.0
8 changes: 4 additions & 4 deletions examples/text-to-speech/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
livekit-agents>=0.12.7
livekit-plugins-openai>=0.10.14
livekit-plugins-cartesia>=0.4.5
livekit-plugins-elevenlabs>=0.7.9
livekit-agents>=0.12.8
livekit-plugins-openai>=0.10.15
livekit-plugins-cartesia>=0.4.6
livekit-plugins-elevenlabs>=0.7.10
python-dotenv~=1.0
4 changes: 2 additions & 2 deletions examples/voice-pipeline-agent/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
livekit-agents>=0.12.7
livekit-agents>=0.12.8
livekit-plugins-deepgram>=0.6.16
livekit-plugins-google>=0.9.0
livekit-plugins-google>=0.9.1
livekit-plugins-openai[vertex]>=0.10.10
livekit-plugins-silero>=0.7.4
livekit-plugins-rag>=0.2.3
Expand Down
14 changes: 14 additions & 0 deletions livekit-agents/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# livekit-agents

## 0.12.8

### Patch Changes

- Fix not awaiting forward task in TTS forwarder, leading to warnings. - [#1339](https://github.com/livekit/agents/pull/1339) ([@martin-purplefish](https://github.com/martin-purplefish))

- reduces initial delay before model retries - [#1337](https://github.com/livekit/agents/pull/1337) ([@davidzhao](https://github.com/davidzhao))

- fix the function calls without a text response are not added to chat ctx - [#1349](https://github.com/livekit/agents/pull/1349) ([@longcw](https://github.com/longcw))

- add timeout for EOU inference requests made to the inference process - [#1315](https://github.com/livekit/agents/pull/1315) ([@theomonnom](https://github.com/theomonnom))

- support disabling server VAD for OpenAI realtime model - [#1347](https://github.com/livekit/agents/pull/1347) ([@longcw](https://github.com/longcw))

## 0.12.7

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion livekit-agents/livekit/agents/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "0.12.7"
__version__ = "0.12.8"
2 changes: 1 addition & 1 deletion livekit-agents/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "livekit-agents",
"private": true,
"version": "0.12.7"
"version": "0.12.8"
}
6 changes: 6 additions & 0 deletions livekit-plugins/livekit-plugins-azure/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# livekit-plugins-azure

## 0.5.3

### Patch Changes

- reduces initial delay before model retries - [#1337](https://github.com/livekit/agents/pull/1337) ([@davidzhao](https://github.com/davidzhao))

## 0.5.2

### Patch Changes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "0.5.2"
__version__ = "0.5.3"
2 changes: 1 addition & 1 deletion livekit-plugins/livekit-plugins-azure/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "livekit-plugins-azure",
"private": true,
"version": "0.5.2"
"version": "0.5.3"
}
6 changes: 6 additions & 0 deletions livekit-plugins/livekit-plugins-cartesia/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# livekit-plugins-cartesia

## 0.4.6

### Patch Changes

- update Cartesia plugin default model and voice id - [#1346](https://github.com/livekit/agents/pull/1346) ([@noahlt](https://github.com/noahlt))

## 0.4.5

### Patch Changes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "0.4.5"
__version__ = "0.4.6"
2 changes: 1 addition & 1 deletion livekit-plugins/livekit-plugins-cartesia/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "livekit-plugins-cartesia",
"private": true,
"version": "0.4.5"
"version": "0.4.6"
}
6 changes: 6 additions & 0 deletions livekit-plugins/livekit-plugins-elevenlabs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# livekit-plugins-elevenlabs

## 0.7.10

### Patch Changes

- Add language param to ElevenLabs TTS update_options - [#1333](https://github.com/livekit/agents/pull/1333) ([@cch41](https://github.com/cch41))

## 0.7.9

### Patch Changes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "0.7.9"
__version__ = "0.7.10"
2 changes: 1 addition & 1 deletion livekit-plugins/livekit-plugins-elevenlabs/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "livekit-plugins-elevenlabs",
"private": true,
"version": "0.7.9"
"version": "0.7.10"
}
6 changes: 6 additions & 0 deletions livekit-plugins/livekit-plugins-fal/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# livekit-plugins-fal

## 0.2.3

### Patch Changes

- publish package - [`ed974f81a2eab7c1b2d7cff3a27c868ddebb45ee`](https://github.com/livekit/agents/commit/ed974f81a2eab7c1b2d7cff3a27c868ddebb45ee) ([@davidzhao](https://github.com/davidzhao))

## 0.2.2

### Patch Changes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "0.2.2"
__version__ = "0.2.3"
2 changes: 1 addition & 1 deletion livekit-plugins/livekit-plugins-fal/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "livekit-plugins-fal",
"private": true,
"version": "0.2.2"
"version": "0.2.3"
}
8 changes: 8 additions & 0 deletions livekit-plugins/livekit-plugins-google/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# livekit-plugins-google

## 0.9.1

### Patch Changes

- fetch fresh client on update location and small fix for max_session_duration (4 mins) - [#1342](https://github.com/livekit/agents/pull/1342) ([@jayeshp19](https://github.com/jayeshp19))

- fix Google STT handling of session timeouts - [#1337](https://github.com/livekit/agents/pull/1337) ([@davidzhao](https://github.com/davidzhao))

## 0.9.0

### Minor Changes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "0.9.0"
__version__ = "0.9.1"
2 changes: 1 addition & 1 deletion livekit-plugins/livekit-plugins-google/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "livekit-plugins-google",
"private": true,
"version": "0.9.0"
"version": "0.9.1"
}
6 changes: 6 additions & 0 deletions livekit-plugins/livekit-plugins-openai/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# livekit-plugins-openai

## 0.10.15

### Patch Changes

- support disabling server VAD for OpenAI realtime model - [#1347](https://github.com/livekit/agents/pull/1347) ([@longcw](https://github.com/longcw))

## 0.10.14

### Patch Changes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "0.10.14"
__version__ = "0.10.15"
2 changes: 1 addition & 1 deletion livekit-plugins/livekit-plugins-openai/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "livekit-plugins-openai",
"private": true,
"version": "0.10.14"
"version": "0.10.15"
}
8 changes: 8 additions & 0 deletions livekit-plugins/livekit-plugins-turn-detector/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# livekit-plugins-eou

## 0.3.6

### Patch Changes

- prevent arbitrarily long inputs being passed to turn detector - [#1345](https://github.com/livekit/agents/pull/1345) ([@jeradf](https://github.com/jeradf))

- add timeout for EOU inference requests made to the inference process - [#1315](https://github.com/livekit/agents/pull/1315) ([@theomonnom](https://github.com/theomonnom))

## 0.3.5

### Patch Changes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "0.3.5"
__version__ = "0.3.6"
2 changes: 1 addition & 1 deletion livekit-plugins/livekit-plugins-turn-detector/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "livekit-plugins-turn-detector",
"private": true,
"version": "0.3.5"
"version": "0.3.6"
}

0 comments on commit 0d01731

Please sign in to comment.