Customizing Your AI Assistant
Learn how to tailor your AI assistant to best serve your needs.
Basic Customization
- Navigate to your assistant's settings page
- Adjust the assistant's name, description, and basic parameters
- Save your changes
Knowledge Base
- In the assistant dashboard, locate the knowledge base section
- Upload relevant documents or data to expand your assistant's knowledge
- Organize and manage the uploaded information as needed
Behavior Configuration
- Describe the assistant's behavior and how it should respond to different situations
- Adjust how the assistant interacts and responds to user queries
- Test the changes to ensure they meet your requirements
Integration Options
You can now integrate your AI assistant into your website using our embeddable chat widget:
- In your agent's settings, find the "Show Embed Code" button
- Click the button to reveal the embed code
- Copy the provided JavaScript snippet
- Paste the snippet into your website's HTML, just before the closing </body> tag
The embed code will look similar to this:
<script src="https://app.agnt.one/embed.js"></script>
<script>
window.onload = function () {
window.chatWidgetConfig = {
url: "https://your-site-subdomain.agnt.one",
id: "your-agent-id",
};
};
</script>