Skip to main content

spool/knowledge/
mod.rs

1pub mod cluster;
2pub mod compile;
3
4// Re-export compile's public API at the knowledge:: level
5pub use compile::{
6    CrystallizeResult, KnowledgePageDraft, apply_distill, auto_compile_from_config,
7    detect_knowledge_clusters, synthesize_with_sampling,
8};