Chatzora Docs
Getting Started

Quick Start Guide

Build, train, and embed your custom AI chatbot in under 2 minutes.

Quick Start Guide

Welcome to Chatzora! This guide will take you step-by-step through setting up your first chatbot, training it on your own data, and embedding it on your live website.

Step 1: Create an Account

  1. Head over to chatzora.com/signup or click "Get Started Free" on the homepage.
  2. Sign up with your email or use Google OAuth for a 1-click registration.
  3. You will be automatically redirected to your unified customer dashboard workspace.

Step 2: Create Your First Bot

  1. In your dashboard sidebar, navigate to Bots and click Create Bot.
  2. Give your bot a friendly name (e.g., "Customer Helper") and assign it an initial avatar color theme.
  3. Select the LLM provider configuration (defaults to optimized Gemini / Groq key pools) and write an optional base directive (e.g., "You are a helpful customer support agent for our software product...").
  4. Click Save Bot.

Step 3: Add Knowledge

Your bot cannot answer questions until you train it.

  1. Select your new bot and click on the Knowledge Base tab.
  2. Choose your input method:
    • Upload File: Acceptable formats are .pdf, .txt, and .docx.
    • Crawl Website: Input your domain name. Chatzora's recursive crawler will scan links up to 3 levels deep, extract readable content, and ignore menus or footers.
    • Paste Text: Paste raw unstructured copy directly.
  3. Click Add to Knowledge. Chatzora's ingestion pipeline will automatically chunk the text, generate 1536-dimension embeddings, and store them securely in the database.

Step 4: Test in Sandbox

Before going live, click the Sandbox / Preview tab in the sidebar:

  • Send a message to test how the bot utilizes your knowledge sources.
  • Notice the Source Citations listed at the bottom of the responses. These link directly to the specific paragraphs and documents used as context.

Step 5: Embed on Your Website

  1. Navigate to Widget Settings -> Embed Code.
  2. Copy the one-line HTML snippet:
    <script
      src="https://chatzora.com/widget.js"
      data-bot-id="YOUR_BOT_ID"
      data-api-base="https://chatzora.com"
      data-title="Chatzora Support"
      async
    ></script>
  3. Paste the code into your website's HTML file right before the closing </body> tag (works on React, Webflow, WordPress, Shopify, Wix, and plain HTML).
  4. Reload your page. Your chatbot is now live and serving customer queries!