Wiki Synthesis
Wiki articles are AI-synthesized summaries of all atoms under a given tag, with inline citations linking back to source atoms.
How It Works
Section titled “How It Works”- Atomic gathers atoms tagged with the target tag.
- Relevant chunks are selected from the available source material.
- The content is sent to the configured wiki model.
- The model produces markdown with inline citation markers.
- Atomic stores the article, citations, and version history.
Incremental Updates
Section titled “Incremental Updates”Wiki articles support incremental updates. When new atoms are tagged:
- Only the new content is sent to the LLM.
- The LLM integrates the new information into the existing article.
- New citations are added for the new sources.
This lets articles evolve as your knowledge base grows without fully regenerating from scratch every time.
Proposal Flow
Section titled “Proposal Flow”Atomic can also generate a proposed wiki update before applying it. The proposal flow lets you inspect an AI-authored update, then accept or dismiss it. This is useful when a tag has important writing you do not want to overwrite automatically.
Relevant API endpoints:
POST /api/wiki/{tag_id}/proposeGET /api/wiki/{tag_id}/proposalPOST /api/wiki/{tag_id}/proposal/acceptPOST /api/wiki/{tag_id}/proposal/dismiss
Citations
Section titled “Citations”Every claim in a wiki article should be backed by an inline citation. Citations link directly to the source atom, so you can verify where information came from.
Versions and Links
Section titled “Versions and Links”Atomic keeps wiki versions so prior generated content can be inspected later. Wiki articles can also expose cross-reference links to related articles.
Useful endpoints:
GET /api/wiki/{tag_id}/versionsGET /api/wiki/versions/{version_id}GET /api/wiki/{tag_id}/linksGET /api/wiki/{tag_id}/relatedPOST /api/wiki/recompute-tag-embeddings
Troubleshooting
Section titled “Troubleshooting”- If a wiki article has too little source material, check that atoms under the tag have completed embeddings.
- If generation fails, verify the configured wiki model and provider key.
- If related tags look missing, recompute tag embeddings.