We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82f9f7e commit b8cc24bCopy full SHA for b8cc24b
1 file changed
src/main.ts
@@ -73,6 +73,17 @@ export default defineAgent<ProcessUserData>({
73
},
74
});
75
76
+ // // Add a virtual avatar to the session, if desired
77
+ // // For other providers, see https://docs.livekit.io/agents/models/avatar/
78
+ // const avatar = new anam.AvatarSession({
79
+ // personaConfig: {
80
+ // name: '...',
81
+ // avatarId: '...', // See https://docs.livekit.io/agents/models/avatar/plugins/anam
82
+ // },
83
+ // });
84
+ // // Start the avatar and wait for it to join
85
+ // await avatar.start(session, ctx.room);
86
+
87
// Join the room and connect to the user
88
await ctx.connect();
89
0 commit comments