Skip to content

Commit

Permalink
Version Packages (livekit#552)
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 Aug 1, 2024
1 parent c862923 commit 8ce90df
Show file tree
Hide file tree
Showing 28 changed files with 57 additions and 89 deletions.
5 changes: 0 additions & 5 deletions .changeset/angry-books-eat.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/clever-poets-behave.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/eleven-kings-push.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/eleven-monkeys-serve.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/gorgeous-teachers-rule.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/hot-cows-wash.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/many-clocks-punch.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/perfect-doors-play.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/pretty-rivers-care.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/purple-garlics-approve.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/six-badgers-sneeze.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/slimy-seas-hammer.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/warm-ducks-suffer.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/wicked-rats-exist.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/witty-dolls-perform.md

This file was deleted.

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.2
livekit-agents>=0.8.3
4 changes: 2 additions & 2 deletions examples/speech-to-text/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
livekit-agents>=0.8.2
livekit-plugins-deepgram>=0.6.1
livekit-agents>=0.8.3
livekit-plugins-deepgram>=0.6.2
2 changes: 1 addition & 1 deletion examples/text-to-speech/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
livekit-agents>=0.8.2
livekit-agents>=0.8.3
livekit-plugins-openai>=0.7.1
6 changes: 3 additions & 3 deletions examples/voice-assistant/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
livekit-agents>=0.8.2
livekit-agents>=0.8.3
livekit-plugins-openai>=0.7.1
livekit-plugins-deepgram>=0.6.1
livekit-plugins-silero>=0.6.1
livekit-plugins-deepgram>=0.6.2
livekit-plugins-silero>=0.6.2
python-dotenv~=1.0
26 changes: 26 additions & 0 deletions livekit-agents/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# livekit-agents

## 0.8.3

### Patch Changes

- voiceassistant: run function calls sequentially - [#554](https://github.com/livekit/agents/pull/554) ([@theomonnom](https://github.com/theomonnom))

- configure plugins loggers & more debug logs on the voiceassistant - [#555](https://github.com/livekit/agents/pull/555) ([@theomonnom](https://github.com/theomonnom))

- warn no room connection after job_entry was called after 10 seconds. - [#558](https://github.com/livekit/agents/pull/558) ([@theomonnom](https://github.com/theomonnom))

- deepgram: reduce chunks size to 100ms - [#561](https://github.com/livekit/agents/pull/561) ([@theomonnom](https://github.com/theomonnom))

- voiceassistant: cleanup validation behaviour #545 - [#553](https://github.com/livekit/agents/pull/553) ([@theomonnom](https://github.com/theomonnom))

- voiceassistant: commit user question directly when allow_interruptions=False - [#547](https://github.com/livekit/agents/pull/547) ([@theomonnom](https://github.com/theomonnom))

- ipc: increase high ping threshold - [#556](https://github.com/livekit/agents/pull/556) ([@theomonnom](https://github.com/theomonnom))

- voiceassistant: interrupt on final transcript - [#546](https://github.com/livekit/agents/pull/546) ([@theomonnom](https://github.com/theomonnom))

- voiceassistant: tweaks & fix speech being removed too soon from the queue - [#560](https://github.com/livekit/agents/pull/560) ([@theomonnom](https://github.com/theomonnom))

- voiceassistant: fix duplicate answers - [#548](https://github.com/livekit/agents/pull/548) ([@theomonnom](https://github.com/theomonnom))

- reduce the default load threshold to a more appropriate default - [#559](https://github.com/livekit/agents/pull/559) ([@theomonnom](https://github.com/theomonnom))

## 0.8.2

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

## 0.6.2

### Patch Changes

- deepgram: reduce chunks size to 100ms - [#561](https://github.com/livekit/agents/pull/561) ([@theomonnom](https://github.com/theomonnom))

- deepgram: segment audio frames into 200ms intervals before sending to the websocket #549 - [#553](https://github.com/livekit/agents/pull/553) ([@theomonnom](https://github.com/theomonnom))

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

## 0.6.2

### Patch Changes

- silero: tiny tweaks - [#565](https://github.com/livekit/agents/pull/565) ([@theomonnom](https://github.com/theomonnom))

- silero: optimize numpy input buffers - [#550](https://github.com/livekit/agents/pull/550) ([@theomonnom](https://github.com/theomonnom))

- silero: bring back expfilter - [#562](https://github.com/livekit/agents/pull/562) ([@theomonnom](https://github.com/theomonnom))

## 0.6.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.6.1"
__version__ = "0.6.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.6.1"
"version": "0.6.2"
}

0 comments on commit 8ce90df

Please sign in to comment.