Instructions to use tensorblock/OpenThinker-32B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use tensorblock/OpenThinker-32B-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("tensorblock/OpenThinker-32B-GGUF", dtype="auto") - llama-cpp-python
How to use tensorblock/OpenThinker-32B-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="tensorblock/OpenThinker-32B-GGUF", filename="OpenThinker-32B-Q2_K.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use tensorblock/OpenThinker-32B-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf tensorblock/OpenThinker-32B-GGUF:Q2_K # Run inference directly in the terminal: llama-cli -hf tensorblock/OpenThinker-32B-GGUF:Q2_K
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf tensorblock/OpenThinker-32B-GGUF:Q2_K # Run inference directly in the terminal: llama-cli -hf tensorblock/OpenThinker-32B-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/OpenThinker-32B-GGUF:Q2_K # Run inference directly in the terminal: ./llama-cli -hf tensorblock/OpenThinker-32B-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/OpenThinker-32B-GGUF:Q2_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf tensorblock/OpenThinker-32B-GGUF:Q2_K
Use Docker
docker model run hf.co/tensorblock/OpenThinker-32B-GGUF:Q2_K
- LM Studio
- Jan
- Ollama
How to use tensorblock/OpenThinker-32B-GGUF with Ollama:
ollama run hf.co/tensorblock/OpenThinker-32B-GGUF:Q2_K
- Unsloth Studio new
How to use tensorblock/OpenThinker-32B-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/OpenThinker-32B-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/OpenThinker-32B-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/OpenThinker-32B-GGUF to start chatting
- Pi new
How to use tensorblock/OpenThinker-32B-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf tensorblock/OpenThinker-32B-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/OpenThinker-32B-GGUF:Q2_K" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use tensorblock/OpenThinker-32B-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf tensorblock/OpenThinker-32B-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/OpenThinker-32B-GGUF:Q2_K
Run Hermes
hermes
- Docker Model Runner
How to use tensorblock/OpenThinker-32B-GGUF with Docker Model Runner:
docker model run hf.co/tensorblock/OpenThinker-32B-GGUF:Q2_K
- Lemonade
How to use tensorblock/OpenThinker-32B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tensorblock/OpenThinker-32B-GGUF:Q2_K
Run and chat with the model
lemonade run user.OpenThinker-32B-GGUF-Q2_K
List all available models
lemonade list
Remove .gguf files (keep Q2_K.gguf)
Browse files- OpenThinker-32B-Q3_K_L.gguf +0 -3
- OpenThinker-32B-Q3_K_M.gguf +0 -3
- OpenThinker-32B-Q3_K_S.gguf +0 -3
- OpenThinker-32B-Q4_0.gguf +0 -3
- OpenThinker-32B-Q4_K_M.gguf +0 -3
- OpenThinker-32B-Q4_K_S.gguf +0 -3
- OpenThinker-32B-Q5_0.gguf +0 -3
- OpenThinker-32B-Q5_K_M.gguf +0 -3
- OpenThinker-32B-Q5_K_S.gguf +0 -3
- OpenThinker-32B-Q6_K.gguf +0 -3
- OpenThinker-32B-Q8_0.gguf +0 -3
OpenThinker-32B-Q3_K_L.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:c13d0bede454ef58bc370d91b7800dcc836a1c445f962d348d40dceea98dade0
|
| 3 |
-
size 17247079200
|
|
|
|
|
|
|
|
|
|
|
|
OpenThinker-32B-Q3_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:e0d52790ef2c03aca9da440762dbeec0680316e5334e5b6c66582b213011796e
|
| 3 |
-
size 15935048480
|
|
|
|
|
|
|
|
|
|
|
|
OpenThinker-32B-Q3_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:ea0379327aaa7c63a1f674395b32f80b878ca1875981c6d700f86e850ff4318d
|
| 3 |
-
size 14392331040
|
|
|
|
|
|
|
|
|
|
|
|
OpenThinker-32B-Q4_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:663710ba46058b7e916e12ef1ab12b49e85e5391e5bc6d9969f6e91224d5f010
|
| 3 |
-
size 18640231200
|
|
|
|
|
|
|
|
|
|
|
|
OpenThinker-32B-Q4_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:c6ed9cdd9c94233ec254f42d751cdc454088ef2880e6ff987d7184659763fcda
|
| 3 |
-
size 19851336480
|
|
|
|
|
|
|
|
|
|
|
|
OpenThinker-32B-Q4_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:c671f6fac3eecd61fb8013ab3dfe7e75135bb9dfa66e7be0094d86e8b8213266
|
| 3 |
-
size 18784410400
|
|
|
|
|
|
|
|
|
|
|
|
OpenThinker-32B-Q5_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:de570880850fd7a6e703d976254a2c72f11f8f47b4177453bb5e57cd7d44a0c8
|
| 3 |
-
size 22638254880
|
|
|
|
|
|
|
|
|
|
|
|
OpenThinker-32B-Q5_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:370f8939d4ce3eb3b2a57bc1c44370b5370816a6860efa3f104b9e3b17f5d20d
|
| 3 |
-
size 23262157600
|
|
|
|
|
|
|
|
|
|
|
|
OpenThinker-32B-Q5_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:982cf927d69ea88462afd7f461516ab91d37c390ad5eac6ce2298d01f9249127
|
| 3 |
-
size 22638254880
|
|
|
|
|
|
|
|
|
|
|
|
OpenThinker-32B-Q6_K.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:129290a28606e72ca406a1392edb7c8641f9c659a47ce50e463f325caed55daa
|
| 3 |
-
size 26886155040
|
|
|
|
|
|
|
|
|
|
|
|
OpenThinker-32B-Q8_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:ce11e05544391f60081f4b1ab7155e047e767ada5feb36f2c05bef11d5c3627c
|
| 3 |
-
size 34820885280
|
|
|
|
|
|
|
|
|
|
|
|