Skip to content
Merged
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
11 changes: 11 additions & 0 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,17 @@ export default defineAgent<ProcessUserData>({
},
});

// // Add a virtual avatar to the session, if desired
// // For other providers, see https://docs.livekit.io/agents/models/avatar/
// const avatar = new anam.AvatarSession({
// personaConfig: {
// name: '...',
// avatarId: '...', // See https://docs.livekit.io/agents/models/avatar/plugins/anam
// },
// });
// // Start the avatar and wait for it to join
// await avatar.start(session, ctx.room);

// Join the room and connect to the user
await ctx.connect();

Expand Down
Loading