Instructions to use rinna/qwen2.5-bakeneko-32b-instruct-v2-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 rinna/qwen2.5-bakeneko-32b-instruct-v2-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 rinna/qwen2.5-bakeneko-32b-instruct-v2-gguf:Q2_K # Run inference directly in the terminal: llama cli -hf rinna/qwen2.5-bakeneko-32b-instruct-v2-gguf:Q2_K
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf rinna/qwen2.5-bakeneko-32b-instruct-v2-gguf:Q2_K # Run inference directly in the terminal: llama cli -hf rinna/qwen2.5-bakeneko-32b-instruct-v2-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 rinna/qwen2.5-bakeneko-32b-instruct-v2-gguf:Q2_K # Run inference directly in the terminal: ./llama-cli -hf rinna/qwen2.5-bakeneko-32b-instruct-v2-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 rinna/qwen2.5-bakeneko-32b-instruct-v2-gguf:Q2_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf rinna/qwen2.5-bakeneko-32b-instruct-v2-gguf:Q2_K
Use Docker
docker model run hf.co/rinna/qwen2.5-bakeneko-32b-instruct-v2-gguf:Q2_K
- LM Studio
- Jan
- vLLM
How to use rinna/qwen2.5-bakeneko-32b-instruct-v2-gguf with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "rinna/qwen2.5-bakeneko-32b-instruct-v2-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": "rinna/qwen2.5-bakeneko-32b-instruct-v2-gguf", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/rinna/qwen2.5-bakeneko-32b-instruct-v2-gguf:Q2_K
- Ollama
How to use rinna/qwen2.5-bakeneko-32b-instruct-v2-gguf with Ollama:
ollama run hf.co/rinna/qwen2.5-bakeneko-32b-instruct-v2-gguf:Q2_K
- Unsloth Studio
How to use rinna/qwen2.5-bakeneko-32b-instruct-v2-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 rinna/qwen2.5-bakeneko-32b-instruct-v2-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 rinna/qwen2.5-bakeneko-32b-instruct-v2-gguf to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for rinna/qwen2.5-bakeneko-32b-instruct-v2-gguf to start chatting
- Pi
How to use rinna/qwen2.5-bakeneko-32b-instruct-v2-gguf with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf rinna/qwen2.5-bakeneko-32b-instruct-v2-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": "rinna/qwen2.5-bakeneko-32b-instruct-v2-gguf:Q2_K" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use rinna/qwen2.5-bakeneko-32b-instruct-v2-gguf with Docker Model Runner:
docker model run hf.co/rinna/qwen2.5-bakeneko-32b-instruct-v2-gguf:Q2_K
- Lemonade
How to use rinna/qwen2.5-bakeneko-32b-instruct-v2-gguf with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull rinna/qwen2.5-bakeneko-32b-instruct-v2-gguf:Q2_K
Run and chat with the model
lemonade run user.qwen2.5-bakeneko-32b-instruct-v2-gguf-Q2_K
List all available models
lemonade list
- Hermes Agent
How to use rinna/qwen2.5-bakeneko-32b-instruct-v2-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 rinna/qwen2.5-bakeneko-32b-instruct-v2-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 rinna/qwen2.5-bakeneko-32b-instruct-v2-gguf:Q2_K
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use rinna/qwen2.5-bakeneko-32b-instruct-v2-gguf with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf rinna/qwen2.5-bakeneko-32b-instruct-v2-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 "rinna/qwen2.5-bakeneko-32b-instruct-v2-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"
Add files using upload-large-folder tool
Browse files- .gitattributes +8 -0
- qwen2.5-bakeneko-32b-instruct-v2-q2_k.gguf +3 -0
- qwen2.5-bakeneko-32b-instruct-v2-q3_k.gguf +3 -0
- qwen2.5-bakeneko-32b-instruct-v2-q4_0.gguf +3 -0
- qwen2.5-bakeneko-32b-instruct-v2-q4_k.gguf +3 -0
- qwen2.5-bakeneko-32b-instruct-v2-q5_0.gguf +3 -0
- qwen2.5-bakeneko-32b-instruct-v2-q5_k.gguf +3 -0
- qwen2.5-bakeneko-32b-instruct-v2-q6_k.gguf +3 -0
- qwen2.5-bakeneko-32b-instruct-v2-q8_0.gguf +3 -0
- rinna.png +0 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,11 @@ 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 |
+
qwen2.5-bakeneko-32b-instruct-v2-q2_k.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
qwen2.5-bakeneko-32b-instruct-v2-q3_k.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
qwen2.5-bakeneko-32b-instruct-v2-q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
qwen2.5-bakeneko-32b-instruct-v2-q4_k.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
qwen2.5-bakeneko-32b-instruct-v2-q5_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
qwen2.5-bakeneko-32b-instruct-v2-q5_k.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
qwen2.5-bakeneko-32b-instruct-v2-q6_k.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
qwen2.5-bakeneko-32b-instruct-v2-q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
qwen2.5-bakeneko-32b-instruct-v2-q2_k.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:411560061bd112d97fe3749a4bdef7a8027464fec3ce259437873360466566ae
|
| 3 |
+
size 12313098400
|
qwen2.5-bakeneko-32b-instruct-v2-q3_k.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e8d5bb9d2b6b06fb8c2de113f24148550ff90b84ff8963147ce1d9831a4ed237
|
| 3 |
+
size 15935047840
|
qwen2.5-bakeneko-32b-instruct-v2-q4_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2736a6afcfc657c188b1255e19d387a06ad837cd2940319492bcfdc9a9095069
|
| 3 |
+
size 18640230560
|
qwen2.5-bakeneko-32b-instruct-v2-q4_k.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b830f09992faf624bd7018f1e0291d9c023ef5cfbd679a58048ec31026670ead
|
| 3 |
+
size 19851335840
|
qwen2.5-bakeneko-32b-instruct-v2-q5_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:087e0d6290f79956acfa5f2cb1c8d1ef8f060063cee22f5dd58f7e343e1ea925
|
| 3 |
+
size 22638254240
|
qwen2.5-bakeneko-32b-instruct-v2-q5_k.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e613371176496b167092df4553d0f7589625e1a22e1b765a2564454b449bb283
|
| 3 |
+
size 23262156960
|
qwen2.5-bakeneko-32b-instruct-v2-q6_k.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:169b9311607ee3e1aba0b1cf2245f9b4d45bfe0277d8032cc20c8914392098d2
|
| 3 |
+
size 26886154400
|
qwen2.5-bakeneko-32b-instruct-v2-q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ddeb46250d09d6e91d90a47929e84d25cfdd39e8a22029635c350b9116eb761f
|
| 3 |
+
size 34820884640
|
rinna.png
ADDED
|