Embedding Wabee AI Agent Chat on Your Website
Overview
This guide will walk you through the process of embedding your Wabee AI agent chat interface on any website. The embedding feature allows your users to interact with your agent directly from your website.
Enabling the Embedding Feature
- Navigate to your agent's settings page
- Click on the Integrations tab
- Locate the embedding feature toggle switch
- Enable the toggle to activate embedding functionality
Implementation Guide
Step 1: Access Embed Code
- After enabling the embedding feature, click on the How to Embed button
- You will be presented with the necessary code snippets and configuration options
Step 2: Add the Code to Your Website
Add the following code to the <body>
section of your website:
<!-- Create a container for the chat -->
<div id="wabee-chat-container"></div>
<!-- Load the Wabee Chat widget -->
<script src="https://platform.wabee.ai/scripts/wabee-chat-browser.umd.js"></script>
<script type="text/javascript">
window.WabeeChat.init({
target: '#wabee-chat-container',
apiKey: 'your_client_id_here',
agentUrl: 'https://data-analysis-agent.your_domain.ai/core/v1',
width: '100%',
height: '100%',
sseUrl: 'https://notifications-hub.wabee.ai/events'
});
</script>
Step 3: Configure the Integration
- Replace 'your_client_id_here' with your actual Client ID as shown in your account
- Update the
agentUrl
to point to your specific agent endpoint - Adjust the
width
andheight
parameters as needed for your website layout
Security Configuration
- Set Allowed Origins:
- In your application settings, specify the allowed domains that can embed the chat
-
This is a crucial security measure to prevent unauthorized embedding
-
Implement proper authentication and authorization in your application
- Regularly review and update your security settings
Testing and Monitoring
- After implementation, thoroughly test the chat functionality on your website
- Monitor the performance and user interactions
- Make adjustments to the configuration as needed based on usage patterns
Troubleshooting
- Ensure the embedding feature is enabled
- Verify the iframe code is correctly placed in your website's HTML
- Check your website's Content Security Policy (CSP) settings if the embed doesn't load
- Confirm that your domain is listed in the Allowed Origins settings