Skip to content

Commit

Permalink
Version Packages (#893)
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 Oct 15, 2024
1 parent c1f2674 commit 1aa497e
Show file tree
Hide file tree
Showing 26 changed files with 50 additions and 61 deletions.
5 changes: 0 additions & 5 deletions .changeset/curly-mails-think.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/heavy-donkeys-check.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/light-tools-jump.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/little-taxis-glow.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/shiny-rabbits-suffer.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/shy-ghosts-greet.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/six-suits-shake.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/strong-lobsters-push.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tricky-parrots-notice.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 +1 @@
livekit-agents>=0.10.1
livekit-agents>=0.10.2
2 changes: 1 addition & 1 deletion examples/simple-color/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
livekit-agents>=0.10.1
livekit-agents>=0.10.2
2 changes: 1 addition & 1 deletion examples/speech-to-text/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
livekit-agents>=0.10.1
livekit-agents>=0.10.2
livekit-plugins-deepgram>=0.6.8
4 changes: 2 additions & 2 deletions examples/text-to-speech/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
livekit-agents>=0.10.1
livekit-plugins-openai>=0.10.3
livekit-agents>=0.10.2
livekit-plugins-openai>=0.10.4
livekit-plugins-cartesia>=0.4.2
livekit-plugins-elevenlabs>=0.7.5
6 changes: 3 additions & 3 deletions examples/voice-pipeline-agent/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
livekit-agents>=0.10.1
livekit-plugins-openai>=0.10.3
livekit-agents>=0.10.2
livekit-plugins-openai>=0.10.4
livekit-plugins-deepgram>=0.6.8
livekit-plugins-silero>=0.7.1
livekit-plugins-silero>=0.7.2
livekit-plugins-rag>=0.2.2
python-dotenv~=1.0
aiofile~=3.8.8
12 changes: 12 additions & 0 deletions livekit-agents/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# livekit-agents

## 0.10.2

### Patch Changes

- Fix split_paragraphs and simple-rag example - [#896](https://github.com/livekit/agents/pull/896) ([@davidzhao](https://github.com/davidzhao))

- Fix bug where if the tts_source was a string but before_tts_cb returned AsyncIterable[str], the transcript would not be synthesized. - [#906](https://github.com/livekit/agents/pull/906) ([@martin-purplefish](https://github.com/martin-purplefish))

- Allow forcing interruptions of incomplete audio - [#891](https://github.com/livekit/agents/pull/891) ([@martin-purplefish](https://github.com/martin-purplefish))

- Include chat context on collected tool calls - [#897](https://github.com/livekit/agents/pull/897) ([@martin-purplefish](https://github.com/martin-purplefish))

## 0.10.1

### 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.10.1"
__version__ = "0.10.2"
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.10.1"
"version": "0.10.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.4.0

### Minor Changes

- Azure TTS Prosody SSML support #912 - [#914](https://github.com/livekit/agents/pull/914) ([@theomonnom](https://github.com/theomonnom))

## 0.3.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.3.2"
__version__ = "0.4.0"
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.3.2"
"version": "0.4.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.4

### Patch Changes

- add x.ai support - [#907](https://github.com/livekit/agents/pull/907) ([@theomonnom](https://github.com/theomonnom))

- Fix functions to include content - [#897](https://github.com/livekit/agents/pull/897) ([@martin-purplefish](https://github.com/martin-purplefish))

## 0.10.3

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

## 0.7.2

### Patch Changes

- silero: add update_options - [#899](https://github.com/livekit/agents/pull/899) ([@theomonnom](https://github.com/theomonnom))

- silero: fix speech_buffer for END_OF_SPEECH - [#898](https://github.com/livekit/agents/pull/898) ([@theomonnom](https://github.com/theomonnom))

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

0 comments on commit 1aa497e

Please sign in to comment.