Hugging Face's logo Hugging Face
  • Models
  • Datasets
  • Spaces
  • Buckets new
  • Docs
  • Enterprise
  • Pricing
    • Website
      • Tasks
      • HuggingChat
      • Collections
      • Languages
      • Organizations
    • Community
      • Blog
      • Posts
      • Daily Papers
      • Hardware
      • Learn
      • Discord
      • Forum
      • GitHub
    • Solutions
      • Team & Enterprise
      • Hugging Face PRO
      • Enterprise Support
      • Inference Providers
      • Inference Endpoints
      • Storage Buckets

  • Log In
  • Sign Up

AtomicChat
/
Kimi-K3-GGUF

Image-Text-to-Text
GGUF
kimi-k3
Mixture of Experts
imatrix
quantized
Model card Files Files and versions
xet
Community
2

Instructions to use AtomicChat/Kimi-K3-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • llama-cpp-python

    How to use AtomicChat/Kimi-K3-GGUF with llama-cpp-python:

    # !pip install llama-cpp-python
    
    from llama_cpp import Llama
    
    llm = Llama.from_pretrained(
    	repo_id="AtomicChat/Kimi-K3-GGUF",
    	filename="Q3_K_S/Q3_K_S-00001-of-00028.gguf",
    )
    
    output = llm(
    	"Once upon a time,",
    	max_tokens=512,
    	echo=True
    )
    print(output)
  • Notebooks
  • Google Colab
  • Kaggle
  • Local Apps Settings
  • llama.cpp

    How to use AtomicChat/Kimi-K3-GGUF with llama.cpp:

    Install (macOS, Linux)
    curl -LsSf https://llama.app/install.sh | sh
    # Start a local OpenAI-compatible server with a web UI:
    llama serve -hf AtomicChat/Kimi-K3-GGUF:Q3_K_S
    # Run inference directly in the terminal:
    llama cli -hf AtomicChat/Kimi-K3-GGUF:Q3_K_S
    Install from WinGet (Windows)
    winget install llama.cpp
    # Start a local OpenAI-compatible server with a web UI:
    llama serve -hf AtomicChat/Kimi-K3-GGUF:Q3_K_S
    # Run inference directly in the terminal:
    llama cli -hf AtomicChat/Kimi-K3-GGUF:Q3_K_S
    Use pre-built binary
    # Download pre-built binary from:
    # https://github.com/ggerganov/llama.cpp/releases
    # Start a local OpenAI-compatible server with a web UI:
    ./llama-server -hf AtomicChat/Kimi-K3-GGUF:Q3_K_S
    # Run inference directly in the terminal:
    ./llama-cli -hf AtomicChat/Kimi-K3-GGUF:Q3_K_S
    Build from source code
    git clone https://github.com/ggerganov/llama.cpp.git
    cd llama.cpp
    cmake -B build
    cmake --build build -j --target llama-server llama-cli
    # Start a local OpenAI-compatible server with a web UI:
    ./build/bin/llama-server -hf AtomicChat/Kimi-K3-GGUF:Q3_K_S
    # Run inference directly in the terminal:
    ./build/bin/llama-cli -hf AtomicChat/Kimi-K3-GGUF:Q3_K_S
    Use Docker
    docker model run hf.co/AtomicChat/Kimi-K3-GGUF:Q3_K_S
  • LM Studio
  • Jan
  • vLLM

    How to use AtomicChat/Kimi-K3-GGUF with vLLM:

    Install from pip and serve model
    # Install vLLM from pip:
    pip install vllm
    # Start the vLLM server:
    vllm serve "AtomicChat/Kimi-K3-GGUF"
    # Call the server using curl (OpenAI-compatible API):
    curl -X POST "http://localhost:8000/v1/completions" \
    	-H "Content-Type: application/json" \
    	--data '{
    		"model": "AtomicChat/Kimi-K3-GGUF",
    		"prompt": "Once upon a time,",
    		"max_tokens": 512,
    		"temperature": 0.5
    	}'
    Use Docker
    docker model run hf.co/AtomicChat/Kimi-K3-GGUF:Q3_K_S
  • Ollama

    How to use AtomicChat/Kimi-K3-GGUF with Ollama:

    ollama run hf.co/AtomicChat/Kimi-K3-GGUF:Q3_K_S
  • Unsloth Studio

    How to use AtomicChat/Kimi-K3-GGUF with Unsloth Studio:

    Install Unsloth Studio (macOS, Linux, WSL)
    curl -fsSL https://unsloth.ai/install.sh | sh
    # Run unsloth studio
    unsloth studio -H 0.0.0.0 -p 8888
    # Then open http://localhost:8888 in your browser
    # Search for AtomicChat/Kimi-K3-GGUF to start chatting
    Install Unsloth Studio (Windows)
    irm https://unsloth.ai/install.ps1 | iex
    # Run unsloth studio
    unsloth studio -H 0.0.0.0 -p 8888
    # Then open http://localhost:8888 in your browser
    # Search for AtomicChat/Kimi-K3-GGUF to start chatting
    Using HuggingFace Spaces for Unsloth
    # No setup required
    # Open https://huggingface.co/spaces/unsloth/studio in your browser
    # Search for AtomicChat/Kimi-K3-GGUF to start chatting
  • Atomic Chat new
  • Docker Model Runner

    How to use AtomicChat/Kimi-K3-GGUF with Docker Model Runner:

    docker model run hf.co/AtomicChat/Kimi-K3-GGUF:Q3_K_S
  • Lemonade

    How to use AtomicChat/Kimi-K3-GGUF with Lemonade:

    Pull the model
    # Download Lemonade from https://lemonade-server.ai/
    lemonade pull AtomicChat/Kimi-K3-GGUF:Q3_K_S
    Run and chat with the model
    lemonade run user.Kimi-K3-GGUF-Q3_K_S
    List all available models
    lemonade list
Kimi-K3-GGUF
4.16 TB
Ctrl+K
Ctrl+K
  • 1 contributor
History: 37 commits
worthant's picture
worthant
Upload imatrix.dat with huggingface_hub
d216638 verified about 7 hours ago
  • Q3_K_S
    Upload Q3_K_S/Q3_K_S-00001-of-00028.gguf with huggingface_hub about 13 hours ago
  • Q8_0
    Upload Q8_0/Kimi-K3-Q8_0-00001-of-00071.gguf with huggingface_hub about 13 hours ago
  • .gitattributes
    13.7 kB
    Upload mmproj-BF16.gguf with huggingface_hub about 12 hours ago
  • LICENSE
    3.07 kB
    Upload LICENSE with huggingface_hub 2 days ago
  • README.md
    7.82 kB
    :ledger: fix(readme): Fixup model shard prefix about 11 hours ago
  • imatrix.dat
    3.42 GB
    xet
    Upload imatrix.dat with huggingface_hub about 7 hours ago
  • mmproj-BF16.gguf
    904 MB
    xet
    Upload mmproj-BF16.gguf with huggingface_hub about 12 hours ago
  • mmproj-F16.gguf
    903 MB
    xet
    Upload mmproj-F16.gguf with huggingface_hub about 12 hours ago
  • pill_atomic_v3.png
    23.4 kB
    forge: add card asset pill_atomic_v3.png 2 days ago
  • pill_discord_v3.png
    24.2 kB
    forge: add card asset pill_discord_v3.png 2 days ago
  • pill_github_v3.png
    19.5 kB
    forge: add card asset pill_github_v3.png 2 days ago