{{ title }}

← Back to AskDocs Home

Knowledge Base Status

Source Directory

{{ source_dir }}

Documents

{{ document_count }}

{% if kb_exists %}

Chunks

{{ chunk_count }}

Embedding Model

{{ embedding_model or "None (using lexical search)" }}

{% endif %}
{% if kb_exists %}

✓ Knowledge base is built and ready

{% else %}

✗ Knowledge base not yet built

To build the knowledge base, run: docbuddy build-kb

{% endif %}

Managing the Knowledge Base

You can manage the knowledge base through the CLI:

# Build knowledge base
docbuddy build-kb

# Customize chunking parameters
docbuddy build-kb --chunk-size 500 --chunk-overlap 100

# Use a different embedding model
docbuddy build-kb --embedding-model all-mpnet-base-v2

# Force rebuild even if no changes detected
docbuddy build-kb --force