<!-- In your <head> tag --><script src="https://cdn.botpress.cloud/webchat/v3.3/inject.js"></script><style>
  #webchat .bpWebchat {
    position: unset;
    width: 100%;
    height: 100%;
    max-height: 100%;
    max-width: 100%;
  }

  #webchat .bpFab {
    display: none;
  }
</style><!-- Put this on your page BEFORE the script below --><div id="webchat" style="width: 500px; height: 500px;"></div><!-- In your <body> tag --><script>
  window.botpress.on("webchat:ready", () => {
    window.botpress.open();
  });
  window.botpress.init({
  "botId": "3c06a69a-5d80-4153-8a16-1fedebee41f2",
  "configuration": {
    "version": "v2",
    "botName": "Custom Assistant",
    "botDescription": "I can assist you with your unique requests and provide personalized support.",
    "website": {},
    "email": {},
    "phone": {},
    "termsOfService": {},
    "privacyPolicy": {},
    "color": "#3276EA",
    "variant": "solid",
    "headerVariant": "glass",
    "themeMode": "light",
    "fontFamily": "inter",
    "radius": 4,
    "feedbackEnabled": true,
    "footer": "[⚡ by Botpress](https://botpress.com/?from=webchat)"
  },
  "clientId": "9e50a922-6cb1-413f-a939-cda0607664dc",
  "selector": "#webchat"
});
</script>