anda_db 0.7.27

Anda DB is a Rust library designed as a specialized database for AI Agents, focusing on knowledge & memory.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! # Schema Module
//!
//! This module provides schema-related functionality for Anda DB.
//!
//! It re-exports all items from the `anda_db_schema` crate, including:
//! - Data types and structures for defining database schemas
//! - Field value types (Fv)
//! - Schema validation utilities
//! - Schema serialization and deserialization functionality
//!
//! This module is a central part of Anda DB's type system, providing
//! the foundation for structured data storage and retrieval.
//!
pub use anda_db_schema::*;