|
- <html>
- <body>
- <script>!(function () {
- let e = document.createElement("script"),
- t = document.head || document.getElementsByTagName("head")[0];
- (e.src =
- "https://cdn.jsdelivr.net/npm/rasa-webchat@1.x.x/lib/index.js"),
- // Replace 1.x.x with the version that you want
- (e.async = !0),
- (e.onload = () => {
- window.WebChat.default(
- {
- customData: { language: "en" },
- socketUrl: "https://rasa-chatbot-1234.herokuapp.com",
- // add other props here
- },
- null
- );
- }),
- t.insertBefore(e, t.firstChild);
- })();
- </script>
- </body>
- </html>
|