EasyFindAi

EasyFindAi

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.
EasyFindAi gallery image
EasyFindAi gallery image
EasyFindAi gallery image
Free Options
Launch Team / Built With
AssemblyAI
AssemblyAI
Build voice AI apps with a single API
Promoted

What do you think? …

Anton Wiklund
Maker
📌
Hello, my name is Anton Wiklund, the founder of EasyFindAi. Initially, my goal was to build a legal tech platform called DocumentFlow to help law firms efficiently manage their documents using AI. However, along the way, I discovered that my true passion wasn't specifically in legal technology, but rather in building smart AI agents and working with Retrieval-Augmented Generation (RAG). This realization inspired me to create EasyFindAi, an easy-to-integrate chatbot designed for all types of websites. With just a single line of code, you can instantly equip your website with a smart, responsive AI chatbot. It continuously learns from your site's content, ensuring your visitors always receive accurate and helpful information. I'm excited to share EasyFindAi with the Product Hunt community and can't wait to hear your feedback and see how it helps improve your user interactions!
Anton Wiklund

@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.

Sagar Yadav

Do I just need to copy and paste this single line of code within the `<script>` tag in the `<head>` section?

<script src="https://easyfindai.com/widget-di..." apiKey="your_api_key"></script>

Is that all? Also, are there any discounts available for Product Hunt users or early sign-ups?

Anton Wiklund

@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.

Desmond

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?

Anton Wiklund

@desmond_ren1 Thank you! Yes the chatbot has conversations memory.

Kevazy

Beautiful design and execution. Seems like a great customer chatbot service.

Anton Wiklund

Thank you @kevazy!

Vineel Sai Meesala

Hi @anton_wiklund . It looks great. Does this support React Js

Anton Wiklund

Hi @vineelsaimeesala thank you! Yes it support React you can read how to implement it in react here https://easyfindai.com/docs/react