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: 5 additions & 0 deletions .changeset/blue-kids-cough.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@livekit/agents": patch
---

Require session management grant for remote sessions
2 changes: 1 addition & 1 deletion agents/src/voice/agent_session.ts
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ export class AgentSession<

this._roomIO.start();

const transport = new RoomSessionTransport(room, this._roomIO);
const transport = new RoomSessionTransport(room);
this.sessionHost = new SessionHost(transport);
this.sessionHost.registerSession(this);
if (inputOptions?.textEnabled !== false) {
Expand Down
1 change: 1 addition & 0 deletions agents/src/voice/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export {
export * from './avatar/index.js';
export * from './background_audio.js';
export {
type IncomingMessage,
type TextInputCallback,
type TextInputEvent,
RemoteSession,
Expand Down
Loading
Loading