Instructions to use SuperAnnotate/Qwen2.5-32B-Instruct-python-code-tracebacks-fine-tuned-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 SuperAnnotate/Qwen2.5-32B-Instruct-python-code-tracebacks-fine-tuned-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 SuperAnnotate/Qwen2.5-32B-Instruct-python-code-tracebacks-fine-tuned-gguf # Run inference directly in the terminal: llama cli -hf SuperAnnotate/Qwen2.5-32B-Instruct-python-code-tracebacks-fine-tuned-gguf
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf SuperAnnotate/Qwen2.5-32B-Instruct-python-code-tracebacks-fine-tuned-gguf # Run inference directly in the terminal: llama cli -hf SuperAnnotate/Qwen2.5-32B-Instruct-python-code-tracebacks-fine-tuned-gguf
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 SuperAnnotate/Qwen2.5-32B-Instruct-python-code-tracebacks-fine-tuned-gguf # Run inference directly in the terminal: ./llama-cli -hf SuperAnnotate/Qwen2.5-32B-Instruct-python-code-tracebacks-fine-tuned-gguf
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 SuperAnnotate/Qwen2.5-32B-Instruct-python-code-tracebacks-fine-tuned-gguf # Run inference directly in the terminal: ./build/bin/llama-cli -hf SuperAnnotate/Qwen2.5-32B-Instruct-python-code-tracebacks-fine-tuned-gguf
Use Docker
docker model run hf.co/SuperAnnotate/Qwen2.5-32B-Instruct-python-code-tracebacks-fine-tuned-gguf
- LM Studio
- Jan
- Ollama
How to use SuperAnnotate/Qwen2.5-32B-Instruct-python-code-tracebacks-fine-tuned-gguf with Ollama:
ollama run hf.co/SuperAnnotate/Qwen2.5-32B-Instruct-python-code-tracebacks-fine-tuned-gguf
- Unsloth Studio
How to use SuperAnnotate/Qwen2.5-32B-Instruct-python-code-tracebacks-fine-tuned-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 SuperAnnotate/Qwen2.5-32B-Instruct-python-code-tracebacks-fine-tuned-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 SuperAnnotate/Qwen2.5-32B-Instruct-python-code-tracebacks-fine-tuned-gguf to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for SuperAnnotate/Qwen2.5-32B-Instruct-python-code-tracebacks-fine-tuned-gguf to start chatting
- Pi
How to use SuperAnnotate/Qwen2.5-32B-Instruct-python-code-tracebacks-fine-tuned-gguf with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf SuperAnnotate/Qwen2.5-32B-Instruct-python-code-tracebacks-fine-tuned-gguf
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "SuperAnnotate/Qwen2.5-32B-Instruct-python-code-tracebacks-fine-tuned-gguf" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use SuperAnnotate/Qwen2.5-32B-Instruct-python-code-tracebacks-fine-tuned-gguf with Docker Model Runner:
docker model run hf.co/SuperAnnotate/Qwen2.5-32B-Instruct-python-code-tracebacks-fine-tuned-gguf
- Lemonade
How to use SuperAnnotate/Qwen2.5-32B-Instruct-python-code-tracebacks-fine-tuned-gguf with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull SuperAnnotate/Qwen2.5-32B-Instruct-python-code-tracebacks-fine-tuned-gguf
Run and chat with the model
lemonade run user.Qwen2.5-32B-Instruct-python-code-tracebacks-fine-tuned-gguf-{{QUANT_TAG}}List all available models
lemonade list
- Hermes Agent
How to use SuperAnnotate/Qwen2.5-32B-Instruct-python-code-tracebacks-fine-tuned-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 SuperAnnotate/Qwen2.5-32B-Instruct-python-code-tracebacks-fine-tuned-gguf
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 SuperAnnotate/Qwen2.5-32B-Instruct-python-code-tracebacks-fine-tuned-gguf
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use SuperAnnotate/Qwen2.5-32B-Instruct-python-code-tracebacks-fine-tuned-gguf with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf SuperAnnotate/Qwen2.5-32B-Instruct-python-code-tracebacks-fine-tuned-gguf
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 "SuperAnnotate/Qwen2.5-32B-Instruct-python-code-tracebacks-fine-tuned-gguf" \ --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"
Upload folder using huggingface_hub
Browse files- .gitattributes +5 -0
- Qwen2.5-32B-Instruct-python-code-tracebacks-fine-tuned-00001-of-00005.gguf +3 -0
- Qwen2.5-32B-Instruct-python-code-tracebacks-fine-tuned-00002-of-00005.gguf +3 -0
- Qwen2.5-32B-Instruct-python-code-tracebacks-fine-tuned-00003-of-00005.gguf +3 -0
- Qwen2.5-32B-Instruct-python-code-tracebacks-fine-tuned-00004-of-00005.gguf +3 -0
- Qwen2.5-32B-Instruct-python-code-tracebacks-fine-tuned-00005-of-00005.gguf +3 -0
|
@@ -33,3 +33,8 @@ 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-32B-Instruct-python-code-tracebacks-fine-tuned-00001-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Qwen2.5-32B-Instruct-python-code-tracebacks-fine-tuned-00002-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Qwen2.5-32B-Instruct-python-code-tracebacks-fine-tuned-00003-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Qwen2.5-32B-Instruct-python-code-tracebacks-fine-tuned-00004-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Qwen2.5-32B-Instruct-python-code-tracebacks-fine-tuned-00005-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cb5d9fc266d09c767fdf31dad2dad0a80d9b78acdd44240b076a138add19b446
|
| 3 |
+
size 15782765248
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4f4802f7c515f79c4c7cb6523000ec01500ee808fad947ba0351404776e25040
|
| 3 |
+
size 15950011584
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5a4ab43fb26b4e1f52ac51e922cf47dd70abb6479ed4b163288c8b4918d2c749
|
| 3 |
+
size 15949991072
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:653ab5568b4dfede8925ce0c2fb95b9450d249050dd841dcd5323ef4ba949d3e
|
| 3 |
+
size 15729773760
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:eb3e8a17034ef706cc896864e4e7affe417163f3fb0688cf4ac868edd90928c7
|
| 3 |
+
size 2123428288
|