ailake-core 0.0.7

Core types and traits for the AI-Lake vector-native Lakehouse format
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! ailake-core — shared type system
//!
//! No I/O, no async, no external deps beyond serde/uuid/thiserror/half.
//! Every other crate depends on this one. This crate depends on nothing internal.

pub mod error;
pub mod schema;
pub mod types;

pub use error::{AilakeError, AilakeResult};
pub use schema::{llm_columns, LlmContextSchema, PQConfig, VectorStoragePolicy};
pub use types::{ByteLen, ByteOffset, Centroid, Dim, RowId, VectorMetric, VectorPrecision};