oxibonsai-core 0.1.4

GGUF Q1_0_g128 loader, tensor types, and configuration for OxiBonsai
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! GGUF v3 binary format parser.
//!
//! Sub-modules handle different parts of the GGUF file:
//! - [`header`] — Magic number, version, tensor/KV counts
//! - [`metadata`] — Typed key-value store
//! - [`tensor_info`] — Tensor names, shapes, types, and offsets
//! - [`types`] — GGUF data type enumerations

pub mod compat;
pub mod header;
pub mod metadata;
pub mod model_card;
pub mod reader;
pub mod streaming;
pub mod tensor_info;
pub mod types;
pub mod writer;