Quick Start
Install Loops AI in minutes with a simple copy and paste flow.
Use your Configurator snippet
Always copy the embed code from your Widget Configurator first. It already contains your agent settings and the correct host.
Choose your embed mode
Copy the widget script
Open Widget Configurator and copy the script snippet.
Paste before </body>
Add it to the pages where chat should appear.
Publish and test
Reload your website and open the chat bubble.
Copy the iframe code
Open Widget Configurator and switch to Inline Iframe.
Paste into page content
Add it exactly where the chat area should be rendered.
Publish and test
Reload the page and confirm the iframe loads correctly.
Example widget snippet
<script>
(function () {
window.LoopSmartAI = { q: [] };
window.LoopSmartAI.q.push(["init", { agentId: "YOUR_AGENT_ID" }]);
const script = document.createElement("script");
script.src = "https://app.loopsmart.ai/embed.js";
script.async = true;
document.head.appendChild(script);
})();
</script>Use this example as reference. For production, prefer the snippet generated in your configurator.
Continue to Install the Embed.