ControlShift AI - Interactive Avatar Embed Widget
⚠️ Note: This is the CDN endpoint for the Avatar Widget JavaScript file. To use the widget, include the script in your HTML and initialize it with your agent credentials.
<!-- Include the widget script -->
<script src="https://avatar-widget.dev.controlshiftai.com/avatar-agent.js"></script>
<!-- Initialize the widget -->
<script>
AvatarAgent.init({
agentId: 'your-agent-id',
embedToken: 'your-embed-token',
position: 'bottom-right',
onReady: function() {
console.log('Avatar agent ready');
},
onError: function(error) {
console.error('Avatar agent error:', error);
}
});
</script>