FAQ auto-answers
Daily sitemap crawl stores documents in MySQL FULLTEXT for fast contextual answers.
Magento AI Support Lite
No Magento module. No frontend build step. Install a secure widget, answer FAQ from daily sitemap crawl, search live catalog via backend proxy, and escalate to Email + Telegram when needed.
Paste this snippet into your storefront layout. Replace pk_mas_your_public_key with your shop key.
<script>
(function () {
function loadMagentoAiSupportWidget() {
var s = document.createElement('script');
s.src = 'https://ai-support.magentoservicesapp.com/widget.js';
s.async = true;
s.dataset.shopKey = 'pk_mas_your_public_key';
s.onerror = function () {};
document.head.appendChild(s);
}
if ('requestIdleCallback' in window) {
window.requestIdleCallback(loadMagentoAiSupportWidget, { timeout: 3000 });
} else {
window.addEventListener('load', loadMagentoAiSupportWidget, { once: true });
}
})();
</script>
Daily sitemap crawl stores documents in MySQL FULLTEXT for fast contextual answers.
Product and category retrieval from Magento GraphQL first, REST fallback if integration token exists.
One-click escalation sends notifications to Email and Telegram without exposing customer secrets.