cognee-models 0.1.1

Core domain data models (DataPoint, User, graph/vector entities) for the cognee AI-memory pipeline.
Documentation
1
2
3
4
5
6
7
8
9
/// Canonical permission names matching Python's `PERMISSION_TYPES`.
pub mod permissions {
    pub const READ: &str = "read";
    pub const WRITE: &str = "write";
    pub const DELETE: &str = "delete";
    pub const SHARE: &str = "share";

    pub const ALL: &[&str] = &[READ, WRITE, DELETE, SHARE];
}