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
5 changes: 4 additions & 1 deletion agents/src/inference/stt.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ export type XaiSTTModels = 'xai/stt-1';

export type SpeechmaticsModels = 'speechmatics/enhanced' | 'speechmatics/standard';

export type InworldSTTModels = 'inworld/inworld-stt-1';

export interface CartesiaOptions {
/** Minimum volume threshold. Default: not specified. */
min_volume?: number;
Expand Down Expand Up @@ -176,7 +178,8 @@ type _STTModels =
| AssemblyaiModels
| ElevenlabsSTTModels
| XaiSTTModels
| SpeechmaticsModels;
| SpeechmaticsModels
| InworldSTTModels;

export type STTModels = _STTModels | 'auto' | AnyString;

Expand Down
2 changes: 2 additions & 0 deletions plugins/inworld/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@
//
// SPDX-License-Identifier: Apache-2.0
import { Plugin } from '@livekit/agents';
import './stt.js';
import './tts.js';

export * from './stt.js';
export * from './tts.js';

class InworldPlugin extends Plugin {
Expand Down
Loading