Instructions to use huihui-ai/Kimi-K2-Instruct-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use huihui-ai/Kimi-K2-Instruct-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("huihui-ai/Kimi-K2-Instruct-GGUF", dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Unsloth Studio
How to use huihui-ai/Kimi-K2-Instruct-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 huihui-ai/Kimi-K2-Instruct-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 huihui-ai/Kimi-K2-Instruct-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for huihui-ai/Kimi-K2-Instruct-GGUF to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="huihui-ai/Kimi-K2-Instruct-GGUF", max_seq_length=2048, )
Update Modelfile
Browse files
Modelfile
CHANGED
|
@@ -7,6 +7,7 @@ TEMPLATE """{{ if .Tools }}<|im_system|>tool_declare<|im_middle|>{{ .Tools }}<|i
|
|
| 7 |
{{ end }}
|
| 8 |
<|im_assistant|>assistant<|im_middle|>"""
|
| 9 |
PARAMETER stop <|im_start|>
|
|
|
|
| 10 |
PARAMETER stop <|im_end|>
|
| 11 |
PARAMETER temperature 0.6
|
| 12 |
PARAMETER top_k 20
|
|
|
|
| 7 |
{{ end }}
|
| 8 |
<|im_assistant|>assistant<|im_middle|>"""
|
| 9 |
PARAMETER stop <|im_start|>
|
| 10 |
+
PARAMETER stop <|im_user|>
|
| 11 |
PARAMETER stop <|im_end|>
|
| 12 |
PARAMETER temperature 0.6
|
| 13 |
PARAMETER top_k 20
|