Customizing Your AI Assistant

Learn how to tailor your AI assistant to best serve your needs.

Basic Customization

  1. Navigate to your assistant's settings page
  2. Adjust the assistant's name, description, and basic parameters
  3. Save your changes

Knowledge Base

  1. In the assistant dashboard, locate the knowledge base section
  2. Upload relevant documents or data to expand your assistant's knowledge
  3. Organize and manage the uploaded information as needed

Behavior Configuration

  1. Describe the assistant's behavior and how it should respond to different situations
  2. Adjust how the assistant interacts and responds to user queries
  3. 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:

  1. In your agent's settings, find the "Show Embed Code" button
  2. Click the button to reveal the embed code
  3. Copy the provided JavaScript snippet
  4. 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>