Skip to content

Commit c9dc488

Browse files
Version Packages (#570)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent f6c51a3 commit c9dc488

37 files changed

+77
-96
lines changed

.changeset/angry-drinks-hunt.md

-5
This file was deleted.

.changeset/chatty-flowers-think.md

-5
This file was deleted.

.changeset/cool-olives-act.md

-5
This file was deleted.

.changeset/empty-rings-begin.md

-5
This file was deleted.

.changeset/khaki-gorillas-cross.md

-5
This file was deleted.

.changeset/late-rockets-double.md

-5
This file was deleted.

.changeset/red-numbers-complain.md

-5
This file was deleted.

.changeset/sharp-hornets-talk.md

-5
This file was deleted.

.changeset/small-badgers-drop.md

-5
This file was deleted.

.changeset/thin-apricots-end.md

-5
This file was deleted.

.changeset/unlucky-starfishes-fold.md

-5
This file was deleted.

.changeset/violet-students-shout.md

-5
This file was deleted.

.changeset/weak-crews-whisper.md

-5
This file was deleted.

.changeset/wet-crabs-rhyme.md

-5
This file was deleted.

.changeset/yellow-bags-cry.md

-5
This file was deleted.
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
livekit-agents>=0.8.3
1+
livekit-agents>=0.8.4
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
livekit-agents>=0.8.3
2-
livekit-plugins-deepgram>=0.6.2
1+
livekit-agents>=0.8.4
2+
livekit-plugins-deepgram>=0.6.3
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
livekit-agents>=0.8.3
2-
livekit-plugins-openai>=0.7.1
1+
livekit-agents>=0.8.4
2+
livekit-plugins-openai>=0.8.0
+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
livekit-agents>=0.8.3
2-
livekit-plugins-openai>=0.7.1
3-
livekit-plugins-deepgram>=0.6.2
4-
livekit-plugins-silero>=0.6.2
1+
livekit-agents>=0.8.4
2+
livekit-plugins-openai>=0.8.0
3+
livekit-plugins-deepgram>=0.6.3
4+
livekit-plugins-silero>=0.6.3
55
python-dotenv~=1.0

livekit-agents/CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# livekit-agents
22

3+
## 0.8.4
4+
5+
### Patch Changes
6+
7+
- voiceassistant: only commit the spoken words in the chat context. - [#589](https://github.com/livekit/agents/pull/589) ([@theomonnom](https://github.com/theomonnom))
8+
9+
- use aiodns by default - [#579](https://github.com/livekit/agents/pull/579) ([@theomonnom](https://github.com/theomonnom))
10+
11+
- voice_assistant: fix missing spaces between transcript chunks - [#566](https://github.com/livekit/agents/pull/566) ([@egoldschmidt](https://github.com/egoldschmidt))
12+
13+
- voiceassistant: fix transcription being fully sent even when interrupted - [#581](https://github.com/livekit/agents/pull/581) ([@theomonnom](https://github.com/theomonnom))
14+
15+
- voiceassistant: fix AssertionError when there is no user_question - [#582](https://github.com/livekit/agents/pull/582) ([@theomonnom](https://github.com/theomonnom))
16+
17+
- voiceassistant: fix speech validation cancellation - [#584](https://github.com/livekit/agents/pull/584) ([@theomonnom](https://github.com/theomonnom))
18+
19+
- voiceassistant: fix synthesis continuing after interruption - [#588](https://github.com/livekit/agents/pull/588) ([@theomonnom](https://github.com/theomonnom))
20+
321
## 0.8.3
422

523
### Patch Changes

livekit-agents/livekit/agents/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = "0.8.3"
15+
__version__ = "0.8.4"

livekit-agents/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"name": "livekit-agents",
33
"private": true,
4-
"version": "0.8.3"
4+
"version": "0.8.4"
55
}

livekit-plugins/livekit-plugins-deepgram/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# livekit-plugins-deepgram
22

3+
## 0.6.3
4+
5+
### Patch Changes
6+
7+
- deepgram: update default model to nova-2-conversationalai - [#576](https://github.com/livekit/agents/pull/576) ([@theomonnom](https://github.com/theomonnom))
8+
39
## 0.6.2
410

511
### Patch Changes

livekit-plugins/livekit-plugins-deepgram/livekit/plugins/deepgram/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = "0.6.2"
15+
__version__ = "0.6.3"
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"name": "livekit-plugins-deepgram",
33
"private": true,
4-
"version": "0.6.2"
4+
"version": "0.6.3"
55
}

livekit-plugins/livekit-plugins-elevenlabs/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# livekit-plugins-elevenlabs
22

3+
## 0.7.2
4+
5+
### Patch Changes
6+
7+
- elevenlabs: update default model to eleven_turbo_v2_5 - [#578](https://github.com/livekit/agents/pull/578) ([@theomonnom](https://github.com/theomonnom))
8+
9+
- gracefully error on non-PCM data - [#567](https://github.com/livekit/agents/pull/567) ([@nbsp](https://github.com/nbsp))
10+
311
## 0.7.1
412

513
### Patch Changes

livekit-plugins/livekit-plugins-elevenlabs/livekit/plugins/elevenlabs/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = "0.7.1"
15+
__version__ = "0.7.2"
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"name": "livekit-plugins-elevenlabs",
33
"private": true,
4-
"version": "0.7.1"
4+
"version": "0.7.2"
55
}

livekit-plugins/livekit-plugins-openai/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# livekit-plugins-openai
22

3+
## 0.8.0
4+
5+
### Minor Changes
6+
7+
- openai: use openai client for stt - [#583](https://github.com/livekit/agents/pull/583) ([@theomonnom](https://github.com/theomonnom))
8+
9+
### Patch Changes
10+
11+
- openai: add api_key argument - [#580](https://github.com/livekit/agents/pull/580) ([@theomonnom](https://github.com/theomonnom))
12+
13+
- openai: fix incorrect API urls on Windows - [#575](https://github.com/livekit/agents/pull/575) ([@theomonnom](https://github.com/theomonnom))
14+
315
## 0.7.1
416

517
### Patch Changes

livekit-plugins/livekit-plugins-openai/livekit/plugins/openai/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = "0.7.1"
15+
__version__ = "0.8.0"
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"name": "livekit-plugins-openai",
33
"private": true,
4-
"version": "0.7.1"
4+
"version": "0.8.0"
55
}

livekit-plugins/livekit-plugins-rag/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# livekit-plugins-rag
22

3+
## 0.2.1
4+
5+
### Patch Changes
6+
7+
- rag: add missing logger file - [#571](https://github.com/livekit/agents/pull/571) ([@theomonnom](https://github.com/theomonnom))
8+
39
## 0.2.0
410

511
### Minor Changes

livekit-plugins/livekit-plugins-rag/livekit/plugins/rag/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = "0.2.0"
15+
__version__ = "0.2.1"
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"name": "livekit-plugins-rag",
33
"private": true,
4-
"version": "0.2.0"
4+
"version": "0.2.1"
55
}

livekit-plugins/livekit-plugins-silero/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# livekit-plugins-silero
22

3+
## 0.6.3
4+
5+
### Patch Changes
6+
7+
- silero: fix high cpu usage - [#569](https://github.com/livekit/agents/pull/569) ([@theomonnom](https://github.com/theomonnom))
8+
39
## 0.6.2
410

511
### Patch Changes

livekit-plugins/livekit-plugins-silero/livekit/plugins/silero/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = "0.6.2"
15+
__version__ = "0.6.3"
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"name": "livekit-plugins-silero",
33
"private": true,
4-
"version": "0.6.2"
4+
"version": "0.6.3"
55
}

0 commit comments

Comments
 (0)