⭐️ Taalk Bot
Taalk Bot is your always-on AI assistant for the Taalk platform. It provides instant help, answers questions, and guides users through your workspace — whether embedded in your site or inside your Taalk portal.
What Taalk Bot Does
-
Instant Assistance: Helps users find information quickly without waiting for human support.
-
Platform-Aware: Connects directly to your AI Agent logic, database, and workflows in real time.
-
Customizable Personality: You can name your bot (like “Taalkie”) and give it a unique tone or purpose.
-
Seamless Integration: Easily embedded in any webpage, dashboard, or product interface using a lightweight JavaScript snippet.
How to Embed Taalk Bot
-
Go to your AI Force Console → Chatbot Sandbox.
-
Select an AI Agent and assign a Display Name.
-
Copy the Embed Code provided (it looks like the example below).
-
Paste the code snippet before the closing </body> tag of your website.
<!-- Start of Taalk Bot Embed Code -->
<script>
(function () {
window.TaalkChatBotSettings = {
APIKey: "your_api_key_here",
db: "dev",
agentId: "your_agent_id",
agentName: "Taalkie",
onload: () => {}
};
const script = document.createElement("script");
script.defer = true;
script.id = "Taalk_chatbot_script";
script.src = "https://yourdomain/sdk/chat_client.umd.js";
document.head.appendChild(script);
})();
</script>
<!-- End of Taalk Bot Embed Code -->
Once added, the bot automatically appears on your site and connects to your Taalk Agent in real time.
Tips for Best Use
-
Update your Agent Logic regularly via the Taalk Console to keep responses fresh.
-
Use Display Names that match your brand personality.
-
Test interactions in Sandbox Mode before going live.
-
You can customize button color, welcome messages, and widget placement.
Need Help?
If you encounter setup issues or want advanced customization, contact success@taalk.ai for support or visit the Taalk Marketplace to explore pre-built AI Agents and templates.