Answer engine summary
What is an AI knowledge base for ecommerce?
An AI knowledge base is a structured retrieval layer that lets an AI agent answer customer questions using your store's real content — product descriptions, shipping policies, return windows, sizing charts, and FAQs — instead of guessing from training data. Zubby's knowledge base chunks and embeds every source into a 1536-dimension vector space, retrieves the closest matches with pgvector + HNSW, reranks them with a cross-encoder, and generates an answer constrained to cite those sources. The result is grounded, auditable answers in any of 25 languages, with a feedback loop that flags coverage gaps before they become customer complaints.
Retrieval-Augmented Generation
Combine vector search with LLM generation so answers reflect your real content, not the model's training data.
Cross-encoder reranker
A second-stage ranker reorders retrieved chunks for answer-fit, not just embedding similarity.
Citation enforcement
Every response carries source pointers; low-confidence answers escalate to a human instead of hallucinating.
Auto-promote backlog
Questions with weak matches are surfaced as 'missing knowledge' so coverage improves continuously.