Documentation
Learn how to build, customize, and deploy your AI chatbot
Getting Started with any bot™
1. Creating Your First Chatbot
To create your first chatbot, sign in to your account and navigate to the Dashboard. Click on the "Create New Chatbot" button and follow the setup wizard.
// Example configuration
{
"name": "My First Chatbot",
"description": "A helpful assistant for my website",
"model": "gpt-4o"
}2. Basic Configuration
Configure your chatbot's basic settings including name, description, and behavior. Set up the greeting message that will be shown to users when they first interact with your chatbot.
- Set a clear name and description that reflects your chatbot's purpose
- Configure a friendly greeting message to welcome users
- Adjust the AI model and temperature settings according to your needs
- Define the context window to determine how much conversation history the bot remembers
3. Deploy to Your Website
Once your chatbot is configured, you can easily deploy it to your website by adding a simple code snippet to your HTML.
<!-- Add this code to your website --> <script src="https://api.anybot.ai/widget.js" data-chatbot-id="your-chatbot-id"> </script>