How do I set up an AI knowledge base for customer service?

With SendSeven, set up an AI knowledge base in 5 minutes: crawl your website, upload documents, write FAQ pairs, or learn from resolved tickets. The AI answers using RAG (Retrieval-Augmented Generation) only from your content, with source citations and zero hallucinations, across four hybrid modes from fully automated to human-first. From EUR 79/month (Professional).

AI Knowledge Base

Your knowledge works
around the clock.

60 to 80% of customer inquiries are repetitive. Your knowledge base answers them instantly, on every channel, without hallucinations.

Live in 5 minutes No credit card required 14-day free trial
of inquiries are repetitive
60–80%
Customer service industry survey
resolved automatically
up to 60%
AI support industry average
to the first AI answer
5 min
SendSeven Setup Guide
more spending after great service
+140%
Customer retention industry study
01
Challenge

The knowledge problem every growing business faces

Monday morning. A customer asks about the return policy. The colleague who knows the answer is on vacation. The new hire spends 10 minutes searching through old emails before giving an uncertain reply. The customer waits. And doubts.

For small and mid-sized businesses with 5 to 50 employees, this is everyday reality. Knowledge lives in the heads of individual people, in scattered documents, and in email inboxes only one person can access. When that person gets sick, quits, or goes on leave, a gap opens that no one can quickly fill.

Meanwhile, customers keep asking the same questions: business hours, shipping costs, return windows, product differences. 60 to 80% of all inquiries are repetitive. Your team answers the same questions dozens of times per week while complex cases pile up.

And after hours? Nobody responds. 57% of customers expect the same response time in the evenings and on weekends. Those who don't get an answer buy elsewhere.

60–80%
of support inquiries are repetitive
Customer service industry survey
93%
of customers return after a great service experience
Customer retention industry study
4
knowledge sources: website, documents, FAQs, resolved tickets
SendSeven Knowledge Base
1
Add your knowledge
Crawl your website, upload documents, write FAQs
2
AI answers instantly
From your content, with source citations
3
Team handles exceptions
Complex cases are escalated automatically
02
Solution

A knowledge base that never forgets

SendSeven's AI Knowledge Base learns from your own content and answers customer inquiries instantly. No made-up facts, no hallucinations: the AI responds exclusively from your sources, with citations.

Here's how it works: you feed the Knowledge Base with four types of content. Your website is crawled automatically, documents (PDF, DOCX, TXT) are uploaded, FAQ pairs are entered directly, and resolved tickets flow in as experiential knowledge. The AI breaks this content into searchable chunks and answers via RAG (Retrieval-Augmented Generation) using only this material.

In practice, this means: a customer asks at 9 PM via Live Chat about the return policy. The AI searches your knowledge base, finds the answer in your terms and conditions, and responds in seconds with a source citation. If it's uncertain, it automatically escalates to your team in the Unified Inbox.

The same works on WhatsApp and Telegram. The same knowledge base, available everywhere. And you control the level of automation: from fully automatic to human-first with AI assistance.

03
Result

Measurable results

Businesses with an AI knowledge base see improvements in three areas.

up to 60%
of inquiries resolved automatically
< 3 sec
Response time instead of minutes
AI finds and formulates the answer in seconds.
Zero
Hallucinations
RAG approach: answers only from your own verified content.
24/7
Availability
AI responds at night, on weekends, and on holidays.

4 knowledge sources, one AI

Your website is crawled automatically and stays current through re-crawling. Upload manuals, price lists, or guides as PDF, DOCX, or TXT. Write FAQ pairs directly in the platform. And let the AI learn from resolved support tickets.

  • Website crawling: import all pages automatically, refresh anytime
  • Document upload: PDF, DOCX, TXT (manuals, price lists, guides)
  • FAQ pairs: create question-answer pairs directly in the platform
  • Learn from tickets: resolved conversations automatically become AI knowledge

No made-up facts. Guaranteed.

SendSeven uses RAG (Retrieval-Augmented Generation) instead of free-form generation. The AI first searches your knowledge base, finds relevant passages, and formulates the answer only from this material. Every answer includes a source citation. If the AI can't find a suitable answer, it automatically escalates to your team.

  • RAG approach: AI answers only from your verified content
  • Source citations: customers and your team see where the answer came from
  • Confidence scoring: see in the dashboard how confident each answer was
  • Automatic escalation on uncertainty, keyword detection, or customer request

Different topics, different bots

