graphrag-core 0.2.0

Core portable library for GraphRAG - works on native and WASM
Documentation
1
2
3
4
5
6
7
8
9
//! Document layout parsers

pub mod html;
pub mod markdown;
pub mod plaintext;

pub use html::HtmlLayoutParser;
pub use markdown::MarkdownLayoutParser;
pub use plaintext::PlainTextLayoutParser;