Skip to main content

Crate agentic_data

Crate agentic_data 

Source
Expand description

AgenticData — universal data comprehension engine.

Understands structure, infers meaning, tracks lineage, detects anomalies, and transforms between any format. One engine for ALL data.

Re-exports§

pub use types::AdatError;
pub use types::AdatResult;
pub use types::UniversalSchema;
pub use types::SchemaNode;
pub use types::SchemaField;
pub use types::SchemaEdge;
pub use types::FieldType;
pub use types::DataRecord;
pub use types::RecordId;
pub use types::RecordStatus;
pub use types::DataSource;
pub use types::SourceId;
pub use types::SourceType;
pub use types::LineageChain;
pub use types::LineageEntry;
pub use types::LineageAction;
pub use types::TransformReceipt;
pub use types::QualityScore;
pub use types::AnomalyRecord;
pub use types::AnomalyType;
pub use types::HealthMetric;
pub use types::GeoPoint;
pub use types::GeoBounds;
pub use types::SpatialRef;
pub use types::FileHeader;
pub use types::HEADER_SIZE;
pub use types::ADAT_MAGIC;
pub use types::FORMAT_VERSION;
pub use types::MAX_CONTENT_SIZE;
pub use format::AdatWriter;
pub use format::AdatReader;
pub use engine::DataStore;
pub use engine::IngestEngine;
pub use engine::QueryEngine;
pub use engine::QueryResult;
pub use engine::TransformEngine;
pub use engine::QualityEngine;
pub use engine::GraphEngine;
pub use engine::TraversalDirection;
pub use engine::SessionManager;
pub use engine::DataSession;
pub use engine::ConsolidationEngine;
pub use engine::ConsolidationReport;
pub use index::SchemaIndex;
pub use index::TemporalIndex;
pub use index::QualityIndex;
pub use index::SpatialIndex;
pub use index::LineageIndex;
pub use crypto::FieldEncryptor;
pub use crypto::KeyManager;
pub use crypto::RedactionEngine;
pub use crypto::PiiDetection;
pub use crypto::RedactionPolicy;

Modules§

crypto
Crypto module — field-level encryption, key management, PII redaction.
engine
Core engine — ingest, query, transform, quality, graph, session, consolidation.
format
.adat file format — binary read/write for AgenticData files.
index
Index modules — fast lookups for schema, temporal, quality, spatial, lineage.
parser
Parser registry — extensible format detection and parsing.
types
All data types for the AgenticData library.