know function bot chat is used #6
Unanswered
chaitanyakothakota
asked this question in
Q&A
Replies: 1 comment
-
Hi 👋, The chatbot used on this website is likely a third-party service like Tidio, Chatra, or similar — usually embedded with a simple script tag. If you're looking to implement an online chatbot in your own site, here’s a basic example using Tidio, which is free and easy to integrate. ✅ Steps to Add Tidio Chatbot:
💻 Example (HTML):<script src="//code.tidio.co/your-tidio-key.js" async></script>
or For Next.js, you can use next/head:
import Head from 'next/head';
export default function Home() {
return (
<>
<Head>
<script src="//code.tidio.co/your-tidio-key.js" async></script>
</Head>
<main>...</main>
</>
);
}
if you want to build your own, you can also use:
1. Dialogflow
2. Botpress
3. Rasa
Let me know if you'd like a full example using custom chatbot logic with backend integration!
Hope this helps! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
i know function bot chat is used and how to used and can you provide code of online bot chat.
Beta Was this translation helpful? Give feedback.
All reactions