AI.Mee Guide
Adding AI.Mee To Your Site
In this guide, you'll see how simple it is to add AI.Mee to your web application. It's one line of script code, the rest is handled by us.
Integrating AI.Mee into your source code
The step by step guide and video below shows you how easy it is to add AI.Mee to your site by adding one line of script code to your source code.
Step by Step Guide
- Login to your JellyFaaS account..
- Navigate to your profile page.
- Click AI.Mee Admin Portal which you'll find in your available products list.
- Select the Usage tab.
- Copy and paste the one line of script code into your application.
Video Guide
Integrating AI.Mee into your Wordpress Site
The step by step guide and video below shows you how easy it is to add AI.Mee to your Wordpress site using WPCode.
Pre-requisite
You must have the WPCode plug-in installed as part of your Wordpress setup.
Step by Step Guide
- Login to your Wordpress site and click 'Code Snippets' in the left hand menu.
- Click 'Add New' and select 'Add Your Custom Code (New Snippet)'
- Select 'Javascript Snippet'
- Give your code snippet a title in the title field
- Due to the way WPCode works, we need to reformat the one line of script code from the usage tab mentioned above. Add the code below directly under the script tag in the code preview window.
- In the 'Insertion Section', make sure 'Insert Method' is set to 'Auto Insert' and 'Location' is set to 'Site Wide Body' All other settings can be left at their default setting.
- Click 'Save Snippet'
- Activate the code snippet by toggling the inactive/active toggle to 'Active'
(function() {
function injectJellyfaas() {
var script = document.createElement('script');
script.id = 'jellyfaas-chat-iframe';
script.setAttribute('data-jellyfaas-pkey', 'YOUR-KEY');
script.src = 'https://chat.jellyfaas.com/jellyfaas-chat-embed.js';
script.defer = true;
document.body.appendChild(script);
}
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', injectJellyfaas);
} else {
injectJellyfaas();
}
})();
Replace YOUR-KEY
You must replace 'YOUR-KEY' in the code above with your AI.Mee key which you can find in the AI.Mee usage tab. Click here to get you key.
Video Guide
Multiple AI Assistants
Depending on your subscription level, you can create multiple AI Assistants by simply clicking Create