Skip to content

Commit

Permalink
Version Packages (#1286)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Dec 31, 2024
1 parent aedbb82 commit 924b79e
Show file tree
Hide file tree
Showing 43 changed files with 101 additions and 89 deletions.
5 changes: 0 additions & 5 deletions .changeset/eight-lemons-hear.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/giant-ways-invite.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/gorgeous-sheep-grow.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/hot-trainers-press.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/khaki-candles-rest.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/khaki-stingrays-train.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/quiet-dots-fly.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/silent-oranges-warn.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/slow-walls-bake.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/thirty-coats-tie.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tricky-spiders-change.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.5
livekit-agents>=0.12.6
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.5
livekit-agents>=0.12.6
python-dotenv~=1.0
4 changes: 2 additions & 2 deletions examples/speech-to-text/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
livekit-agents>=0.12.5
livekit-plugins-deepgram>=0.6.15
livekit-agents>=0.12.6
livekit-plugins-deepgram>=0.6.16
python-dotenv~=1.0
4 changes: 2 additions & 2 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.5
livekit-plugins-openai>=0.10.12
livekit-agents>=0.12.6
livekit-plugins-openai>=0.10.13
livekit-plugins-cartesia>=0.4.5
livekit-plugins-elevenlabs>=0.7.9
python-dotenv~=1.0
6 changes: 3 additions & 3 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.5
livekit-plugins-deepgram>=0.6.15
livekit-plugins-google>=0.8.1
livekit-agents>=0.12.6
livekit-plugins-deepgram>=0.6.16
livekit-plugins-google>=0.9.0
livekit-plugins-openai[vertex]>=0.10.10
livekit-plugins-silero>=0.7.4
livekit-plugins-rag>=0.2.3
Expand Down
18 changes: 18 additions & 0 deletions livekit-agents/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# livekit-agents

## 0.12.6

### Patch Changes

- expose worker_id in jobcontext - [#1307](https://github.com/livekit/agents/pull/1307) ([@s-hamdananwar](https://github.com/s-hamdananwar))

- improved handling of LLM errors, do not retry if already began - [#1298](https://github.com/livekit/agents/pull/1298) ([@davidzhao](https://github.com/davidzhao))

- Do not pass function context if at max depth - [#1306](https://github.com/livekit/agents/pull/1306) ([@martin-purplefish](https://github.com/martin-purplefish))

- avoid warnings when function depth matches limit - [#1316](https://github.com/livekit/agents/pull/1316) ([@davidzhao](https://github.com/davidzhao))

- improve interruption handling, avoid agent from getting stuck - [#1290](https://github.com/livekit/agents/pull/1290) ([@davidzhao](https://github.com/davidzhao))

- add manual interrupt method for pipeline agent - [#1294](https://github.com/livekit/agents/pull/1294) ([@longcw](https://github.com/longcw))

- make multimodal class generic and support gemini live api - [#1240](https://github.com/livekit/agents/pull/1240) ([@jayeshp19](https://github.com/jayeshp19))

## 0.12.5

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

## 0.2.9

### Patch Changes

- improved handling of LLM errors, do not retry if already began - [#1298](https://github.com/livekit/agents/pull/1298) ([@davidzhao](https://github.com/davidzhao))

## 0.2.8

### 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.8"
__version__ = "0.2.9"
2 changes: 1 addition & 1 deletion livekit-plugins/livekit-plugins-anthropic/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "livekit-plugins-anthropic",
"private": true,
"version": "0.2.8"
"version": "0.2.9"
}
8 changes: 8 additions & 0 deletions livekit-plugins/livekit-plugins-assemblyai/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# livekit-plugins-assemblyai

## 0.2.2

### Patch Changes

- fix: Ensure STT exceptions are being propagated - [#1291](https://github.com/livekit/agents/pull/1291) ([@davidzhao](https://github.com/davidzhao))

- assemblyai: encode boost words - [#1284](https://github.com/livekit/agents/pull/1284) ([@jmugicagonz](https://github.com/jmugicagonz))

## 0.2.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.2.1"
__version__ = "0.2.2"
2 changes: 1 addition & 1 deletion livekit-plugins/livekit-plugins-assemblyai/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "livekit-plugins-assemblyai",
"private": true,
"version": "0.2.1"
"version": "0.2.2"
}
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.2

### Patch Changes

- fix: Ensure STT exceptions are being propagated - [#1291](https://github.com/livekit/agents/pull/1291) ([@davidzhao](https://github.com/davidzhao))

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

## 0.6.16

### Patch Changes

- fix: Ensure STT exceptions are being propagated - [#1291](https://github.com/livekit/agents/pull/1291) ([@davidzhao](https://github.com/davidzhao))

## 0.6.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.6.15"
__version__ = "0.6.16"
2 changes: 1 addition & 1 deletion livekit-plugins/livekit-plugins-deepgram/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "livekit-plugins-deepgram",
"private": true,
"version": "0.6.15"
"version": "0.6.16"
}
10 changes: 10 additions & 0 deletions livekit-plugins/livekit-plugins-google/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# livekit-plugins-google

## 0.9.0

### Minor Changes

- make multimodal class generic and support gemini live api - [#1240](https://github.com/livekit/agents/pull/1240) ([@jayeshp19](https://github.com/jayeshp19))

### Patch Changes

- fix: Ensure STT exceptions are being propagated - [#1291](https://github.com/livekit/agents/pull/1291) ([@davidzhao](https://github.com/davidzhao))

## 0.8.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.8.1"
__version__ = "0.9.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.8.1"
"version": "0.9.0"
}
8 changes: 8 additions & 0 deletions livekit-plugins/livekit-plugins-openai/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# livekit-plugins-openai

## 0.10.13

### Patch Changes

- improved handling of LLM errors, do not retry if already began - [#1298](https://github.com/livekit/agents/pull/1298) ([@davidzhao](https://github.com/davidzhao))

- make multimodal class generic and support gemini live api - [#1240](https://github.com/livekit/agents/pull/1240) ([@jayeshp19](https://github.com/jayeshp19))

## 0.10.12

### 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.12"
__version__ = "0.10.13"
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.12"
"version": "0.10.13"
}
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.4

### Patch Changes

- Support PlayAI TTS engine. - [#1174](https://github.com/livekit/agents/pull/1174) ([@jayeshp19](https://github.com/jayeshp19))

## 1.0.3

### Patch Changes
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0.3"
__version__ = "1.0.4"
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.3"
"version": "1.0.4"
}
6 changes: 6 additions & 0 deletions livekit-plugins/livekit-plugins-turn-detector/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# livekit-plugins-eou

## 0.3.5

### Patch Changes

- fix int32/64 errors on Windows - [#1285](https://github.com/livekit/agents/pull/1285) ([@nbsp](https://github.com/nbsp))

## 0.3.4

### 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.4"
__version__ = "0.3.5"
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.4"
"version": "0.3.5"
}

0 comments on commit 924b79e

Please sign in to comment.