llmfit-core 0.9.6

Core library for llmfit — hardware detection, model fitting, and provider integration
Documentation
pub mod fit;
pub mod hardware;
pub mod models;
pub mod plan;
pub mod providers;
pub mod update;

pub use fit::{FitLevel, InferenceRuntime, ModelFit, RunMode, ScoreComponents, SortColumn};
pub use hardware::{GpuBackend, SystemSpecs};
pub use models::{Capability, LlmModel, ModelDatabase, ModelFormat, UseCase};
pub use plan::{
    HardwareEstimate, PathEstimate, PlanCurrentStatus, PlanEstimate, PlanRequest, PlanRunPath,
    UpgradeDelta, estimate_model_plan, normalize_quant, resolve_model_selector,
};
pub use providers::{
    LlamaCppProvider, LmStudioProvider, MlxProvider, ModelProvider, OllamaProvider,
};
pub use update::{
    UpdateOptions, cache_file, clear_cache, load_cache, save_cache, update_model_cache,
};