agentroot-core 0.1.0

Core library for agentroot - semantic search engine with AST-aware chunking and hybrid search
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Indexing pipeline
//!
//! File scanning, parsing, and chunking for document indexing.

pub mod ast_chunker;
mod chunker;
mod embedder;
mod parser;
mod scanner;

pub use ast_chunker::{chunk_semantic, ChunkType, SemanticChunk, SemanticChunker};
pub use chunker::*;
pub use embedder::*;
pub use parser::*;
pub use scanner::*;