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 Sep 20, 2024
1 parent fe4471a commit 3bb77f2
Show file tree
Hide file tree
Showing 35 changed files with 80 additions and 98 deletions.
5 changes: 0 additions & 5 deletions .changeset/curly-rats-burn.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/curvy-lies-watch.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/fair-cameras-collect.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/grumpy-otters-tell.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/large-dogs-notice.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/little-cherries-hope.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/popular-ants-press.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/popular-geckos-perform.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/quiet-eagles-add.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/serious-turkeys-act.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/shiny-baboons-jog.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/spicy-cars-arrive.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/stupid-comics-destroy.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/swift-comics-give.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/young-hats-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 +1 @@
livekit-agents>=0.8.12
livekit-agents>=0.9.0
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.8.12
livekit-agents>=0.9.0
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.8.12
livekit-agents>=0.9.0
livekit-plugins-deepgram>=0.6.7
6 changes: 3 additions & 3 deletions examples/text-to-speech/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
livekit-agents>=0.8.12
livekit-plugins-openai>=0.8.3
livekit-agents>=0.9.0
livekit-plugins-openai>=0.8.4
livekit-plugins-cartesia>=0.4.2
livekit-plugins-elevenlabs>=0.7.4
livekit-plugins-elevenlabs>=0.7.5
4 changes: 2 additions & 2 deletions examples/voice-assistant/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
livekit-agents>=0.8.12
livekit-plugins-openai>=0.8.3
livekit-agents>=0.9.0
livekit-plugins-openai>=0.8.4
livekit-plugins-deepgram>=0.6.7
livekit-plugins-silero>=0.6.4
python-dotenv~=1.0
Expand Down
34 changes: 34 additions & 0 deletions livekit-agents/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,39 @@
# livekit-agents

## 0.9.0

### Minor Changes

- rename voice_assistant.state to lk.agent.state - [#772](https://github.com/livekit/agents/pull/772) ([@bcherry](https://github.com/bcherry))

### Patch Changes

- improve graceful shutdown - [#756](https://github.com/livekit/agents/pull/756) ([@theomonnom](https://github.com/theomonnom))

- avoid returning tiny frames from TTS - [#747](https://github.com/livekit/agents/pull/747) ([@theomonnom](https://github.com/theomonnom))

- windows: default to threaded executor & fix dev mode - [#755](https://github.com/livekit/agents/pull/755) ([@theomonnom](https://github.com/theomonnom))

- 11labs: send phoneme in one entire xml chunk - [#766](https://github.com/livekit/agents/pull/766) ([@theomonnom](https://github.com/theomonnom))

- fix: process not starting if num_idle_processes is zero - [#763](https://github.com/livekit/agents/pull/763) ([@theomonnom](https://github.com/theomonnom))

- voiceassistant: avoid tiny frames on playout - [#750](https://github.com/livekit/agents/pull/750) ([@theomonnom](https://github.com/theomonnom))

- voiceassistant: expose turn_completion_delay - [#752](https://github.com/livekit/agents/pull/752) ([@theomonnom](https://github.com/theomonnom))

- limit concurrent process init to 1 - [#751](https://github.com/livekit/agents/pull/751) ([@theomonnom](https://github.com/theomonnom))

- Add typing-extensions as a dependency - [#778](https://github.com/livekit/agents/pull/778) ([@keepingitneil](https://github.com/keepingitneil))

- Allow setting LLM temperature with VoiceAssistant - [#741](https://github.com/livekit/agents/pull/741) ([@davidzhao](https://github.com/davidzhao))

- better dev defaults - [#762](https://github.com/livekit/agents/pull/762) ([@theomonnom](https://github.com/theomonnom))

- voiceassistant: allow to cancel llm generation inside before_llm_cb - [#753](https://github.com/livekit/agents/pull/753) ([@theomonnom](https://github.com/theomonnom))

- use os.exit to exit forcefully - [#770](https://github.com/livekit/agents/pull/770) ([@theomonnom](https://github.com/theomonnom))

## 0.8.12

### 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.8.12"
__version__ = "0.9.0"
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.8.12"
"version": "0.9.0"
}
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.3.2

### Patch Changes

- avoid returning tiny frames from TTS - [#747](https://github.com/livekit/agents/pull/747) ([@theomonnom](https://github.com/theomonnom))

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

## 0.7.5

### Patch Changes

- avoid returning tiny frames from TTS - [#747](https://github.com/livekit/agents/pull/747) ([@theomonnom](https://github.com/theomonnom))

- 11labs: send phoneme in one entire xml chunk - [#766](https://github.com/livekit/agents/pull/766) ([@theomonnom](https://github.com/theomonnom))

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

## 0.7.1

### Patch Changes

- avoid returning tiny frames from TTS - [#747](https://github.com/livekit/agents/pull/747) ([@theomonnom](https://github.com/theomonnom))

## 0.7.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.7.0"
__version__ = "0.7.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.7.0"
"version": "0.7.1"
}
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.8.4

### Patch Changes

- avoid returning tiny frames from TTS - [#747](https://github.com/livekit/agents/pull/747) ([@theomonnom](https://github.com/theomonnom))

- Fixing Assistant API Vision Capabilities - [#771](https://github.com/livekit/agents/pull/771) ([@keepingitneil](https://github.com/keepingitneil))

## 0.8.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.8.3"
__version__ = "0.8.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.8.3"
"version": "0.8.4"
}

0 comments on commit 3bb77f2

Please sign in to comment.