Quickstart Guide

Get your first AI-powered answer in under 5 minutes.

01

Create a knowledge base

Sign up for a free Kelu account and create a knowledge base. Give it a name that matches your product or knowledge domain.

02

Add your docs URL and crawl

Enter the root URL of your documentation site. Kelu discovers pages via sitemap and links, extracts clean content, and builds your knowledge index.

03

Embed the widget

Copy the widget snippet from your dashboard and add it to your docs site. The widget is hosted at widget.kelu.dev and is ready to answer questions immediately after the crawl completes. Alternatively, use the @kelu/react package for a native React integration.

<!-- Option A: hosted widget (any HTML page) --> <script src="https://widget.kelu.dev/kelu-widget.js" data-knowledge-base-id="YOUR_KNOWLEDGE_BASE_ID" data-client-key="kl_pk_..." async ></script> // Option B: React component import { KeluChat } from "@kelu/react"; export default function Layout({ children }) { return ( <> {children} <KeluChat knowledgeBaseId="YOUR_KNOWLEDGE_BASE_ID" clientKey="kl_pk_..." /> </> ); }
04

Call the API (optional)

Use the Chat API to build custom integrations. Pass a question and session ID. Get a grounded answer with citation links.

curl -X POST https://api.kelu.dev/v1/chat \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "knowledge_base_id": "kb_abc123", "question": "How do I authenticate the SDK?", "session_id": "sess_xyz" }'

What you can connect

Knowledge Sources

Crawl any publicly accessible docs site. Supports Docusaurus, Mintlify, GitBook, VitePress, and more. Incremental sync keeps the index current.

Learn more →

GitHub

Index README, docs/, and markdown files directly from your repository — plus issues, pull requests, and discussions. Auto-syncs on every push to main.

Learn more →

Notion / Confluence / Drive

Connect your internal knowledge base. Index pages, wikis, document libraries, and team spaces for an internal AI assistant.

Learn more →

Helpdesk Tickets

Index resolved tickets from Zendesk, Freshdesk, Front, Jira Service Management, Linear, or Salesforce so past answers become searchable knowledge.

Learn more →

Slack & Discord Bots

Deploy AI assistants in your community chat channels. Same RAG pipeline, same citation links, wherever your users ask questions.

Learn more →

MCP Server

Connect any MCP-aware IDE or AI app to your knowledge base.

Learn more →

Ready to get started?

Create your free account and ship your first AI-powered answers today.

Start Free