cognee-ingestion 0.1.3

Data ingestion (add) — classify, deduplicate, and persist raw data for the cognee pipeline.
1
2
3
4
5
6
7
8
9
10
11
mod config;
mod error;
mod fetcher;
pub mod html_rules;
mod parser;

pub use config::FetcherConfig;
pub use error::UrlFetcherError;
pub use fetcher::{FetchResult, UrlFetcher};
pub use html_rules::extract_html;
pub use parser::HtmlParser;