diff --git a/.changeset/wet-humans-explain.md b/.changeset/wet-humans-explain.md new file mode 100644 index 00000000..844ef570 --- /dev/null +++ b/.changeset/wet-humans-explain.md @@ -0,0 +1,5 @@ +--- +'@livekit/agents': patch +--- + +Add exports for agentOutput, agentPlayout, humanInput, speechHandle diff --git a/agents/src/pipeline/index.ts b/agents/src/pipeline/index.ts index a7b90313..8868d3e6 100644 --- a/agents/src/pipeline/index.ts +++ b/agents/src/pipeline/index.ts @@ -1,3 +1,8 @@ +import * as agentOutput from './agent_output.js'; +import * as agentPlayout from './agent_playout.js'; +import * as humanInput from './human_input.js'; +import * as speechHandle from './speech_handle.js'; + // SPDX-FileCopyrightText: 2024 LiveKit, Inc. // // SPDX-License-Identifier: Apache-2.0 @@ -13,3 +18,5 @@ export { VoicePipelineAgent, AgentCallContext, } from './pipeline_agent.js'; + +export { agentOutput, agentPlayout, humanInput, speechHandle };