cognee-database 0.1.1

Relational metadata store (SQLite/Postgres via SeaORM) for the cognee AI-memory pipeline.
Documentation
use sea_orm::entity::prelude::*;
use serde::{Deserialize, Serialize};

#[derive(Debug, Clone, PartialEq, Eq, EnumIter, DeriveActiveEnum, Serialize, Deserialize)]
#[sea_orm(rs_type = "String", db_type = "Text")]
pub enum PipelineRunStatus {
    #[sea_orm(string_value = "DATASET_PROCESSING_INITIATED")]
    Initiated,
    #[sea_orm(string_value = "DATASET_PROCESSING_STARTED")]
    Started,
    #[sea_orm(string_value = "DATASET_PROCESSING_COMPLETED")]
    Completed,
    #[sea_orm(string_value = "DATASET_PROCESSING_ERRORED")]
    Errored,
}

#[derive(Clone, Debug, PartialEq, Eq, DeriveEntityModel, Serialize, Deserialize)]
#[sea_orm(table_name = "pipeline_runs")]
pub struct Model {
    #[sea_orm(primary_key, auto_increment = false)]
    pub id: String,
    pub created_at: DateTimeUtc,
    pub status: PipelineRunStatus,
    #[sea_orm(indexed)]
    pub pipeline_run_id: String,
    pub pipeline_name: String,
    #[sea_orm(indexed)]
    pub pipeline_id: String,
    #[sea_orm(indexed, nullable)]
    pub dataset_id: Option<String>,
    #[sea_orm(column_type = "Json", nullable)]
    pub run_info: Option<Json>,
}

#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
pub enum Relation {
    #[sea_orm(
        belongs_to = "super::dataset::Entity",
        from = "Column::DatasetId",
        to = "super::dataset::Column::Id"
    )]
    Dataset,
}

impl ActiveModelBehavior for ActiveModel {}