dashboard-react
    Preparing search index...

    Interface HuggingFaceModel

    Lightweight search result returned by the Hugging Face search API.

    interface HuggingFaceModel {
        id: string;
        author: string;
        downloads: number;
        likes: number;
        last_modified: string;
        tags: string[];
        matched_file?: string | null;
        pipeline_tag?: string | null;
        library_name?: string | null;
        gated?: boolean;
        license?: string | null;
        param_count?: number | null;
        total_file_size?: number | null;
        context_length?: number | null;
        base_model_repo?: string | null;
        base_model_relation?: string | null;
        arxiv_ids?: string[];
        languages?: string[];
        architecture?: string | null;
    }
    Index

    Properties

    id: string
    author: string
    downloads: number
    likes: number
    last_modified: string
    tags: string[]
    matched_file?: string | null

    Exact repo-relative GGUF path matched by a filename search.

    pipeline_tag?: string | null

    Hugging Face task tag (text-generation, image-text-to-text, ...).

    library_name?: string | null

    Framework the repository targets (transformers, diffusers, mlx, gguf).

    gated?: boolean

    True when the license must be accepted and a token presented to download.

    license?: string | null

    License identifier from the model card.

    param_count?: number | null

    Total parameter count from safetensors/GGUF metadata.

    total_file_size?: number | null

    Exact total artifact bytes from GGUF metadata.

    context_length?: number | null

    Context window from GGUF metadata.

    base_model_repo?: string | null

    Parent repository this model derives from, when tagged.

    base_model_relation?: string | null

    Derivation kind: finetune, quantized, merge, or adapter.

    arxiv_ids?: string[]

    arXiv paper identifiers tagged on the repository.

    languages?: string[]

    ISO 639-1 language tags declared on the repository.

    architecture?: string | null

    Model architecture from repository config or GGUF metadata.