AI Models
    MIST Mini 8B

    OlaverseMIST Mini 8B

    MIST family · open weights on Hugging Face.

    General-purpose 8B merged LLM built on the Llama 3.1 lineage with advanced model merging.

    Transformers
    Safetensors
    Llama
    Text Generation
    Merge
    Dare Ties
    Llama 3.1
    Mist
    Conversational
    English
    Base: NousResearch/DeepHermes-3-Llama-3-8B-Preview
    Base: merge:NousResearch/DeepHermes-3-Llama-3-8B-Preview
    Base: NousResearch/Hermes-3-Llama-3.1-8B
    Base: merge:NousResearch/Hermes-3-Llama-3.1-8B
    Base: deepseek-ai/DeepSeek-R1-Distill-Llama-8B
    Base: merge:deepseek-ai/DeepSeek-R1-Distill-Llama-8B
    Base: nvidia/Llama-3.1-Nemotron-Nano-8B-v1
    Base: merge:nvidia/Llama-3.1-Nemotron-Nano-8B-v1
    Licence: llama3.1
    Text Generation Inference
    Endpoints Compatible
    4
    Likes
    666
    Downloads
    May 2026
    Created

    Model Card

    Built for production use.

    Open-weights repository on Hugging Face

    Integrated ecosystem protocol tier.

    Compatible with Transformers library

    Integrated ecosystem protocol tier.

    Optimised for low-latency inference

    Integrated ecosystem protocol tier.

    Community engagement: 4 likes

    Integrated ecosystem protocol tier.

    Quick Start

    Use MIST Mini 8B, straight from its model card.

    example.py
    from the model card
    from transformers import AutoModelForCausalLM, AutoTokenizer
    model = AutoModelForCausalLM.from_pretrained(
    "olaverse/MIST-Mini-8B",
    torch_dtype="auto",
    device_map="auto",
    )
    tokenizer = AutoTokenizer.from_pretrained("olaverse/MIST-Mini-8B")
    messages = [{"role": "user", "content": "Your question here"}]
    text = tokenizer.apply_chat_template(
    messages, tokenize=False, add_generation_prompt=True
    )
    inputs = tokenizer(text, return_tensors="pt").to("cuda")
    outputs = model.generate(**inputs, max_new_tokens=512)
    print(tokenizer.decode(outputs[0], skip_special_tokens=True))
    Model Card

    Official Repository README

    Dynamically loaded from Hugging Face

    Model card metadata is available on Hugging Face.

    Built with

    Transformers PyTorch Python
    Built by Olaverse Labs

    Ready to try MIST Mini 8B?

    General-purpose 8B merged LLM built on the Llama 3.1 lineage with advanced model merging.

    Model Ecosystem

    Explore More Models