Skip to main content

Chatbot Popup Widget

The Popup Widget provides a customizable chat interface that pops up on a click or after a set delay.

Quick Start

Add the following code to your HTML to create a basic popup widget:

<script type="module">
import Agent from 'https://cdn.jsdelivr.net/npm/@agent-embed/js@latest/dist/web.js'
Agent.initPopup({
agentName: "your assistant name", //generated on the predictable dialogs app
autoShowDelay: 3000,
});
</script>

Configuration Options

Required Parameters

ParameterTypeDescription
agentNamestringName of the assistant that will appear in the widget. Uses the specified Predictable Dialogs agent or an agent from your custom backend.
autoShowDelaynumberTime in milliseconds before the popup automatically appears after the page loads.

Optional Parameters

ParameterTypeDescription
streambooleanDefault is true. A flag that indicates whether messages should be streamed.
persistSessionbooleanDefault is true. A flag that indicates whether the seession persists, if set to false a new session is started every time the chatbot loads. (Read more)
initialPromptstringInitial message sent to the AI when conversation starts. Note: Only used when initial responses are disabled on the server.
filterResponsefunctionCallback function that processes AI responses before displaying them. Takes the response string as input and returns the modified string. Useful for removing citations or modifying content(see example).
defaultOpenbooleanWhen true, the popup will be open by default but can be closed by the user.
isOpenbooleanWhen true, the popup will be open by default and cannot be closed by the user.
onClosefunctionCallback function that executes when the popup is closed.
onOpenfunctionCallback function that executes when the popup is opened.
themeobjectStyling configuration object. Currently supports width property to set popup width (default: '512px' on laptop screens).
apiHoststringURL endpoint for the chat service. Points to Predictable Dialogs backend by default, but can be configured to use your own backend.

Example with Optional Parameters

Agent.initPopup({
agentName: "Customer Support", //Generated on the predictable dialogs app
autoShowDelay: 5000,
initialPrompt: 'Tell me a joke',
filterResponse: function(response) {
const annotationRegex = /\d+:\d+[^\s]+/g;
return response.replace(annotationRegex, "");
},
defaultOpen: false,
onOpen: () => console.log("Widget opened"),
theme: {
width: "400px"
}
});

Programmatic Control

Control the popup widget with these JavaScript methods:

MethodDescription
Agent.open()Opens the popup widget
Agent.close()Closes the popup widget
Agent.toggle()Toggles between open and closed states

Example Usage

<button onclick="Agent.open()">Contact us</button>
<button onclick="Agent.close()">Close chat</button>
<button onclick="Agent.toggle()">Toggle chat</button>

Internal Elements Styling

To customize the appearance of elements within the chat interface itself (such as message bubbles, fonts, colors), use the "Theme" tab in the Predictable Dialogs app dashboard.