llm_models 0.0.3

llm_models: Load and download LLM models, metadata, and tokenizers
Documentation
pub mod generated;
pub mod gguf_file;
pub mod gguf_layers;
pub mod gguf_model;
pub mod gguf_preset;
pub mod gguf_tensors;
pub mod loaders;

use std::{
    borrow::Cow,
    path::{Path, PathBuf},
};

use serde::{Deserialize, Serialize};

use crate::llm::{
    base::LlmModelBase,
    local::{
        chat_template::LlmChatTemplate,
        gguf::{generated::preset_models::GgufPresetId, loaders::preset::GgufPresetLoader},
        metadata::{
            general::FileType,
            memory::{estimate_context_size_bytes, estimate_max_quantization_level},
            LocalLlmMetadata,
        },
        organizations::LocalLlmOrganization,
    },
};