cognee-lib 0.1.0

Cognee — an AI-memory pipeline that turns raw data into queryable knowledge graphs (umbrella crate).
Documentation
//! High-level API functions for Cognee-Rust.
//!
//! These are the top-level convenience functions that compose the lower-level
//! pipeline primitives (add, cognify, search, delete, memify) into
//! user-friendly operations matching the Python SDK.
//!
//! - [`forget`] -- Unified deletion API
//! - [`update`] -- Data replacement (delete + re-add + re-cognify)
//! - [`prune`] -- Selective backend cleanup
//! - [`recall`] -- Smart search with session routing
//! - [`remember`] -- One-call add + cognify + optional improve
//! - [`improve`] -- Bidirectional session-graph bridge

pub mod datasets;
pub mod error;
pub mod forget;
pub mod improve;
pub mod notebooks;
pub mod pipeline_runs;
pub mod prune;
pub mod recall;
pub mod remember;
pub mod update;
pub mod user;

pub use datasets::{DatasetDb, DatasetManager};
pub use error::{ApiError, DatasetError};
pub use forget::{DatasetRef, ForgetResult, ForgetTarget, forget};
pub use improve::{ImproveParams, ImproveResult, improve};
pub use pipeline_runs::{reset_dataset_pipeline_run_status, reset_pipeline_run_status};
pub use prune::{PruneResult, PruneTarget, prune_data, prune_system};
pub use recall::{
    RecallItem, RecallOptions, RecallResult, RecallScope, RecallSource, ScopeInput,
    normalize_scope, recall,
};
pub use remember::{RememberItemInfo, RememberResult, RememberStatus, remember, remember_entry};
pub use update::{UpdateResult, update};
pub use user::get_or_create_default_user;