1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
//! Code analysis module //! //! This module contains code analysis and search functionality including: //! - Code graph visualization //! - Error analysis //! - BM25 search //! - Vector storage //! - Technical debt tracking pub mod analyzer; pub mod bm25; pub mod code_graph; pub mod tech_debt; pub mod tier_allocator; pub mod vector_store; pub mod workspace_graph;