This is the repository that backs Mezmo's documentation site, docs.mezmo.com
If you have a suggested change to our documentation, please create an issue or draft a PR.
Hidden Pages
To keep a page out of search embeddings, add hidden: true to its frontmatter:
---
title: "My Page"
hidden: true
---On every merge to main, a Jenkins pipeline (see Jenkinsfile) embeds the
docs into a Qdrant knowledge base and pushes a snapshot to S3:
- Starts Qdrant and qdrant-manager
containers (
docker-compose.yml). - Restores the latest
kb-*snapshot from S3 into a fresh timestamped collection. - Runs
sync status/sync diff/sync applyto incrementally embed added, modified, and deleted pages (all.mdx/.mdfiles in the repo; pages withhidden: trueand files without frontmatter are skipped). - Runs a RAG evaluation against the updated collection.
- On
mainonly, snapshots the collection back to S3.
PR branches run the same pipeline against a throwaway local collection but never publish a snapshot.