Documentation

Everything you need to build and deploy AI-powered chatbots with VictorAI

Getting Started

1. Create an Account

Sign up for a free VictorAI account to get started. You'll get 100 free messages per month.

Create your account →

2. Create Your First Bot

Navigate to the Bots page and click "Create Bot". Give your bot a name and configure its settings.

  • Choose a name that represents your bot's purpose
  • Set a welcome message for visitors
  • Select an AI provider (Ollama, OpenAI, Gemini, or Mistral)
  • Customize the appearance with colors and avatar

3. Train Your Bot

Add knowledge entries to teach your bot about your business. You can add Q&A pairs manually or import from CSV.

# CSV Format Example
question,answer
"What are your hours?","We're open Monday-Friday, 9am-5pm EST"
"How do I contact support?","Email us at support@example.com"

4. Embed on Your Website

Copy the embed code from your bot's settings and paste it into your website's HTML.

<script>
  window.VictorAIConfig = {
    botId: "your-bot-uuid",
    apiUrl: "https://your-victorai-instance.com"
  };
</script>
<script src="https://your-victorai-instance.com/widget/victorai-widget.js"></script>