Transformers
GGUF
English
text-generation-inference
unsloth
mistral
trl
sft
TensorBlock
GGUF
conversational
Instructions to use tensorblock/Mistral-Small-InstructContinuedFine-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use tensorblock/Mistral-Small-InstructContinuedFine-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("tensorblock/Mistral-Small-InstructContinuedFine-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use tensorblock/Mistral-Small-InstructContinuedFine-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 tensorblock/Mistral-Small-InstructContinuedFine-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/Mistral-Small-InstructContinuedFine-GGUF:Q2_K
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf tensorblock/Mistral-Small-InstructContinuedFine-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/Mistral-Small-InstructContinuedFine-GGUF:Q2_K
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 tensorblock/Mistral-Small-InstructContinuedFine-GGUF:Q2_K # Run inference directly in the terminal: ./llama-cli -hf tensorblock/Mistral-Small-InstructContinuedFine-GGUF:Q2_K
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 tensorblock/Mistral-Small-InstructContinuedFine-GGUF:Q2_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf tensorblock/Mistral-Small-InstructContinuedFine-GGUF:Q2_K
Use Docker
docker model run hf.co/tensorblock/Mistral-Small-InstructContinuedFine-GGUF:Q2_K
- LM Studio
- Jan
- Ollama
How to use tensorblock/Mistral-Small-InstructContinuedFine-GGUF with Ollama:
ollama run hf.co/tensorblock/Mistral-Small-InstructContinuedFine-GGUF:Q2_K
- Unsloth Studio
How to use tensorblock/Mistral-Small-InstructContinuedFine-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 tensorblock/Mistral-Small-InstructContinuedFine-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 tensorblock/Mistral-Small-InstructContinuedFine-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for tensorblock/Mistral-Small-InstructContinuedFine-GGUF to start chatting
- Pi
How to use tensorblock/Mistral-Small-InstructContinuedFine-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf tensorblock/Mistral-Small-InstructContinuedFine-GGUF:Q2_K
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": "tensorblock/Mistral-Small-InstructContinuedFine-GGUF:Q2_K" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use tensorblock/Mistral-Small-InstructContinuedFine-GGUF with Docker Model Runner:
docker model run hf.co/tensorblock/Mistral-Small-InstructContinuedFine-GGUF:Q2_K
- Lemonade
How to use tensorblock/Mistral-Small-InstructContinuedFine-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tensorblock/Mistral-Small-InstructContinuedFine-GGUF:Q2_K
Run and chat with the model
lemonade run user.Mistral-Small-InstructContinuedFine-GGUF-Q2_K
List all available models
lemonade list
- Hermes Agent
How to use tensorblock/Mistral-Small-InstructContinuedFine-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 tensorblock/Mistral-Small-InstructContinuedFine-GGUF:Q2_K
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 tensorblock/Mistral-Small-InstructContinuedFine-GGUF:Q2_K
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use tensorblock/Mistral-Small-InstructContinuedFine-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf tensorblock/Mistral-Small-InstructContinuedFine-GGUF:Q2_K
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 "tensorblock/Mistral-Small-InstructContinuedFine-GGUF:Q2_K" \ --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"
Remove .gguf files (keep Q2_K.gguf)
Browse files- Mistral-Small-InstructContinuedFine-Q3_K_L.gguf +0 -3
- Mistral-Small-InstructContinuedFine-Q3_K_M.gguf +0 -3
- Mistral-Small-InstructContinuedFine-Q3_K_S.gguf +0 -3
- Mistral-Small-InstructContinuedFine-Q4_0.gguf +0 -3
- Mistral-Small-InstructContinuedFine-Q4_K_M.gguf +0 -3
- Mistral-Small-InstructContinuedFine-Q4_K_S.gguf +0 -3
- Mistral-Small-InstructContinuedFine-Q5_0.gguf +0 -3
- Mistral-Small-InstructContinuedFine-Q5_K_M.gguf +0 -3
- Mistral-Small-InstructContinuedFine-Q5_K_S.gguf +0 -3
- Mistral-Small-InstructContinuedFine-Q6_K.gguf +0 -3
- Mistral-Small-InstructContinuedFine-Q8_0.gguf +0 -3
Mistral-Small-InstructContinuedFine-Q3_K_L.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:69890ea8942747bc3e5964365d207d1c05a732c54ae5448fe3cc27a24d3cec0d
|
| 3 |
-
size 11730433024
|
|
|
|
|
|
|
|
|
|
|
|
Mistral-Small-InstructContinuedFine-Q3_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:7be2517cc5d3aa1f123a376bca04256a6e3c2eaf79e24b19dc0afcc6d13395e6
|
| 3 |
-
size 10756830208
|
|
|
|
|
|
|
|
|
|
|
|
Mistral-Small-InstructContinuedFine-Q3_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:0567ee5d5fb3ac5e0062b6d10e3364a105100050a5486f149ec20f6feb619a1a
|
| 3 |
-
size 9641276416
|
|
|
|
|
|
|
|
|
|
|
|
Mistral-Small-InstructContinuedFine-Q4_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:bd0208a81845379b23fab885869d2bb6a91e3411de4d86a53ff326fefe64816d
|
| 3 |
-
size 12569162752
|
|
|
|
|
|
|
|
|
|
|
|
Mistral-Small-InstructContinuedFine-Q4_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:d7e63c49afd434f8f48a616a0012451fbfa1fcd92e3834f7ec636974b4c7152e
|
| 3 |
-
size 13341242368
|
|
|
|
|
|
|
|
|
|
|
|
Mistral-Small-InstructContinuedFine-Q4_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:076f6aaa9f75c3aa0a4e9f46f12f51c36e6f56d6f252fdc3a35dfb1115a90ff4
|
| 3 |
-
size 12660388864
|
|
|
|
|
|
|
|
|
|
|
|
Mistral-Small-InstructContinuedFine-Q5_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:e25fe1b3c69dd7fd92ed6bbf7527027d823061f5751b893feeeee4cf50298aa4
|
| 3 |
-
size 15324820480
|
|
|
|
|
|
|
|
|
|
|
|
Mistral-Small-InstructContinuedFine-Q5_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:700ca8cbcfc6627bc7385cb86b7a57a9d8c2a7414c94c7c15a80bc9b259e11a9
|
| 3 |
-
size 15722558464
|
|
|
|
|
|
|
|
|
|
|
|
Mistral-Small-InstructContinuedFine-Q5_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:a7a4c862104a18664c9fd865b907bc7a697b6491175546759405b7295d284a51
|
| 3 |
-
size 15324820480
|
|
|
|
|
|
|
|
|
|
|
|
Mistral-Small-InstructContinuedFine-Q6_K.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:15a25c0f61e7a1f5ad85633c4fc21dd84730cb4d93459d290522ce4d850f7691
|
| 3 |
-
size 18252706816
|
|
|
|
|
|
|
|
|
|
|
|
Mistral-Small-InstructContinuedFine-Q8_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:9c2d28b7dfc0805545ac57d03ef2ae447d0e49077813eb1d99e350c076a1f7db
|
| 3 |
-
size 23640552448
|
|
|
|
|
|
|
|
|
|
|
|