Create sub-folders in your knowledge base and assign each bot or automation its own folder. The sales bot accesses product knowledge, the support bot uses technical documentation, the HR bot draws from internal policies.

  • Sub-folders for different topics, teams, or products
  • Each bot or automation uses only its assigned folder
  • Dedicated RAG corpus per folder for precise, topic-specific answers
  • Slash command /kb searches individual folders on demand

One knowledge base, every channel

The knowledge base isn't limited to a single channel. The same AI bot answers questions on your live chat widget, via WhatsApp, and through Telegram. The same answers, the same quality, no matter where the inquiry comes from.

  • Live Chat: AI responds directly on your website
  • WhatsApp: customers ask questions on the most popular messenger
  • Telegram: bot-powered support via the open messenger
  • All conversations land in the same inbox, with complete history

ROI in numbers

up to 60%
of inquiries resolved automatically
AI support industry average
18%
lower support costs
Gartner Benchmark
+140%
more spending after great service
Customer retention industry study
93%
return after a great service experience
Customer satisfaction industry study

What this could look like

An online store selling outdoor gear with 15 employees sets up the SendSeven Knowledge Base. The website is crawled, the return policy PDF and shipping FAQ are uploaded. Two support agents handle 60 inquiries a day, 40 of which are repetitive. After setup, the AI takes over 24 of those inquiries instantly.

Repetitive inquiries
40 per day16 per day
Response time (standard)
25 minutes< 3 seconds
After-hours support
No responseAI handles 24/7

Typical scenario based on industry data

Ready to go in 5 minutes

From your first content to the first AI answer.

01 · 3 min

Add your content

Crawl your website, upload documents, or enter FAQ pairs directly. The AI processes everything automatically.

02 · 1 min

Configure the bot

Choose hybrid mode: fully automatic, AI-first, human-first, or time-based. Set escalation rules.

03 · 1 min

Go live

Connect the knowledge base to Live Chat, WhatsApp, or Telegram. The first customer inquiry gets answered.

For Developers & Power Users

Step-by-step guides for setup via the platform or API.

Platform Guide: Step by Step

Build your AI knowledge base:

1

Access Knowledge Base

Go to Settings > Knowledge Base > Documents.

2

Add Content

Upload documents, paste text, or enter URLs to crawl.

3

Review Chunks

See how content is split and embedded for AI retrieval.

4

Train from Tickets

Enable learning from resolved tickets to improve suggestions.

5

Monitor Performance

Track suggestion acceptance rates and agent efficiency.

You're all set!
API Reference: Developer Access

Manage your knowledge base programmatically.

MethodPathDescription
POST/api/v1/knowledge-base/documentsUpload a document
POST/api/v1/knowledge-base/crawlStart a website crawl
POST/api/v1/knowledge-base/queryQuery the knowledge base
Language:
Query Knowledge Base
const response = await fetch('/api/v1/knowledge-base/query', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer YOUR_API_TOKEN',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    query: 'What is your refund policy?'
  })
});

const { answer, sources, confidence } = await response.json();
console.log(`Answer: ${answer} (confidence: ${confidence})`);

Frequently Asked Questions

What types of content can I add to the knowledge base?

Four types: your website is crawled automatically, you can upload documents (PDF, DOCX, TXT), write FAQ pairs directly, and let the AI learn from resolved support tickets. All content is automatically processed for the AI.

How does the AI prevent wrong answers?

SendSeven uses RAG (Retrieval-Augmented Generation). The AI first searches your knowledge base for relevant passages and formulates the answer only from this material. Every answer includes a source citation. If the AI can't find a suitable answer, it escalates to your team.

Does the knowledge base work on WhatsApp and Telegram?

Yes. The same knowledge base powers the AI bot on Live Chat, WhatsApp, and Telegram. Your customers receive the same well-founded answers everywhere.

How fast is the setup?

5 minutes. Enter your website URL, the AI crawls all pages automatically. Optionally upload additional documents or write FAQ pairs. The setup guide walks you through every step.

Can I create different knowledge bases for different topics?

Yes. With sub-knowledge bases, you create sub-folders for different topics, products, or teams. Each bot only accesses its assigned folder. So the sales bot answers product questions and the support bot handles technical inquiries.

How much does the AI Knowledge Base cost?

The knowledge base is available from Professional (€79/month), with unlimited users and no per-user fees. AI usage is billed per use (about €0.01 per AI response). 14-day free trial, no credit card required. View pricing.

Your knowledge, available anytime

Crawl your website, upload documents, enter FAQs. In 5 minutes, the AI answers with your content on every channel.

Setup in under 5 minutes
No credit card required
100 test messages included