cognee-cognify 0.1.3

Knowledge-graph extraction (cognify) — turn ingested data into a graph for cognee.
1
2
3
4
5
6
7
8
9
10
11
12
//! Text summarization module.
//!
//! Port of Python's cognee/tasks/summarization/ and
//! cognee/infrastructure/llm/extraction/extract_summary.py
//!
//! Provides LLM-based hierarchical text summarization for document chunks.

pub mod extractor;
pub mod models;

pub use extractor::SummaryExtractor;
pub use models::{SummarizedContent, TextSummary};