Image-Text-to-Text
GGUF
llama.cpp
qwen
qwen3.8
quantized
low-vram
no-mtp
vision-language
reasoning
agentic
imatrix
conversational
Instructions to use TheWegemann/Qwen3.8-27B-LowGPU-NoMTP-IQ3XXXS-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 TheWegemann/Qwen3.8-27B-LowGPU-NoMTP-IQ3XXXS-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 TheWegemann/Qwen3.8-27B-LowGPU-NoMTP-IQ3XXXS-GGUF:F16 # Run inference directly in the terminal: llama cli -hf TheWegemann/Qwen3.8-27B-LowGPU-NoMTP-IQ3XXXS-GGUF:F16
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf TheWegemann/Qwen3.8-27B-LowGPU-NoMTP-IQ3XXXS-GGUF:F16 # Run inference directly in the terminal: llama cli -hf TheWegemann/Qwen3.8-27B-LowGPU-NoMTP-IQ3XXXS-GGUF:F16
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 TheWegemann/Qwen3.8-27B-LowGPU-NoMTP-IQ3XXXS-GGUF:F16 # Run inference directly in the terminal: ./llama-cli -hf TheWegemann/Qwen3.8-27B-LowGPU-NoMTP-IQ3XXXS-GGUF:F16
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 TheWegemann/Qwen3.8-27B-LowGPU-NoMTP-IQ3XXXS-GGUF:F16 # Run inference directly in the terminal: ./build/bin/llama-cli -hf TheWegemann/Qwen3.8-27B-LowGPU-NoMTP-IQ3XXXS-GGUF:F16
Use Docker
docker model run hf.co/TheWegemann/Qwen3.8-27B-LowGPU-NoMTP-IQ3XXXS-GGUF:F16
- LM Studio
- Jan
- vLLM
How to use TheWegemann/Qwen3.8-27B-LowGPU-NoMTP-IQ3XXXS-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "TheWegemann/Qwen3.8-27B-LowGPU-NoMTP-IQ3XXXS-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": "TheWegemann/Qwen3.8-27B-LowGPU-NoMTP-IQ3XXXS-GGUF", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/TheWegemann/Qwen3.8-27B-LowGPU-NoMTP-IQ3XXXS-GGUF:F16
- Ollama
How to use TheWegemann/Qwen3.8-27B-LowGPU-NoMTP-IQ3XXXS-GGUF with Ollama:
ollama run hf.co/TheWegemann/Qwen3.8-27B-LowGPU-NoMTP-IQ3XXXS-GGUF:F16
- Unsloth Desktop
- Pi
How to use TheWegemann/Qwen3.8-27B-LowGPU-NoMTP-IQ3XXXS-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf TheWegemann/Qwen3.8-27B-LowGPU-NoMTP-IQ3XXXS-GGUF:F16
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": "TheWegemann/Qwen3.8-27B-LowGPU-NoMTP-IQ3XXXS-GGUF:F16" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use TheWegemann/Qwen3.8-27B-LowGPU-NoMTP-IQ3XXXS-GGUF with Docker Model Runner:
docker model run hf.co/TheWegemann/Qwen3.8-27B-LowGPU-NoMTP-IQ3XXXS-GGUF:F16
- Lemonade
How to use TheWegemann/Qwen3.8-27B-LowGPU-NoMTP-IQ3XXXS-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull TheWegemann/Qwen3.8-27B-LowGPU-NoMTP-IQ3XXXS-GGUF:F16
Run and chat with the model
lemonade run user.Qwen3.8-27B-LowGPU-NoMTP-IQ3XXXS-GGUF-F16
List all available models
lemonade list
- Hermes Agent
How to use TheWegemann/Qwen3.8-27B-LowGPU-NoMTP-IQ3XXXS-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 TheWegemann/Qwen3.8-27B-LowGPU-NoMTP-IQ3XXXS-GGUF:F16
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 TheWegemann/Qwen3.8-27B-LowGPU-NoMTP-IQ3XXXS-GGUF:F16
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use TheWegemann/Qwen3.8-27B-LowGPU-NoMTP-IQ3XXXS-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf TheWegemann/Qwen3.8-27B-LowGPU-NoMTP-IQ3XXXS-GGUF:F16
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 "TheWegemann/Qwen3.8-27B-LowGPU-NoMTP-IQ3XXXS-GGUF:F16" \ --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"
Update README.md
Browse files
README.md
CHANGED
|
@@ -164,9 +164,9 @@ Hermes Agent can then use the llama.cpp OpenAI-compatible endpoint at:
|
|
| 164 |
http://127.0.0.1:9090/v1
|
| 165 |
```
|
| 166 |
|
| 167 |
-
|
| 168 |
-
|
| 169 |
-
|
| 170 |
|
| 171 |
The exact llama.cpp CLI changes over time. If a flag is rejected by your build, check that build's `--help` rather than sacrificing a keyboard to the dependency gods.
|
| 172 |
|
|
@@ -202,6 +202,7 @@ If you want a conventional range of excellent GGUF presets, use Unsloth's reposi
|
|
| 202 |
- **Unsloth Qwen3.8 GGUFs / allocation reference:** https://huggingface.co/unsloth/Qwen3.8-27B-GGUF
|
| 203 |
- **Exact UD-IQ3_XXS reference file:** https://huggingface.co/unsloth/Qwen3.8-27B-GGUF/blob/main/Qwen3.8-27B-UD-IQ3_XXS.gguf
|
| 204 |
- **llama.cpp:** https://github.com/ggml-org/llama.cpp
|
|
|
|
| 205 |
|
| 206 |
Quantization work: **TheWegemann + Mira (ChatGPT)**.
|
| 207 |
|
|
|
|
| 164 |
http://127.0.0.1:9090/v1
|
| 165 |
```
|
| 166 |
|
| 167 |
+
Vision projector included: mmproj-F16.gguf
|
| 168 |
+
Copied from unsloth/Qwen3.8-27B-GGUF for compatibility/convenience.
|
| 169 |
+
Tested with llama.cpp on the RTX 4070 12 GB setup.
|
| 170 |
|
| 171 |
The exact llama.cpp CLI changes over time. If a flag is rejected by your build, check that build's `--help` rather than sacrificing a keyboard to the dependency gods.
|
| 172 |
|
|
|
|
| 202 |
- **Unsloth Qwen3.8 GGUFs / allocation reference:** https://huggingface.co/unsloth/Qwen3.8-27B-GGUF
|
| 203 |
- **Exact UD-IQ3_XXS reference file:** https://huggingface.co/unsloth/Qwen3.8-27B-GGUF/blob/main/Qwen3.8-27B-UD-IQ3_XXS.gguf
|
| 204 |
- **llama.cpp:** https://github.com/ggml-org/llama.cpp
|
| 205 |
+
- **mmproj-F16.gguf** is provided by Unsloth and originates from unsloth/Qwen3.8-27B-GGUF. It is included here unchanged for easier vision-model discovery by compatible frontends.
|
| 206 |
|
| 207 |
Quantization work: **TheWegemann + Mira (ChatGPT)**.
|
| 208 |
|