Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .changeset/aws-plugin.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
'@livekit/agents-plugin-aws': minor
'@livekit/agents': minor
---

Add the AWS plugin (`@livekit/agents-plugin-aws`), providing LLM (Amazon Bedrock Converse), STT (Amazon Transcribe streaming), and TTS (Amazon Polly). Adds an `'aws'` provider format to `@livekit/agents` for converting `ChatContext` to Bedrock Converse messages.
5 changes: 5 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,16 @@ jobs:
- 'plugins/test/**'
plugins:
- 'plugins/**'
aws_plugin:
- 'plugins/aws/**'
examples:
- 'examples/**'
- name: Test agents
if: steps.filter.outputs.agents-or-tests == 'true' || github.event_name == 'push'
run: pnpm test agents
- name: Test AWS plugin
if: steps.filter.outputs.aws_plugin == 'true' || github.event_name == 'push'
run: pnpm vitest run plugins/aws/src
# - name: Test examples
# if: (steps.filter.outputs.examples == 'true' || github.event_name == 'push')
# env:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,7 @@ examples/src/test_*.ts
!.changeset/*.md
!**/README.md
!**/CHANGELOG.md
!**/etc/*.api.md
!CONTRIBUTING.md
!CLAUDE.md
!.CODE_OF_CONDUCT.md
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ Currently, only the following plugins are supported:
| [@livekit/agents-plugin-phonic](https://www.npmjs.com/package/@livekit/agents-plugin-phonic) | Realtime |
| [@livekit/agents-plugin-fishaudio](https://www.npmjs.com/package/@livekit/agents-plugin-fishaudio) | TTS |
| [@livekit/agents-plugin-hume](https://www.npmjs.com/package/@livekit/agents-plugin-hume) | TTS |
| [@livekit/agents-plugin-aws](https://www.npmjs.com/package/@livekit/agents-plugin-aws) | LLM, STT, TTS |

## Docs and guides

Expand Down
Loading