Chat Widget Integration
The GigaML Chat Widget allows you to add an AI-powered chat assistant to any website with minimal setup.
Installation
Adding the chat widget to your website requires only two steps:
- Configure the widget settings
- Add the widget script to your page
HTML Implementation
Important: The configuration object must be named
CHAT_WIDGET_CONFIG
for the widget to function properly. Using any other variable name will prevent the widget from loading correctly.
Single-Page Application (SPA) Implementation
For React, Angular, Vue, or other SPAs:
Finding Your Agent ID
To connect your chat widget to your AI agent, you’ll need your agent ID. You can find this in the Getting Started guide.
Configuration Options
Parameter | Type | Required | Description |
---|---|---|---|
agent_id | string | Yes | Your unique GigaML agent ID |
company_name | string | Yes | Your company name displayed in the widget |
primary_color | string | Yes | Main color for buttons and highlights (hex or rgb) |
primary_text_color | string | Yes | Text color for primary elements |
secondary_color | string | Yes | Secondary color for the widget (hex or rgb) |
secondary_text_color | string | Yes | Text color for secondary elements |
tagline | string | Yes | Short tagline displayed in the widget |
icon_url | string | Yes | URL to your company icon or logo |
position | string | No | Widget position: “bottom-right” (default), “bottom-left”, “top-right”, “top-left” |
org_id | string | No | Your organization ID if applicable |
Variable Naming Requirement
The chat widget configuration must be assigned to a global variable named exactly CHAT_WIDGET_CONFIG
. This is a strict requirement for the widget to function properly.
Implementation Example from GigaML
Here’s how the chat widget is implemented in the GigaML application itself, which serves as a reference implementation:
Adding the Widget to Your Site
To add the chat widget to your website, follow these steps:
For Static Websites (HTML)
- Add the configuration script in the
<head>
or<body>
section of your HTML:
- Add the widget script right after your configuration:
For React Applications
- Create a component for the chat widget:
- Import and use the component in your layout or main component:
Complete Example
Here’s a complete example of how to integrate the chat widget into your website:
Troubleshooting
If the chat widget isn’t appearing on your site, check the following:
- Verify that your agent ID is correct
- Ensure the configuration object is named exactly
CHAT_WIDGET_CONFIG
- Make sure the script is loading properly (check network tab in developer tools)
- Check browser console for any error messages