Image-Text-to-Text
GGUF
English
Chinese
llama.cpp
kimi
kimi-k3
Mixture of Experts
mixture-of-experts
imatrix
quantized
1-bit
2-bit
vision
multimodal
conversational
Instructions to use AtomicChat/Kimi-K3-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- 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:IQ1_M # Run inference directly in the terminal: llama cli -hf AtomicChat/Kimi-K3-GGUF:IQ1_M
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:IQ1_M # Run inference directly in the terminal: llama cli -hf AtomicChat/Kimi-K3-GGUF:IQ1_M
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:IQ1_M # Run inference directly in the terminal: ./llama-cli -hf AtomicChat/Kimi-K3-GGUF:IQ1_M
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:IQ1_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf AtomicChat/Kimi-K3-GGUF:IQ1_M
Use Docker
docker model run hf.co/AtomicChat/Kimi-K3-GGUF:IQ1_M
- 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/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "AtomicChat/Kimi-K3-GGUF", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/AtomicChat/Kimi-K3-GGUF:IQ1_M
- Ollama
How to use AtomicChat/Kimi-K3-GGUF with Ollama:
ollama run hf.co/AtomicChat/Kimi-K3-GGUF:IQ1_M
- Unsloth Desktop
- Pi
How to use AtomicChat/Kimi-K3-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf AtomicChat/Kimi-K3-GGUF:IQ1_M
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "AtomicChat/Kimi-K3-GGUF:IQ1_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use AtomicChat/Kimi-K3-GGUF with Docker Model Runner:
docker model run hf.co/AtomicChat/Kimi-K3-GGUF:IQ1_M
- 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:IQ1_M
Run and chat with the model
lemonade run user.Kimi-K3-GGUF-IQ1_M
List all available models
lemonade list
- Hermes Agent
How to use AtomicChat/Kimi-K3-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf AtomicChat/Kimi-K3-GGUF:IQ1_M
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default AtomicChat/Kimi-K3-GGUF:IQ1_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use AtomicChat/Kimi-K3-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf AtomicChat/Kimi-K3-GGUF:IQ1_M
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "AtomicChat/Kimi-K3-GGUF:IQ1_M" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
Upload folder using huggingface_hub
Browse files- .gitattributes +14 -0
- IQ1_S/Kimi-K3-IQ1_S-00001-of-00014.gguf +3 -0
- IQ1_S/Kimi-K3-IQ1_S-00002-of-00014.gguf +3 -0
- IQ1_S/Kimi-K3-IQ1_S-00003-of-00014.gguf +3 -0
- IQ1_S/Kimi-K3-IQ1_S-00004-of-00014.gguf +3 -0
- IQ1_S/Kimi-K3-IQ1_S-00005-of-00014.gguf +3 -0
- IQ1_S/Kimi-K3-IQ1_S-00006-of-00014.gguf +3 -0
- IQ1_S/Kimi-K3-IQ1_S-00007-of-00014.gguf +3 -0
- IQ1_S/Kimi-K3-IQ1_S-00008-of-00014.gguf +3 -0
- IQ1_S/Kimi-K3-IQ1_S-00009-of-00014.gguf +3 -0
- IQ1_S/Kimi-K3-IQ1_S-00010-of-00014.gguf +3 -0
- IQ1_S/Kimi-K3-IQ1_S-00011-of-00014.gguf +3 -0
- IQ1_S/Kimi-K3-IQ1_S-00012-of-00014.gguf +3 -0
- IQ1_S/Kimi-K3-IQ1_S-00013-of-00014.gguf +3 -0
- IQ1_S/Kimi-K3-IQ1_S-00014-of-00014.gguf +3 -0
.gitattributes
CHANGED
|
@@ -203,3 +203,17 @@ IQ2_XXS/IQ2_XXS-00007-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
|
| 203 |
IQ2_XXS/IQ2_XXS-00005-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 204 |
mmproj-F16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 205 |
mmproj-BF16.gguf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 203 |
IQ2_XXS/IQ2_XXS-00005-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 204 |
mmproj-F16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 205 |
mmproj-BF16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 206 |
+
IQ1_S/Kimi-K3-IQ1_S-00001-of-00014.gguf filter=lfs diff=lfs merge=lfs -text
|
| 207 |
+
IQ1_S/Kimi-K3-IQ1_S-00002-of-00014.gguf filter=lfs diff=lfs merge=lfs -text
|
| 208 |
+
IQ1_S/Kimi-K3-IQ1_S-00003-of-00014.gguf filter=lfs diff=lfs merge=lfs -text
|
| 209 |
+
IQ1_S/Kimi-K3-IQ1_S-00004-of-00014.gguf filter=lfs diff=lfs merge=lfs -text
|
| 210 |
+
IQ1_S/Kimi-K3-IQ1_S-00005-of-00014.gguf filter=lfs diff=lfs merge=lfs -text
|
| 211 |
+
IQ1_S/Kimi-K3-IQ1_S-00006-of-00014.gguf filter=lfs diff=lfs merge=lfs -text
|
| 212 |
+
IQ1_S/Kimi-K3-IQ1_S-00007-of-00014.gguf filter=lfs diff=lfs merge=lfs -text
|
| 213 |
+
IQ1_S/Kimi-K3-IQ1_S-00008-of-00014.gguf filter=lfs diff=lfs merge=lfs -text
|
| 214 |
+
IQ1_S/Kimi-K3-IQ1_S-00009-of-00014.gguf filter=lfs diff=lfs merge=lfs -text
|
| 215 |
+
IQ1_S/Kimi-K3-IQ1_S-00010-of-00014.gguf filter=lfs diff=lfs merge=lfs -text
|
| 216 |
+
IQ1_S/Kimi-K3-IQ1_S-00011-of-00014.gguf filter=lfs diff=lfs merge=lfs -text
|
| 217 |
+
IQ1_S/Kimi-K3-IQ1_S-00012-of-00014.gguf filter=lfs diff=lfs merge=lfs -text
|
| 218 |
+
IQ1_S/Kimi-K3-IQ1_S-00013-of-00014.gguf filter=lfs diff=lfs merge=lfs -text
|
| 219 |
+
IQ1_S/Kimi-K3-IQ1_S-00014-of-00014.gguf filter=lfs diff=lfs merge=lfs -text
|
IQ1_S/Kimi-K3-IQ1_S-00001-of-00014.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:49e528666d52fdf01881ba4335d62bae3380239fff791db26e5bf8cde790e761
|
| 3 |
+
size 45003103776
|
IQ1_S/Kimi-K3-IQ1_S-00002-of-00014.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:616070c4769a0f7e43f39cd2ae9aa00c49a4efd153cf645c0e2d79bd0242ecbf
|
| 3 |
+
size 43525628672
|
IQ1_S/Kimi-K3-IQ1_S-00003-of-00014.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:42e2d023ef71a4d6fc32b7accc2351d7e32a730abc85b26c57314b1f7128c6a3
|
| 3 |
+
size 43906113280
|
IQ1_S/Kimi-K3-IQ1_S-00004-of-00014.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:72cd70e26e10c2e3d7c50e61629a1453f8845ebbb3557ad24a38bb3664035466
|
| 3 |
+
size 43909908640
|
IQ1_S/Kimi-K3-IQ1_S-00005-of-00014.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e72f2f1a2a3ff114d591f7cb3b4eefd4f008b1e9d6aeac4393b9ed685cf8dc3b
|
| 3 |
+
size 44075376640
|
IQ1_S/Kimi-K3-IQ1_S-00006-of-00014.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:440eb00e66779fa3f3b8f02a103a279557140829252f23b94cca9133942b801f
|
| 3 |
+
size 43906113280
|
IQ1_S/Kimi-K3-IQ1_S-00007-of-00014.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ccd93142b353e7b89a2c44731561ffb78736cc8ab0d8ae2e74573bd9a82e9634
|
| 3 |
+
size 43906113280
|
IQ1_S/Kimi-K3-IQ1_S-00008-of-00014.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7821365ac603514fe4d4e83bf2c5d95ab5c0fa70644be05f6b427d335028627f
|
| 3 |
+
size 43909908640
|
IQ1_S/Kimi-K3-IQ1_S-00009-of-00014.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9df48002d4002cd283e6a441aaf223c680fa328e00122c9f42e685be2017837a
|
| 3 |
+
size 44075376640
|
IQ1_S/Kimi-K3-IQ1_S-00010-of-00014.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:821f1924404b763acad972d933eb20da151eb617586f6ff739fa7c3590c4506a
|
| 3 |
+
size 43906113280
|
IQ1_S/Kimi-K3-IQ1_S-00011-of-00014.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5f794be2e2d4a860907c5e2497028f531e47c5baa3807efe9f1ad3559a05c453
|
| 3 |
+
size 43906113280
|
IQ1_S/Kimi-K3-IQ1_S-00012-of-00014.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:21465612bef821c95bdf0826612a8787833a56470524cdba7cbacaa5bfe76d78
|
| 3 |
+
size 43909908640
|
IQ1_S/Kimi-K3-IQ1_S-00013-of-00014.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:09fb0a4a9a30003e5b6b79ba8baec66a80555f7a432f2d506bc2cb647c0c7574
|
| 3 |
+
size 44075376640
|
IQ1_S/Kimi-K3-IQ1_S-00014-of-00014.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:24e6bf3df34a991dd46184d47f632a19c3c1f915c4eb491375c4c2e53dd99124
|
| 3 |
+
size 17528007136
|