Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version Packages #1369

Merged
merged 1 commit into from
Jan 22, 2025
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/angry-donuts-build.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/chatty-coins-heal.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/moody-tools-push.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/purple-years-deny.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/slimy-candles-agree.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/smooth-windows-repeat.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/strong-experts-grin.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tender-goats-sit.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/young-monkeys-allow.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.8
livekit-agents>=0.12.9
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.8
livekit-agents>=0.12.9
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.8
livekit-agents>=0.12.9
livekit-plugins-deepgram>=0.6.16
python-dotenv~=1.0
6 changes: 3 additions & 3 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.8
livekit-plugins-openai>=0.10.15
livekit-agents>=0.12.9
livekit-plugins-openai>=0.10.16
livekit-plugins-cartesia>=0.4.6
livekit-plugins-elevenlabs>=0.7.10
livekit-plugins-elevenlabs>=0.7.11
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.8
livekit-agents>=0.12.9
livekit-plugins-deepgram>=0.6.16
livekit-plugins-google>=0.9.1
livekit-plugins-google>=0.10.0
livekit-plugins-openai[vertex]>=0.10.10
livekit-plugins-silero>=0.7.4
livekit-plugins-rag>=0.2.3
Expand Down
8 changes: 8 additions & 0 deletions livekit-agents/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# livekit-agents

## 0.12.9

### Patch Changes

- add generate_reply api for multimodal agent - [#1359](https://github.com/livekit/agents/pull/1359) ([@longcw](https://github.com/longcw))

- remove aiodns from livekit-agents - [#1368](https://github.com/livekit/agents/pull/1368) ([@theomonnom](https://github.com/theomonnom))

## 0.12.8

### 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.8"
__version__ = "0.12.9"
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.8"
"version": "0.12.9"
}
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.11

### Patch Changes

- add latest model by 11labs - [#1396](https://github.com/livekit/agents/pull/1396) ([@jayeshp19](https://github.com/jayeshp19))

## 0.7.10

### 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.10"
__version__ = "0.7.11"
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.10"
"version": "0.7.11"
}
14 changes: 14 additions & 0 deletions livekit-plugins/livekit-plugins-google/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# livekit-plugins-google

## 0.10.0

### Minor Changes

- support gemini LLM - [#1382](https://github.com/livekit/agents/pull/1382) ([@jayeshp19](https://github.com/jayeshp19))

### Patch Changes

- fix: address breaking change from google-genai >= 0.3.0 - [#1383](https://github.com/livekit/agents/pull/1383) ([@jayeshp19](https://github.com/jayeshp19))

- gemini improvements: exception handling, transcription & Ensure contents.parts is non-empty in gemini contex - [#1398](https://github.com/livekit/agents/pull/1398) ([@jayeshp19](https://github.com/jayeshp19))

- support transcriber session for user/agent audio - [#1321](https://github.com/livekit/agents/pull/1321) ([@jayeshp19](https://github.com/jayeshp19))

## 0.9.1

### 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.9.1"
__version__ = "0.10.0"
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.1"
"version": "0.10.0"
}
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.16

### Patch Changes

- add generate_reply api for multimodal agent - [#1359](https://github.com/livekit/agents/pull/1359) ([@longcw](https://github.com/longcw))

## 0.10.15

### 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.15"
__version__ = "0.10.16"
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.15"
"version": "0.10.16"
}
6 changes: 6 additions & 0 deletions livekit-plugins/livekit-plugins-playai/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# livekit-plugins-playht

## 1.0.6

### Patch Changes

- fix: Avoid websocket reconnections for each request - [#1387](https://github.com/livekit/agents/pull/1387) ([@jayeshp19](https://github.com/jayeshp19))

## 1.0.5

### Patch Changes
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0.5"
__version__ = "1.0.6"
2 changes: 1 addition & 1 deletion livekit-plugins/livekit-plugins-playai/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "livekit-plugins-playai",
"private": true,
"version": "1.0.5"
"version": "1.0.6"
}
6 changes: 6 additions & 0 deletions livekit-plugins/livekit-plugins-rime/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
# livekit-plugins-rime

## 0.2.0

### Minor Changes

- inital release - [#1377](https://github.com/livekit/agents/pull/1377) ([@jayeshp19](https://github.com/jayeshp19))
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.1.0"
__version__ = "0.2.0"
2 changes: 1 addition & 1 deletion livekit-plugins/livekit-plugins-rime/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "livekit-plugins-rime",
"private": true,
"version": "0.1.0"
"version": "0.2.0"
}
Loading