
EasyFindAi
Instant AI Chatbot Integration for Your Website
15 followers
Instant AI Chatbot Integration for Your Website
15 followers
Deploy an AI customer support chatbot for your website in 5 minutes. Reduce support costs with a chatbot that knows your website inside out.







@masump Hi Masum, thanks for the question. The system automatically re-indexes your website once a week, ensuring that most updates are captured regularly. For urgent or time-sensitive changes, you have the option to manually add a “fact”—a text snippet—to update your content immediately. You can add as many facts as needed to keep your responses current.
Do I just need to copy and paste this single line of code within the `<script>` tag in the `<head>` section?
Is that all? Also, are there any discounts available for Product Hunt users or early sign-ups?
@sagar_yadav18Â Yes in general al you need to do is paste that into your website but depending on your framework you need to add the script in a different way for example in Next.js you would do this:
"use client";
import { useEffect } from "react";
export function EasyFindAiChatbot() {
useEffect(() => {
// Create script element
const script = document.createElement("script");
script.src = "https://easyfindai.com/widget-dist/chatbot.iife.js";
script.setAttribute("apiKey", "YOUR_API_KEY");
// Append to document
document.body.appendChild(script);
// Cleanup function
return () => {
if (document.body.contains(script)) {
document.body.removeChild(script);
}
};
}, []);
return null;
}
And then add that component to the layout or a page.
Manna
The 5-minute deployment claim is impressive! ⏱️ Does the chatbot handle follow-up questions contextually (e.g., order status → return policy) using conversation memory, or is each query treated as new?
@desmond_ren1Â Thank you! Yes the chatbot has conversations memory.
Beautiful design and execution. Seems like a great customer chatbot service.
Thank you @kevazy!
Hi @anton_wiklund . It looks great. Does this support React Js
Hi @vineelsaimeesala thank you! Yes it support React you can read how to implement it in react here https://easyfindai.com/docs/react