Important
This project has been retired and archived
The project is based on Vue2 which is now EOL and to migrate to Vue 3 would require major rework.
A commercial offering "Teneo Web Widget" is available from Teneo.ai now which is based on a more modern tech stack and will benefit from commercial support.
You can find Teneo Web Widget releases here
If there is a need of continued use / development of this project for your own needs please feel free to fork the project - which will remain here in archived form.
Teneo Web Chat is a chat widget that can be embedded in websites. Support for various components like buttons, quick replies, images, audio, videos and cards is built-in and the available Teneo Web Chat JavaScript API allows for easy live chat integration and extendability.
Core features:
- Supports various message types, like cards, images, buttons, quick replies etc.
- Lightweight
- Easy to embed in websites
- Extendable through a powerful Javascript API
- Works on all major browsers like Chrome, Edge, Firefox, Internet Explorer 11, Opera and Safari
- Works on mobile devices
- Accessible (WCAG ready)
- Available in multiple languages, easy to localize
- Open source
Additional Features:
-
This readme contains high-level information about running Teneo Web Chat. For full documentation, please refer to the Teneo Web Chat Documentation on the Teneo Developers website.
- Your bot needs to be published and you need to know the engine URL.
- To embed Teneo Web Chat in your site, you will need to be able to upload a javascript file and embed code into the website's html.
To add the web chat UI to your site, proceed as follows:
Download the file teneo-web-chat.js
from the latest release on Github and add it to your site.
Add the following code before the closing </body>
tag to each page where you want the web chat window to appear.
<!-- Teneo Web Chat start -->
<div id="teneo-web-chat"></div>
<script src="/path/to/teneo-web-chat.js"></script>
<script>
/* <![CDATA[ */
window.addEventListener('load', () => {
const element = document.getElementById('teneo-web-chat');
const teneoProps = {
teneoEngineUrl: 'https://some.teneo/engine-instance/',
}
window.TeneoWebChat.initialize(element,teneoProps);
});
/* ]]> */
</script>
<!-- Teneo Web Chat end -->
When adding the script to your site, note the following:
- Make sure
/path/to/teneo-web-chat.js
is replaced with the correct path. - Make sure
https://some.teneo/engine-instance/
is updated to match the url of your engine.
When initializing Teneo Web Chat, an object containing the configuration options can be passed on. In the code above, an object called teneoProps
is used to pass on the configuration options. See the Teneo Web Chat Documentation on the Teneo Developers website for all options.
Note: Starting November 28, 2022, free Heroku Dynos, free Heroku Postgres, and free Heroku Data for Redis® plans will no longer be available.
If you are looking for a quick way to interact with your bot using Teneo Web Chat but you don't have a website to host it yet, you can deploy it to Heroku. Click the button below to create a new Heroku app that hosts the web chat:
- Give the app a name (lowercase, no spaces)
- In the 'Config Vars' section, add the following:
- TENEO_ENGINE_URL: The engine url.
- Click 'Deploy app'.
When Heroku has finished deploying, click 'View app'. You should now be able to use the web chat ui to talk to your bot.
If you want to run the code locally, proceed as follows:
-
Clone the project:
git clone https://github.com/artificialsolutions/teneo-web-chat && cd teneo-web-chat
-
Install dependencies:
npm install
[!NOTE] if you're using Windows and get an error "'NODE_ENV' is not recognized as an internal or external command, operable program or batch file.", you may want to install a module called win-node-env and run
npm install
again. -
Create a
.env
file in theteneo-web-chat
folder with the following (replace the dummy url with Teneo Engine url of your bot):TENEO_ENGINE_URL=https://some.engine/instance/
-
Start the application:
npm run start:dev
The page is now available on http://localhost:9000.
If you've made modifications to the code and you want to build the bundle, run:
npm run-script build
This will add a file teneo-web-chat.js
in the /dist
folder of the project. You can use this teneo-web-chat.js
to add to your site.