forgellm-frontend 0.1.0

Model parsing (GGUF, SafeTensors) and IR construction for ForgeLLM
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! ForgeLLM Frontend — Model parsing and IR construction.
//!
//! This crate handles parsing model formats (GGUF, SafeTensors) and
//! constructing the intermediate representation (IR) used by the
//! optimizer and code generation backends.

pub mod config;
pub mod gguf;
pub mod graph_builder;
pub mod ir;
pub mod safetensors;

/// Re-export core IR types at the crate root.
pub use ir::*;