Instructions to use bartowski/moonshotai_Kimi-K2-Instruct-0905-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use bartowski/moonshotai_Kimi-K2-Instruct-0905-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="bartowski/moonshotai_Kimi-K2-Instruct-0905-GGUF", filename="moonshotai_Kimi-K2-Instruct-0905-IQ1_M/moonshotai_Kimi-K2-Instruct-0905-IQ1_M-00001-of-00006.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use bartowski/moonshotai_Kimi-K2-Instruct-0905-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 bartowski/moonshotai_Kimi-K2-Instruct-0905-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf bartowski/moonshotai_Kimi-K2-Instruct-0905-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf bartowski/moonshotai_Kimi-K2-Instruct-0905-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf bartowski/moonshotai_Kimi-K2-Instruct-0905-GGUF:Q4_K_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 bartowski/moonshotai_Kimi-K2-Instruct-0905-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf bartowski/moonshotai_Kimi-K2-Instruct-0905-GGUF:Q4_K_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 bartowski/moonshotai_Kimi-K2-Instruct-0905-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf bartowski/moonshotai_Kimi-K2-Instruct-0905-GGUF:Q4_K_M
Use Docker
docker model run hf.co/bartowski/moonshotai_Kimi-K2-Instruct-0905-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use bartowski/moonshotai_Kimi-K2-Instruct-0905-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "bartowski/moonshotai_Kimi-K2-Instruct-0905-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": "bartowski/moonshotai_Kimi-K2-Instruct-0905-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/bartowski/moonshotai_Kimi-K2-Instruct-0905-GGUF:Q4_K_M
- Ollama
How to use bartowski/moonshotai_Kimi-K2-Instruct-0905-GGUF with Ollama:
ollama run hf.co/bartowski/moonshotai_Kimi-K2-Instruct-0905-GGUF:Q4_K_M
- Unsloth Studio
How to use bartowski/moonshotai_Kimi-K2-Instruct-0905-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 bartowski/moonshotai_Kimi-K2-Instruct-0905-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 bartowski/moonshotai_Kimi-K2-Instruct-0905-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for bartowski/moonshotai_Kimi-K2-Instruct-0905-GGUF to start chatting
- Pi
How to use bartowski/moonshotai_Kimi-K2-Instruct-0905-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf bartowski/moonshotai_Kimi-K2-Instruct-0905-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "bartowski/moonshotai_Kimi-K2-Instruct-0905-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use bartowski/moonshotai_Kimi-K2-Instruct-0905-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 bartowski/moonshotai_Kimi-K2-Instruct-0905-GGUF:Q4_K_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 bartowski/moonshotai_Kimi-K2-Instruct-0905-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use bartowski/moonshotai_Kimi-K2-Instruct-0905-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf bartowski/moonshotai_Kimi-K2-Instruct-0905-GGUF:Q4_K_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 "bartowski/moonshotai_Kimi-K2-Instruct-0905-GGUF:Q4_K_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"
- Docker Model Runner
How to use bartowski/moonshotai_Kimi-K2-Instruct-0905-GGUF with Docker Model Runner:
docker model run hf.co/bartowski/moonshotai_Kimi-K2-Instruct-0905-GGUF:Q4_K_M
- Lemonade
How to use bartowski/moonshotai_Kimi-K2-Instruct-0905-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull bartowski/moonshotai_Kimi-K2-Instruct-0905-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.moonshotai_Kimi-K2-Instruct-0905-GGUF-Q4_K_M
List all available models
lemonade list
Upload folder using huggingface_hub
Browse files- .gitattributes +30 -0
- moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00001-of-00030.gguf +3 -0
- moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00002-of-00030.gguf +3 -0
- moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00003-of-00030.gguf +3 -0
- moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00004-of-00030.gguf +3 -0
- moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00005-of-00030.gguf +3 -0
- moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00006-of-00030.gguf +3 -0
- moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00007-of-00030.gguf +3 -0
- moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00008-of-00030.gguf +3 -0
- moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00009-of-00030.gguf +3 -0
- moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00010-of-00030.gguf +3 -0
- moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00011-of-00030.gguf +3 -0
- moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00012-of-00030.gguf +3 -0
- moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00013-of-00030.gguf +3 -0
- moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00014-of-00030.gguf +3 -0
- moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00015-of-00030.gguf +3 -0
- moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00016-of-00030.gguf +3 -0
- moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00017-of-00030.gguf +3 -0
- moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00018-of-00030.gguf +3 -0
- moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00019-of-00030.gguf +3 -0
- moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00020-of-00030.gguf +3 -0
- moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00021-of-00030.gguf +3 -0
- moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00022-of-00030.gguf +3 -0
- moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00023-of-00030.gguf +3 -0
- moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00024-of-00030.gguf +3 -0
- moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00025-of-00030.gguf +3 -0
- moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00026-of-00030.gguf +3 -0
- moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00027-of-00030.gguf +3 -0
- moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00028-of-00030.gguf +3 -0
- moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00029-of-00030.gguf +3 -0
- moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00030-of-00030.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,33 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00001-of-00030.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00002-of-00030.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00003-of-00030.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00004-of-00030.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00005-of-00030.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00006-of-00030.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00007-of-00030.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00008-of-00030.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00009-of-00030.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00010-of-00030.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00011-of-00030.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00012-of-00030.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00013-of-00030.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00014-of-00030.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00015-of-00030.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00016-of-00030.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00017-of-00030.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00018-of-00030.gguf filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00019-of-00030.gguf filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00020-of-00030.gguf filter=lfs diff=lfs merge=lfs -text
|
| 56 |
+
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00021-of-00030.gguf filter=lfs diff=lfs merge=lfs -text
|
| 57 |
+
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00022-of-00030.gguf filter=lfs diff=lfs merge=lfs -text
|
| 58 |
+
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00023-of-00030.gguf filter=lfs diff=lfs merge=lfs -text
|
| 59 |
+
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00024-of-00030.gguf filter=lfs diff=lfs merge=lfs -text
|
| 60 |
+
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00025-of-00030.gguf filter=lfs diff=lfs merge=lfs -text
|
| 61 |
+
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00026-of-00030.gguf filter=lfs diff=lfs merge=lfs -text
|
| 62 |
+
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00027-of-00030.gguf filter=lfs diff=lfs merge=lfs -text
|
| 63 |
+
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00028-of-00030.gguf filter=lfs diff=lfs merge=lfs -text
|
| 64 |
+
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00029-of-00030.gguf filter=lfs diff=lfs merge=lfs -text
|
| 65 |
+
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00030-of-00030.gguf filter=lfs diff=lfs merge=lfs -text
|
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00001-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e9559be36c137348b1213a3978ff14e99455ee743440b4221bcd489992bdf29e
|
| 3 |
+
size 39406096960
|
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00002-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:030243cf48ec235128dbe4e03cf6cdd5992f10da540fd5539501aedd8f8b2811
|
| 3 |
+
size 36267423104
|
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00003-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:56b2cd568089730c76dcaf782000498cf40d5d737fbcace833e51d30cdfcb53a
|
| 3 |
+
size 36267423104
|
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00004-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e1e13ca4a3dbc8f76fa10f530c5fe2081595df537b4e041099c46c0eea845d18
|
| 3 |
+
size 36267423104
|
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00005-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:98a557f00e0f4dd58119dafe231bba7a4b7203c7ea814f9c71b5b8a6f803097c
|
| 3 |
+
size 36267423136
|
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00006-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cd860113b870da1827bfd1dc7c4b5305d389a90db7a55877d86726581b9f788f
|
| 3 |
+
size 36267423136
|
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00007-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3516ef1df846c7f637f64137b2f57eba28317b884f8dc60f7e9943e98956e8ff
|
| 3 |
+
size 36267423136
|
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00008-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:266292061e2375135f481ac04e4b3f9788d719ac7dd30f8581ca32c9f4457d8d
|
| 3 |
+
size 36267423136
|
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00009-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:770714c87e2fc6e7d0fe5e27fe046a6d8704b2d601069813043b5bb1ce89689a
|
| 3 |
+
size 36267423136
|
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00010-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9e1d21f617a16b8086bf378bd43bf1178654777c33ac5801308713b9e9a9aba0
|
| 3 |
+
size 36267423136
|
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00011-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:94aa539467f33626056fedc6d96ee035f9e482474180eb90e324ff5d4a449374
|
| 3 |
+
size 36267423136
|
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00012-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5e91f72568ec835bca2cc85e8c81d16906ff3bb2224ac871e8d971cfa1a8cbe5
|
| 3 |
+
size 36267423136
|
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00013-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dc525a782aed01279d6b0d3b7a8ecd2001226bcbcb270ff326e9f10f84ae3578
|
| 3 |
+
size 36267423136
|
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00014-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:311e3e1013752fb092be13a2449e2a838d817e157100b7b92fcb9edef87b6fe7
|
| 3 |
+
size 36267423136
|
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00015-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:df67d396f3c4504e87dfab2d2be4cf12724367954bc953442af4950d700b404c
|
| 3 |
+
size 36267423136
|
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00016-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:43f3800d384a79c4cc6280d7867a8e3d83c6412c6ce295e43d7f3b6311e98802
|
| 3 |
+
size 36267423136
|
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00017-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b8b5959c5bf04718581b78d69ae9c2c25d81e48920f2093c9450b3d417bfb097
|
| 3 |
+
size 36267423136
|
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00018-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:47e949ed50985ce691b306838f9aa13737832c58ac51e45fd7bf1ebf2dfcd74a
|
| 3 |
+
size 36267423136
|
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00019-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:341c5732c4965d67e59cfb77b207164752c98a7b367bf75bc0ebf56b03c13163
|
| 3 |
+
size 36267423136
|
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00020-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3813f2d04b713bc4d614174f114673c88abafe5bc647bc3ef5c94344b211aebd
|
| 3 |
+
size 36267423136
|
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00021-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6ab3333a02f74c523b534cb2de2841f0e3b65a0c7ef862b299aaa3b097ccf4a8
|
| 3 |
+
size 36267423136
|
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00022-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e93e101ef844efb5b27d4575ba62941ba372962606d596be899bb14a25b50d06
|
| 3 |
+
size 36267423136
|
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00023-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5252622f0e0785e8057014969a1b777f27ad972cdec11d6cecee69a349b22345
|
| 3 |
+
size 36267423136
|
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00024-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8e463afaa56bad5687e27e5877ea40b9090decd2d4dec7f4846eba2443460fec
|
| 3 |
+
size 36267423136
|
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00025-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:be2cc9055791b4f0ce828aebf5e6d2a24521a8aecb93be0690d87532f476337f
|
| 3 |
+
size 36267423136
|
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00026-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:369258a44ffc8bae772f75dfd22afc8332f853af34ee1b1351040d0300aca343
|
| 3 |
+
size 36267423136
|
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00027-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2f77ea2c39a43078ef4334fdecab0a86aafb1aadc123c05767862cf05b210958
|
| 3 |
+
size 36267423136
|
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00028-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:37a65ee6a1f44061c8d9ef90a03acedd75a2df84b5cae375884b1773e9e6ac85
|
| 3 |
+
size 36267423136
|
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00029-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4f9fe83abd4fa4530acb0d1c6c3414cc60d1f66cb66bf622d4b649f6f78402e3
|
| 3 |
+
size 36267423136
|
moonshotai_Kimi-K2-Instruct-0905-Q8_0/moonshotai_Kimi-K2-Instruct-0905-Q8_0-00030-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9303c6d8e692398d13c202a73f01aa0ef8b79dfdb59ad6d374df7b397ebc206c
|
| 3 |
+
size 36159941920
|