cognee-database 0.1.0

Relational metadata store (SQLite/Postgres via SeaORM) for the cognee AI-memory pipeline.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! `sync_operations` repository surface.
//!
//! Mirrors Python's [`cognee/modules/sync/methods/`](https://github.com/topoteretes/cognee/tree/main/cognee/modules/sync/methods)
//! 1:1: create / mark started / mark completed / mark failed / update progress
//! / list running / lookup by run_id.

pub mod repository;
pub mod sea_orm_impl;

pub use repository::{SyncOperationRepository, SyncOperationRow, SyncOperationStatus};
pub use sea_orm_impl::SeaOrmSyncOperationRepository;